@font-face {
  font-family: 'Inter';
  font-display: swap;
}
    
    /* ================= NAVBAR ================= */
    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      padding: 0.8rem 0;
      transition: var(--transition);
      background-color: rgba(255, 255, 255, 0.98) !important;
    }
    
    .navbar.scrolled {
      padding: 0.5rem 0;
      background-color: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-link {
      font-size: 16px;
      margin-right: 25px;
      color: var(--dark);
      font-weight: 500;
      position: relative;
      transition: var(--transition);
      padding: 0.5rem 0 !important;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--primary);
    }
    
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary);
      transform-origin: center;
      animation: underline-grow 0.3s ease forwards;
    }
    
    @keyframes underline-grow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
      border-radius: 12px;
      padding: 0.8rem 0;
      margin-top: 10px;
      transform: translateY(10px);
      opacity: 0;
      visibility: hidden;
      display: block;
      transition: var(--transition);
    }
    
    .dropdown:hover .dropdown-menu {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    
    .dropdown-item {
      padding: 0.7rem 1.5rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    
    .dropdown-item:hover {
      background-color: rgba(111, 66, 193, 0.05);
      color: var(--primary);
      padding-left: 2rem;
    }
    
    .dropdown-item:hover::before {
      content: '';
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      background-color: var(--primary);
      border-radius: 50%;
    }
    
    .contact-btn {
      background-color: var(--primary);
      color: white;
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      transition: var(--transition);
      border: none;
      font-weight: 500;
      box-shadow: 0 4px 10px rgba(111, 66, 193, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .contact-btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
    }
    
    .contact-btn:active {
      transform: translateY(0);
    }
    
    /* ================= MOBILE MENU ================= */
    .mobile-menu {
      width: 85%;
      max-width: 330px;
      background: #fff;
      height: 100vh;
      position: fixed;
      top: 0;
      left: -100%;
      padding: 25px;
      transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
      box-shadow: 2px 0 15px rgba(0,0,0,0.1);
      z-index: 9999;
      overflow-y: auto;
    }
    
    .mobile-menu.show {
      left: 0;
    }
    
    .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--light-gray);
    }
    
    .mobile-logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .mobile-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--gray);
      cursor: pointer;
      transition: var(--transition);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .mobile-close:hover {
      color: var(--primary);
      background-color: var(--light-gray);
    }
    
    .mobile-nav-item {
      display: block;
      padding: 0.8rem 0;
      font-weight: 500;
      color: var(--dark);
      text-decoration: none;
      border-bottom: 1px solid var(--light-gray);
      transition: var(--transition);
      position: relative;
    }
    
    .mobile-nav-item:hover, .mobile-nav-item.active {
      color: var(--primary);
      padding-left: 10px;
    }
    
    .mobile-nav-item.active::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 20px;
      background-color: var(--primary);
      border-radius: 2px;
    }
    
    .mobile-dropdown {
      margin-bottom: 0.5rem;
    }
    
    .mobile-dropdown-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 0;
      font-weight: 600;
      color: var(--dark);
      border-bottom: 1px solid var(--light-gray);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .mobile-dropdown-header:hover {
      color: var(--primary);
    }
    
    .mobile-dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }
    
    .mobile-dropdown-content.show {
      max-height: 300px;
    }
    
    .mobile-dropdown-item {
      display: block;
      padding: 0.6rem 1rem;
      color: var(--gray);
      text-decoration: none;
      transition: var(--transition);
      border-left: 2px solid transparent;
    }
    
    .mobile-dropdown-item:hover {
      color: var(--primary);
      background-color: var(--light);
      border-radius: 5px;
      border-left-color: var(--primary);
      padding-left: 1.5rem;
    }
    
    /* ================= MOBILE MENU OVERLAY ================= */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    
    .mobile-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    
   :root {
  --primary: #6f42c1;
  --primary-dark: #563d7c;
  --secondary: #e83e8c;
  --dark: #212529;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --light-purple: #f3f1fb;
  --light-bg: #f8f7fb;
  --transition: all 0.3s ease;
}

/* Base & Accessibility */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--light-bg);
  padding-top: 76px;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 10000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Network Loader */
.network-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  color: white;
  font-family: 'Inter', sans-serif;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255,255,255,0.2);
  border-top: 6px solid var(--primary);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f7fb 0%, #eef2ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: -76px;
  padding-top: 156px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(111, 66, 193, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.brand-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 10px 30px rgba(86, 61, 124, 0.2);
  margin: 40px auto;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.brand-box p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 12px 0 0;
}

/* Feature Box */
.feature-box {
  background: white;
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary);
}

.feature-box:hover {
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: inline-block;
}

/* Buttons */
.btn-purple {
  background: var(--primary);
  color: white;
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.btn-purple:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
}

/* Images */
.rounded-img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.rounded-img:hover {
  transform: scale(1.02);
}

/* Testimonials */
.testimonial-section {
  background: #faf7ff;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, #faf7ff, transparent);
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, #faf7ff, transparent);
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 45s linear infinite;
  width: max-content;
}

.testimonial-card {
  min-width: 340px;
  background: white;
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.testimonial-text {
  margin: 18px 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client small {
  color: #9ca3af;
  display: block;
}

@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (hover: hover) {
  .testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
  }
}

/* Stats Section */
.stats-section {
  background: white;
}

.stat-item {
  padding: 40px 20px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #6f42c1;
  margin-bottom: 12px;
}

.stat-text {
  color: #4b5563;
  font-size: 1rem;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.6;
}

.stat-highlight .stat-number {
  color: var(--secondary);
}

/* Conditions Section */
.conditions-section {
  background: white;
}

.condition-block {
  margin-bottom: 80px;
  animation: fadeUp 0.6s ease both;
}

.condition-content h3 {
  color: #4c1d95;
  margin-bottom: 15px;
}

.condition-content p {
  color: #4b5563;
  line-height: 1.7;
  max-width: 520px;
}

.condition-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.condition-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #374151;
}

.condition-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

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

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 90px 0;
  overflow: hidden;
}

.cta-blur {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(90px);
  border-radius: 50%;
}

.cta-blur-1 {
  top: -80px;
  left: -80px;
}

.cta-blur-2 {
  bottom: -80px;
  right: -80px;
}

.cta-subtext {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
}

.cta-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 32px;
  color: #1f2937;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.cta-btn {
  padding: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.cta-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.cta-section .section-title::after {
  background: white;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 136px;
  }
}

@media (max-width: 768px) {
  .brand-box {
    font-size: 2.5rem;
    padding: 30px 20px;
  }
  
  .hero-section {
    padding: 50px 0;
    padding-top: 126px;
  }
  

  
  .testimonial-card {
    min-width: 280px;
    padding: 22px;
  }
  
  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 40px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
  
  .condition-block {
    margin-bottom: 60px;
  }
  
  .condition-content p {
    max-width: 100%;
  }
  
  .cta-card {
    padding: 24px;
  }
} 

