/* Root Variables */
:root {
  --primary: #ff6b9d;
  --secondary: #ffd1e8;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --muted: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --whatsapp: #25d366;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}
.text-primary {
    --bs-text-opacity: 1;
    color:  #ff5c8a !important;  
}

/* Navbar Styles */

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  min-height: 72px;   /* 👈 FIXED HEIGHT */
  background: #fff;
}


#navbar .navbar-brand small {
  font-size: 0.7rem;     /* size kam */
  line-height: 1.2;
  color: #8a8a8a !important; /* soft grey */
}
.navbar {
  transition: all 0.3s ease;
}

.navbar-transparent {
  background-color: #fff !important;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}

.nav-link-custom {
  color: #666 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary) !important;
}

.navbar.scrolled .nav-link-custom {
  color: #333 !important;
}
#navbar .fa-heart {
  color: hsl(350deg 60% 54.9%) !important;   /* Lovable pink */
}

/* Button Styles */
.btn-whatsapp {
  background-color: var(--whatsapp);
  border-color: var(--whatsapp);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 25px;
    padding: 10px 22px;   /* pehle se zyada */
  font-size: 15px;
}
.btn-whatsapp i {
  font-size: 1.2em;   /* icon bada */
}

.btn-whatsapp:hover {
  background-color: #20b858;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  border-color: #20b858;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: #ff5a8e !important;
  border-color: #ff5a8e !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-animate {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 107, 157, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}

.hero-bg-animate:first-child {
  top: 80px;
  left: 40px;
}

.hero-bg-animate:last-child {
  bottom: 80px;
  right: 40px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

.badge-custom {
  background-color: #ffff;
  border: 1px solid rgba(248, 246, 247, 0.831);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8fb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-free-consultation {
  background-color: rgba(37, 211, 102, 0.1);
  border: 2px solid var(--whatsapp);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--whatsapp);
  animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.max-width-500 {
  max-width: 500px;
}


/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slide-up 0.8s ease-out;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: white;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #ff5c8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
/* HELP SECTION */
.help-section {
  padding: 90px 0;
  background: #fffaf7;
}

/* Heading */
.help-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #3b2b2b;
}

.help-subtitle {
  color: #7a6a6a;
  font-size: 1.05rem;
}
/* GRID spacing thoda soft */
.help-grid {
  align-items: stretch;
}

/* CARD */
.help-card {
  background: #fff;
  border-radius: 22px;                 /* Lovable jaisa */
  padding: 22px 24px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transition: all .3s ease;
  display: flex;
  gap: 14px;                           /* icon + text gap */
  align-items: flex-start;
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ICON */
.help-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d6d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-icon i {
  color: #fff;
  font-size: 1.3rem;
}

/* CONTENT */
.help-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #3b2b2b;
}

.help-content p {
  font-size: 0.9rem;
  color: #6f5f5f;
  line-height: 1.5;
  margin: 0;
}

/* WhatsApp CTA */
.help-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 26px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s ease;
}

.help-whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
}

/* MOBILE TUNING */
@media (max-width: 576px) {

  /* Card layout vertical */
  .help-card {
    padding: 18px 14px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;     /* 🔥 icon upar */
    align-items: flex-start;
    gap: 10px;
  }

  /* Icon center-left & bigger */
  .help-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .help-icon i {
    font-size: 1.15rem;
  }

  /* Text */
  .help-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .help-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
  }

  /* Grid spacing tight like Lovable */
  .help-grid {
    row-gap: 14px;
  }
}



/* service SECTION */
.services-section {
  padding: 90px 0;
  background: #fffaf7;
}

/* HEADING */
.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3b2b2b;
}

.services-heading p {
  margin-top: 10px;
  color: #7a6a6a;
}

.heading-line {
  width: 50px;
  height: 4px;
  background: #e84c7f;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENT – LEFT ALIGNED */
.service-content {
  padding: 22px 22px 26px;
  text-align: left;           /* 🔥 MAIN FIX */
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #3b2b2b;
}

.service-content p {
  font-size: 0.95rem;
  color: #6f5f5f;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* WHATSAPP BUTTON – LEFT */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

/* ===============================
   SERVICES – LOVABLE STYLE MOBILE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile – EXACT Lovable Look */
@media (max-width: 576px) {

  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 per row */
    gap: 12px;
  }

  /* Card */
  .service-card {
    border-radius: 16px;
  }

  /* Image – chhoti aur fixed */
  .service-card img {
    height: 120px;              /* 🔥 MAIN FIX */
    border-radius: 16px 16px 0 0;
  }

  /* Content compact */
  .service-content {
    padding: 12px;              /* 🔥 card chhota */
  }

  .service-content h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .service-content p {
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  /* Button – full width like Lovable */
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 7px 0;
  }

  /* Heading */
  .services-heading h2 {
    font-size: 1.8rem;
  }

  .services-heading p {
    font-size: 0.9rem;
  }
}



/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 50px 0;
}

