body {
  font-family: 'Montserrat', 'Anek Tamil', sans-serif;
  
}

/* Base nav link */
.custom-navbar .nav-link {
  position: relative;
  padding: 6px 16px;
  font-weight: 500;
  color: #980a6f;
  z-index: 1;
  transition: color 0.3s ease;
  
}

/* Underline animation effect */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff80ab, #ec407a);
  border-radius: 2px;
  transition: width 0.3s ease;
  
}

/* Expand underline on hover and active */
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 100%;
}

/* Text color */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #d81b60;
}
/* Final merged and fixed navbar */
/* Base transparent style */
.custom-navbar {
  position: sticky;
  top: 0;
  
  z-index: 9999;
  height: 70px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  padding: 5px 20px;
  background: transparent;
}

/* Style when scrolled */
.custom-navbar.scrolled {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}


   .hero-slider {
        position: relative;
        min-height: 90vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.30);
        z-index: 1;
    }

    @keyframes zoomIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(1.5);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.hero-content {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) scale(1.5);
  opacity: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 15px;
  width: 100%;
  

  /* Zoom-in animation */
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.3s;

  will-change: transform, opacity;
  backface-visibility: hidden;
}


    .carousel-item.active .hero-content {
        animation-delay: 0.3s;
    }

    .text-shadow {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }

    .carousel-item.active .hero-content {
        animation-delay: 0.3s;
        animation-fill-mode: both;
    }
	
	@media (max-width: 768px) {
        .hero-slider {
            min-height: 70vh;
        }

        .hero-content h1 {
            font-size: 1.5rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .btn-heart {
            font-size: 0.9rem;
            padding: 0.4rem 1.2rem;
        }
    }
/* Footer fixed */
.footer {
  border-top: 1px solid #f8d3e0;
  font-size: 14px;
}

.footer-link {
  color: #980a6f;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.footer-link:hover {
  color: #d81b60;
  text-decoration: underline;
}

  .footer-wrapper {
  background-color: #fefefe;
  position: relative;
  z-index: 1;
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 80px;
  margin-bottom: -2px;
}

.footer-main {
  background-color: #fce4ec;
}

.footer-link {
  color: #980a6f;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d81b60;
  text-decoration: underline;
}

.vertical-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #d81b60 40%, transparent);
  opacity: 0.2;
  z-index: 1;
}

@media (max-width: 767px) {
  .vertical-divider {
    display: none;
  }
}

/* Smooth hover for auth buttons */
.navbar .nav-link.btn-auth {
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgb(167 10 113) 0%, rgb(255 0 168) 70%, rgb(243 124 176) 100%);
 
  color: #ffffff;
  border-radius: 25px;
  padding: 6px 16px;
  position: relative;
  overflow: hidden;
}
.navbar .nav-link.btn-auth:hover {
  background: linear-gradient(120deg, #fff, #fce4fb);
  box-shadow: 0 4px 10px rgb(248 115 217 / 40%);
  color: #980a6f;
}

/* Collapsed menu background */
@media (max-width: 991.98px) { /* Bootstrap's lg breakpoint */
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    
    transform-origin: top;
    transition: all 0.5s ease-out;
  }
}

/* Heart button styles */
.btn-heart {
  position: relative;
  overflow: visible;
  transition: all 0.3s ease, background 0.4s ease;
  z-index: 1;
  background: linear-gradient(90deg, rgb(167 10 113) 0%, rgb(255 0 168) 70%, rgb(243 124 176) 100%);
  color: #ffffff;
  border-radius: 25px;
  padding: 6px 16px;
}
.btn-heart:hover {
  background: linear-gradient(120deg, #fff, #fce4fb);
  -webkit-box-shadow: 0px 46px 77px 0px rgba(10, 43, 83, 0.1490196078);
    box-shadow: 0px 46px 77px 0px rgba(10, 43, 83, 0.1490196078);
	transform: translateY(-5px);
  color: #980a6f;
}

/* Floating hearts animation */
.heart-burst {
  position: absolute;
  color: #ff00b6;
  animation: floatUp 2s ease-out forwards;
  pointer-events: none;
  z-index: 9999;
}
@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(1.5);
  }
}

/* Auth button inline flex */
.btn-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* About us section */
.about-us-section {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.text-pink {
  color: #980a6f;
}
.about-list {
  list-style: none;
  padding: 0;
}
.about-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
}


.profile-section {
  position: relative;
  z-index: 2;
}

/* Desktop animation remains */
.animated-image {
  position: absolute;
  width: 450px;
  height: 450px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translate(-50%, -50%) scale(0.95);
  left: 50%;
  top: 50%;
}
.animated-image.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 2;
}