.faq-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #e2556f;
  display: inline-block;
  margin-bottom: 8px;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b2e2e;
}

.faq-title span {
  color: #e2556f;
}

.faq-subtitle {
  color: #8b6f6f;
  max-width: 520px;
  margin: 8px auto 0;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: #4b2e2e;
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #e2556f;
  background: #fff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7a6666;
}

/* Bottom */
.faq-bottom-text {
  color: #8b6f6f;
  margin-bottom: 14px;
}


/* stats section */
.stats-section {
  margin-top:50px;
  background: #d14b63;
  padding: 50px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 14px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-box i {
  font-size: 34px;
  color: #d14b63;
}

.icon-border {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  z-index: -1;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Georgia", serif;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-box,
  .icon-border {
    width: 60px;
    height: 60px;
  }

  .icon-box i {
    font-size: 26px;
  }

  .stat-item h3 {
    font-size: 28px;
  }
}

/* why section */

.why-section {
  background: #fffaf6;
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-family: Georgia, serif;
  color: #3b1f1f;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #9a5b5b;
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-box {
  width: 52px;
  height: 52px;
  background: #fde8ec;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-box i {
  color: #d14b63;
  font-size: 22px;
}

.info-card h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: #3b1f1f;
}

.info-card p {
  color: #7b5a5a;
  font-size: 15px;
  line-height: 1.6;
}

.cta-wrap {
  margin-top: 60px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}

.cta-btn i {
  font-size: 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}



/* How It Works */
/* Section Background */
.how-it-works-section {
  background: #fbf6ef;
  padding: 80px 0;
}

/* Heading */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #4b2e2e;
}

.section-subtitle {
  color: #8b6f6f;
  font-size: 1.05rem;
}

/* Card */
.how-card {
  background: #fffaf5;
  border-radius: 18px;
  padding: 35px 25px 40px;
  position: relative;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.how-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Step Badge */
.step-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #ff7a7a, #ff4d6d);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon Box */
.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d6d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-box i {
  color: #fff;
  font-size: 1.6rem;
}

/* Card Text */
.how-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #4b2e2e;
}

.how-card p {
  color: #7a6666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector Line (desktop only) */
@media (min-width: 992px) {
  .how-it-works-row > div:not(:last-child) .how-card::after {
    content: "";
    position: absolute;
    top: 45px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #f0c5c5;
  }
}
/* === HOW IT WORKS – MOBILE GRID FIX === */
@media (max-width: 767px) {
  .how-it-works-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 cards per row */
  }

  .how-it-works-row > div {
    width: 100%;
  }

  .how-card {
    padding: 22px 16px 26px; /* thoda compact */
  }

  .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .icon-box i {
    font-size: 1.3rem;
  }

  .how-card h5 {
    font-size: 0.95rem;
    line-height: 1.3;
    
  .how-card p {
    font-size: 0.85rem;
  }
    line-height: 1.4;
  }

  .step-badge {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    top: -10px;
    right: 12px;
  }
}

/* WhatsApp Icon color override */
.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #1ebe57);
}
/* Big WhatsApp CTA Button */
.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;                 /* icon–text gap bada */
  margin-top: 50px;
  padding: 14px 26px;       /* button bada */
  background: #25d366;
  color: #fff;
  font-size: 1.05rem;       /* text bada */
  font-weight: 700;
  border-radius: 40px;      /* more rounded */
  text-decoration: none;
  transition: all 0.3s ease;
}

/* WhatsApp Icon Size */
.whatsapp-cta-btn i {
  font-size: 1.4rem;        /* icon bada */
}

/* Hover effect */
.whatsapp-cta-btn:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* service Section */
.services-section {
  background: #fbf6ef;
  padding: 50px 0;
}

/* Card base */
.service-card {
  background: #fffaf5;
  border-radius: 16px;
  padding: 16px 18px;   /* ✅ kam kar di */
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Horizontal layout */
.service-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}