/* Profile card */
.profile-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(51deg, #ff03a1 0%, #ff9de3 50%, #ff01b6 100%);
  
  transition: background-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
  position: relative;
 -webkit-box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
    box-shadow: -6px -6px 10px 0px #f5f9fc, 4px 3px 15px 0px rgba(127, 163, 199, 0.3);
  cursor: pointer;
  padding-bottom: 0.5rem;
  display: block;
  text-decoration: none;
  color: white;
}
.profile-card:hover {
  background: linear-gradient(120deg, #fff, #fce4fb);
  -webkit-box-shadow: 0px 46px 77px 0px rgba(10, 43, 83, 0.1490196078);
    box-shadow: 0px 46px 77px 0px rgba(10, 43, 83, 0.1490196078);
  color: #980a6f;
  transform: translateY(-5px); /* subtle lift */
}
.profile-card:hover .profile-name,
.profile-card:hover p {
  color: #980a6f !important;
}

.profile-img {
  height: 200px;
  overflow: hidden;
  padding: 5px;
}
.profile-img img {
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
}

/* Auto scale name if too long */
.profile-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* MOBILE: Disable animation, hide image container */
@media (max-width: 768px) {
  .animated-image {
    display: none !important;
  }
  .fancy-bg,
  .profile-fancy-bg {
    background: none !important;
    backdrop-filter: none !important;
  }
  .profile-card {
    border-radius: 10px;
    padding-bottom: 0.5rem;
  }
  
  .custom-navbar .navbar-brand {
    font-size: 1.2rem;
  }
  .custom-navbar .nav-link {
    font-size: 0.85rem;
  }
}

/* Responsive navbar toggle button */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #d5429c;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Tooltip and cursor styling */
.tooltip-inner {
  background-color: #d81b60;
  color: white;
  font-size: 0.85rem;
  padding: 5px 8px;
  border-radius: 6px;
}

/* Additional smooth scrolling */
html {
  scroll-behavior: smooth;
}

.navbar-toggler-icon{
	color: white !important;
}

.theme {
	background: linear-gradient(90deg, #9e0844 0%, #af1652 50%, #d12168 100%);
}

 .process-section {
    background: linear-gradient(135deg, #fce3ec, #ffe6fa);
    position: relative;
    overflow: hidden;
  }

 
  .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
  }

  .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }

  .arrow-icon {
    font-size: 2rem;
    color: #c86fc9;
    z-index: 1;
  }
  
  .floating-heart {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ff6b81;
  transform: rotate(-45deg);
  animation: float 10s ease-in-out infinite;
  opacity: 0.2;
  z-index: 0;
}

.floating-heart::before,
.floating-heart::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ff6b81;
  border-radius: 50%;
}

.floating-heart::before {
  top: -30px;
  left: 0;
}

.floating-heart::after {
  left: 30px;
  top: 0;
}

/* Positioning */
.heart-1 {
  top: 20%;
  left: 5%;
  transform: rotate(-45deg);
}

.heart-2 {
  bottom: 20%;
  right: 8%;
  transform: rotate(-45deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(-30px) rotate(-45deg);
  }
}

.form-check-input[type="radio"] {
    cursor: pointer;
    transform: scale(1.3);
}
.form-check-label {
    font-weight: 500;
    cursor: pointer;
}

.pt-10{
	padding-top: 8rem !important;
    padding-bottom: 1rem !important;
}

.message-sent small {
    font-size: 11px;
    color: #888;
}



.premium-badge {
    font-size: 1.8rem; /* adjust size */

    background:linear-gradient(45deg, #b30878, #ff00a8); /* golden gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
    transition: color 0.3s ease, filter 0.3s ease;
    z-index: 11;
    padding: 0;
    user-select: none;
}

.premium-badge:hover {
    color: #ff73fb; /* lighter gold on hover */
    filter: drop-shadow(0 0 5px rgba(255, 115, 251, 1));
}

.love-title {
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.love-title h3 {
  font-weight: bold;
  font-size: 1.75rem;
}

.love-title .underline-decor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-top: 0.5rem;
}

.love-title .underline-decor::before {
  content: "";
  width: 100%;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 24' xmlns='http://www.w3.org/2000/svg'><path d='M0 12 Q50 0, 100 12 Q150 24, 200 12 Q250 0, 300 12' fill='none' stroke='%23dc3545' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.love-title .heart-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background-color: white;
  padding: 0 6px;
  line-height: 1;
}


.text-gradient {
 color: #BC13FE; 
 background-image: linear-gradient(45deg, #BC13FE , #E025BE , #F0459A , #FB697A , #FF8E5F ); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
}
.text-shadow{
text-shadow: 0px 4px 10px rgba(0,0,0,0.6);
}

/* Full-screen white loader */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Stack logo + bar vertically */
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
  width: 100px;
  height: auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.hide .loader-logo {
  opacity: 0;
  transform: scale(1.5);
}

.page-content {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.loaded .page-content {
  opacity: 1;
  transform: scale(1);
}

/* Loader Bar */
.loader-bar {
  width: 100px;
  height: 4px;
  background: #f8d3e0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.loader-bar::before {
  content: '';
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, #e91e63, #ff80ab);
  animation: slideBar 1s infinite ease-in-out;
  border-radius: 2px;
}

@keyframes slideBar {
  0% { left: -40%; }
  50% { left: 60%; }
  100% { left: 100%; }
}





.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 56px;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
  flex-wrap: nowrap;
}

.mobile-bottom-nav .nav-link {
  color: #333;
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-bottom-nav .nav-link i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.mobile-bottom-nav .nav-link.active {
  color: #e91e63;
  
  font-weight: 600;
}

.mobile-bottom-nav .nav-link.active i {
  color: #e91e63;
}




.premium-flash-btn {
    position: relative;
    overflow: hidden;
    animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.premium-flash-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-20deg);
    animation: flashSweep 2s infinite;
}

@keyframes flashSweep {
    0% { left: -75%; }
    100% { left: 125%; }
}