/* Icon */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d6d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Content */
.service-content h5 {
  font-weight: 700;
  color: #4b2e2e;
  margin-bottom: 6px;
}

.service-content p {
  
  color: #7a6666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Headings */
.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #4b2e2e;
}

.section-subtitle {
  color: #8b6f6f;
  font-size: 1.05rem;
}

/* tips section */
.tips-section {
  padding: 50px 0;
  background: #f7f7f7;
}

.tips-heading {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 40px;
}

.tips-badge {
  display: inline-block;
  background: rgba(232,76,127,0.12);
  color: #e84c7f;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 14px;
}

.tips-heading h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tips-heading p {
  color: #777;
}

/* Slider */
.tips-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.tips-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.tip-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  text-decoration: none;
}

.tip-media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
}

.tip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.tip-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.tip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Play button */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #e84c7f;
  z-index: 2;
}

/* Text */
.tip-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
  z-index: 2;
}

.tip-content .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tip-content span {
  font-size: 12px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 576px) {
  .tips-heading h2 {
    font-size: 26px;
  }

  .tip-card {
    flex: 0 0 240px;
  }
}

/* videos testimonials */
/* SECTION */
.video-testimonials {
  padding: 80px 0;
  background: #f8f7fb;
  overflow: hidden;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* HEADING */
.vt-heading {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 50px;
}

.vt-badge {
  display: inline-block;
  background: rgba(232,76,127,0.12);
  color: #e84c7f;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}

.vt-heading h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.vt-heading p {
  color: #777;
}

.text-gradient {
  background: linear-gradient(135deg,#e84c7f,#ff9fc2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SLIDER */
.vt-slider-wrap {
  position: relative;
}

.vt-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 16px 10px;
  margin: 0 0;
}

.vt-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.vt-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  text-decoration: none;
}

.vt-media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.vt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.vt-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.vt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2));
}

/* PLAY */
.vt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e84c7f;
  z-index: 2;
}

/* TIME */
.vt-time {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
}

/* TEXT */
.vt-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
  z-index: 2;
}

.vt-text p {
  font-size: 14px;
  font-weight: 600;
}

/* ARROWS */
.vt-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 5;
}

.vt-arrow.left {
  left: -10px;
}

.vt-arrow.right {
  right: -10px;
}

/* CTA */
.vt-cta {
  text-align: center;
  margin-top: 40px;
}

.vt-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.vt-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}

/* MOBILE */
@media (max-width: 768px) {
  .vt-heading h2 {
    font-size: 28px;
  }

  .vt-card {
    flex: 0 0 240px;
  }

  .vt-arrow {
    display: none;
  }
}


/* all services */
/* Section */
.all-services-section {
  background: #fffaf3;
  padding: 90px 0;
}

/* Heading */
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #e2556f;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b2e2e;
}

.section-title span {
  color: #e2556f;
}

.section-subtitle {
  color: #8b6f6f;
  margin-top: 8px;
}

.divider {
  width: 50px;
  height: 3px;
  background: #e2556f;
  margin: 18px auto 0;
  border-radius: 10px;
}

/* Card */
.service-box {
  background: #fffaf5;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* Top Border */
.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ff6b6b, #ff4d6d);
  border-radius: 20px 20px 0 0;
}

/* Icon */
.service-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d6d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 25px;
}

/* List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f4a4a;
  font-size: 0.95rem;
  margin-bottom: 12px;
  justify-content: flex-start; /* ← center ki jagah start */
}

.service-list li::before {
  content: "✓";
  color: #e2556f;
  font-weight: bold;
}

/* Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

.service-box .service-btn {
  width: 100%;              /* full width */
  max-width: 280px;         /* image jaisa limit */
  margin: 0 auto;           /* center */
  padding: 16px 0;          /* height thodi badi */
  font-size: 1rem;
}

/* Section */
.testimonials-section {
  background: #fffaf3;
 
}

/* Heading */
.testimonial-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b2e2e;
}

.testimonial-subtitle {
  color: #8b6f6f;
  margin-top: 10px;
}

/* Card */
.testimonial-card-new {
  background: #fffaf5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.testimonial-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* Image */
.testimonial-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Body */
.testimonial-body {
  padding: 26px;
}

/* Stars */
.stars i {
  color: hsl(14.88deg 68.98% 63.33%);
  margin-right: 3px;
  font-size: 0.9rem;
}

/* Text */
.testimonial-text {
  font-style: italic;
  color: #7a6666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 18px 0 22px;
}

/* testimonials */
.testimonial-user {
  display: flex;
  align-items: flex-start;   /* 👈 center ki jagah top */
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  background: hsl(3.5deg 62.5% 62.35%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-user strong {
  display: block;
  line-height: 1.2;
}

.testimonial-user small {
  display: block;
  margin-top: 2px;           
  color: #9b7c7c;
  font-size: 0.8rem;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #fff5f6, #ffffff);
  padding: 100px 0;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, #ff6b6b, #ff4d6d);
}

.about-image-wrapper img {
  border-radius: 20px;
  max-width: 100%;
  background: #fff;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4d6d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Right Content */
.about-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #e2556f;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #4b2e2e;
  margin-bottom: 18px;
}

.about-title span {
  color: #e2556f;
}

.about-text {
  color: #7a6666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 34px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffaf5;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  color: #4b2e2e;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.stat-box i {
  color: #ff4d6d;
  font-size: 1.1rem;
}

/* CTA Button */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.45);
}

/* Responsive */
@media (max-width: 768px) {

  .about-title {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 per row */
    gap: 12px;
  }

  .stat-box {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .stat-box i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}


/* Achieve Section */
.achieve-section {
  background: linear-gradient(180deg, #fff5f6, #ffffff);
  padding: 50px 0;
}

/* Heading */
.achieve-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4b2e2e;
}

.achieve-subtitle {
  color: #8b6f6f;
  margin-top: 10px;
  font-size: 1rem;
}

/* Items */
.achieve-item {
  background: #fffaf5;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #4b2e2e;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Green check */
.check-icon {
  width: 26px;
  height: 26px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA Button */
.achieve-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.achieve-cta:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.45);
}
.achieve-cta i {
  font-size: 1.4rem;   /* icon bada */
}

/* Responsive */
/* ACHIEVE SECTION – RESPONSIVE ONLY */
@media (max-width: 768px) {

  /* title */
  .achieve-title {
    font-size: 2rem;
  }

  /* force 2 items per row on mobile */
  .achieve-list > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* item look compact */
  .achieve-item {
    font-size: 0.85rem;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .check-icon {
    font-size: 12px;
    width: 22px;
    height: 22px;
    line-height: 22px;
  }
}


/* CTA Banner */
.hero-lovable {
  position: relative;
  background: url("../src/assets/couple-happy.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;

  /* 🔥 height control */
  min-height: auto;
  padding: 90px 0;   /* ⬅️ Lovable-like spacing */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 58, 93, 0.88); /* image visible rahe */
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Title */
.hero-title {
  font-size: 3.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #4caf50;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 16px;
  color: #ffeaf1;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* CTA Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: 0.3s;
  margin-bottom: 10px;
}

.hero-btn:hover {
  transform: translateY(-2px);
  /* Trust line */
}

.hero-trust {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-lovable {
    padding: 45px 0;
  }

  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 6px;
  }
}

/* Footer */

footer {
  background: linear-gradient(180deg, #4a1f2a 0%, #2b141b 100%);
  border-top: none;
  padding: 80px 0 60px;
  text-align: center;
  color: #f5f5f5;
}

footer p.lead {
  font-size: 18px; 
  font-weight: 400;
}

footer .fa-whatsapp {
  font-size: 22px;   /* 24px bhi rakh sakte ho */
}

/* Footer brand title */
footer .h4,
footer h4 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Footer paragraph text */
footer p {
  color: #e0d7db;
  font-size:16px;
}

/* Footer links */
footer a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .mb-4 > a > .fa-heart {
  font-size: 28px;
}
/* WhatsApp Button (Main CTA) */
footer .btn-whatsapp {
  background: #20b858;
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

footer .btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
}

/* Icons row */
footer i {
  opacity: 0.9;
}

/* Divider line */
footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 40px 0 25px;
}

/* Small copyright text */
footer .small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* Mobile spacing fix */
@media (max-width: 768px) {
  footer {
    padding: 60px 20px 40px;
  }
}


/* Sticky WhatsApp Button */
.whatsapp-sticky-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
  }

  .navbar {
    backdrop-filter: blur(8px);
  }
}

.tip-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

/* Video */
.tip-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
}

/* Native controls FIX */
.tip-video::-webkit-media-controls {
  display: flex !important;
  opacity: 1 !important;
}

/* Custom play button */
.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease;
}

.custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hide play button when video plays */
.tip-media.playing .custom-play-btn {
  display: none;
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-down {
  animation: fadeInDown 0.6s ease;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease;
}
