@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
    
    body { font-family: 'Inter', system-ui, sans-serif; }
    
    /* Enhanced animations */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
      50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
    }
    
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .float-animation { animation: float 6s ease-in-out infinite; }
    .pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
    
    /* Glass morphism */
    .glass { 
      backdrop-filter: blur(16px);
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.2);
    }
    .glass-dark { 
      backdrop-filter: blur(16px);
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Enhanced card hover effects */
    .card { 
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transition: left 0.5s;
      z-index: 1;
    }
    .card:hover::before { left: 100%; }
    .card:hover { 
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    /* Animated gradient backgrounds */
    .shine { 
      background: linear-gradient(-45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
      background-size: 400% 400%;
      animation: gradient-shift 15s ease infinite;
    }
    
    /* Enhanced button styles */
    .btn-primary {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }
    .btn-primary:hover::before { left: 100%; }
    .btn-primary:hover { transform: translateY(-2px); }
    
    /* Login box improvements */
    .login-box {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255,255,255,0.3);
      box-shadow: 0 25px 50px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
      height: 580px; /* Fixed height to match slider */
    }
    .login-box::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
      background-size: 400% 400%;
      animation: gradient-shift 10s ease infinite;
      border-radius: inherit;
      z-index: -1;
    }
    
    .dark .login-box {
      background: rgba(15,23,42,0.95);
      border: 2px solid rgba(255,255,255,0.1);
    }
    
    /* Enhanced typography */
    .hero-title {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    
    /* Responsive grid improvements */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    /* Enhanced slider */
    .slider-frame {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0,0,0,0.2);
      height: 580px; /* Fixed height to match login box */
    }
    
    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .slide.active { opacity: 1; }
    
    /* Mobile optimizations */
    @media (max-width: 768px) {
      .hero-title { font-size: 2rem; line-height: 1.2; }
      .login-box { margin: 0; width: 100%; height: auto; padding: 1rem; padding-bottom: 0.2cm; }
      .slider-frame { height: 250px; margin-bottom: 1rem; }
      .card { margin-bottom: 1rem; }
      .feature-grid { grid-template-columns: 1fr; }
    }
    
    /* Scroll animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-on-scroll {
      animation: fadeInUp 0.6s ease-out forwards;
    }
    
    /* Enhanced form elements */
    .form-input {
      transition: all 0.3s ease;
      position: relative;
    }
    .form-input:focus {
      transform: translateY(-1px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    /* Progress indicators */
    .progress-dots {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 1rem;
    }
    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      transition: all 0.3s ease;
    }
    .progress-dot.active {
      background: #fff;
      transform: scale(1.2);
    }

    /* Social media icons hover effects */
    .social-icon {
      transition: all 0.3s ease;
    }
    .social-icon:hover {
      transform: translateY(-2px) scale(1.1);
    }
    
    /* Contact Us Modal Styles - Eye-comfortable & Fully Responsive */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    .modal-content {
      width: 100%;
      max-width: 600px;
      max-height: 90vh;
      overflow-y: auto;
      background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 24px;
      box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }
    
    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
    }
    
    .dark .modal-content {
      background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
      border: 1px solid rgba(71, 85, 105, 0.3);
      color: #f1f5f9;
    }
    
    /* Responsive breakpoints for modal */
    @media (max-width: 640px) {
      .modal-overlay {
        padding: 0.5rem;
      }
      .modal-content {
        max-height: 95vh;
        border-radius: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .modal-overlay {
        padding: 0.25rem;
      }
      .modal-content {
        max-height: 98vh;
        border-radius: 16px;
      }
    }
    
    /* Eye-comfortable form styling */
    .modal-form-input {
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid rgba(148, 163, 184, 0.2);
      color: #334155;
      transition: all 0.3s ease;
    }
    
    .modal-form-input:focus {
      background: rgba(255, 255, 255, 1);
      border-color: rgba(59, 130, 246, 0.5);
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
      outline: none;
    }
    
    .dark .modal-form-input {
      background: rgba(30, 41, 59, 0.8);
      border: 2px solid rgba(71, 85, 105, 0.4);
      color: #e2e8f0;
    }
    
    .dark .modal-form-input:focus {
      background: rgba(30, 41, 59, 0.95);
      border-color: rgba(96, 165, 250, 0.6);
      box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
    }
    
    /* Modal header gradient */
    .modal-header {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .dark .modal-header {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
      border-bottom: 1px solid rgba(71, 85, 105, 0.2);
    }

    /* WELLGET Logo Concept 24: Time to Money Styles */
    .wellget-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
    }
    
    .wellget-logo .clock {
      border-radius: 50%;
      position: relative;
      background: white;
      border: 3px solid #667eea;
    }
    
    .wellget-logo .clock::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 1.5px;
      height: 45%;
      background: #10b981;
      transform: translate(-50%, -50%) rotate(45deg);
      transform-origin: bottom center;
    }
    
    .wellget-logo .clock::after {
      content: '₹';
      position: absolute;
      top: -6px;
      right: -6px;
      width: 14px;
      height: 14px;
      background: #f59e0b;
      border-radius: 50%;
      font-size: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }
    
    /* Header logo sizing */
    .wellget-logo.header-size .clock {
      width: 40px;
      height: 40px;
    }
    
    /* Footer logo sizing */
    .wellget-logo.footer-size .clock {
      width: 48px;
      height: 48px;
    }
    
    .wellget-logo.footer-size .clock::after {
      width: 16px;
      height: 16px;
      font-size: 10px;
      top: -8px;
      right: -8px;
    }
    
    /* Dark mode adjustments for footer */
    .dark .wellget-logo .clock {
      border-color: #60a5fa;
    }
  

/* --- merged from inline <style> blocks --- */


/* Mobile-only inner spacing for login box bottom edge */
@media (max-width: 640px){
  .login-box{padding-bottom: 0.4cm !important; /* ensure the bottom frame doesn't touch the button */
    margin-bottom: 0.4cm !important;}
}


/* --- merged from inline <style> blocks --- */


/* Keep the login title on a single line on mobile and scale it to fit */
@media (max-width: 640px){
  .login-box .login-title{
    white-space: nowrap;
    /* scale slightly on small screens so it doesn't wrap */
    font-size: clamp(20px, 6.5vw, 28px);
    line-height: 1.1;
  }
}


/* --- merged from inline <style> blocks --- */


/* Hide slider controls on small screens */
@media (max-width: 767.98px) {
  #nextSlide, #prevSlide { display: none !important; }
}


/* --- merged from inline <style> blocks --- */


/* Scoped Grow|Earn slider content — ONLY affects elements under #slider .embedded-grow-earn */
#slider .embedded-grow-earn, .slider-frame .embedded-grow-earn { position: relative; width: 100%; height: 100%; }
#slider .embedded-grow-earn .ge-container, .slider-frame .embedded-grow-earn .ge-container {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  animation: ge-containerPulse 3s ease-in-out infinite alternate;
  padding-top: 40px;
}
@keyframes ge-containerPulse { 0% { transform: scale(1); } 100% { transform: scale(1.02); } }
#slider .embedded-grow-earn .ge-container::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: ge-shimmer 4s linear infinite;
}
@keyframes ge-shimmer { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
#slider .embedded-grow-earn .header { text-align: center; margin-bottom: 30px; margin-top: 10px; z-index: 2; }
#slider .embedded-grow-earn .main-title {
  font-size: 2.8rem; font-weight: 900; letter-spacing: 8px;
  background: linear-gradient(45deg, #ffffff, #ffeb3b, #ffffff); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: ge-growEarnGlow 2.5s ease-in-out infinite alternate, ge-gradientShift 3s ease-in-out infinite;
}
@keyframes ge-growEarnGlow { 0% { transform: scale(1); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); } 100% { transform: scale(1.03); filter: drop-shadow(0 12px 22px rgba(255,235,59,0.5)); } }
@keyframes ge-gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
#slider .embedded-grow-earn .cards-container { display: flex; gap: 32px; z-index: 2; margin-bottom: 20px; }
#slider .embedded-grow-earn .card {
  background: rgba(255,255,255,0.95); border-radius: 18px; padding: 26px 22px; width: 280px; text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18); transition: transform 0.35s ease, box-shadow 0.35s ease; position: relative; overflow: hidden;
}
#slider .embedded-grow-earn .card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,0.26); }
#slider .embedded-grow-earn .card-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; letter-spacing: .5px; }
#slider .embedded-grow-earn .business-card .card-title { color: #667eea; }
#slider .embedded-grow-earn .member-card .card-title { color: #00bcd4; }
#slider .embedded-grow-earn .feature { display: flex; align-items: center; margin-bottom: 10px; font-size: 1rem; color: #556; }
#slider .embedded-grow-earn .checkmark { color: #4caf50; margin-right: 10px; font-weight: bold; font-size: 1.1rem; }
#slider .embedded-grow-earn .card-button { width: 64px; height: 64px; border-radius: 50%; border: none; font-size: 1.4rem; font-weight: 800; color: white; margin-top: 16px; cursor: default; }
#slider .embedded-grow-earn .business-card .card-button { background: linear-gradient(135deg, #667eea, #764ba2); }
#slider .embedded-grow-earn .member-card .card-button { background: linear-gradient(135deg, #00bcd4, #0097a7); }
#slider .embedded-grow-earn .footer-text { color: rgba(255,255,255,0.95); font-size: 0.95rem; text-align: center; max-width: 600px; line-height: 1.35; z-index: 2; }
#slider .embedded-grow-earn .floating-elements { position: absolute; width: 100%; height: 100%; pointer-events: none; }
#slider .embedded-grow-earn .floating-element { position: absolute; background: rgba(255,255,255,0.1); border-radius: 50%; animation: ge-float 6s ease-in-out infinite; }
#slider .embedded-grow-earn .floating-element:nth-child(1) { width: 60px; height: 60px; top: 10%; left: 10%; animation-delay: 0s; }
#slider .embedded-grow-earn .floating-element:nth-child(2) { width: 40px; height: 40px; top: 20%; right: 15%; animation-delay: 1s; }
#slider .embedded-grow-earn .floating-element:nth-child(3) { width: 80px; height: 80px; bottom: 15%; left: 5%; animation-delay: 2s; }
#slider .embedded-grow-earn .floating-element:nth-child(4) { width: 30px; height: 30px; bottom: 25%; right: 10%; animation-delay: 3s; }
@keyframes ge-float { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } }
/* Responsive inside the slider */
@media (max-width: 1024px) {
  #slider .embedded-grow-earn .cards-container { gap: 20px; }
  #slider .embedded-grow-earn .card { width: 260px; padding: 22px 18px; }
  #slider .embedded-grow-earn .main-title { font-size: 2.2rem; letter-spacing: 6px; }
}
@media (max-width: 640px) {
  #slider .embedded-grow-earn .cards-container { flex-direction: column; align-items: center; gap: 16px; }
  #slider .embedded-grow-earn .card { width: 85%; max-width: 320px; }
  #slider .embedded-grow-earn .main-title { font-size: 1.8rem; letter-spacing: 4px; }
}


/* --- merged from inline <style> blocks --- */


/* --- Mobile-only slider responsiveness (scoped) --- */
@media (max-width: 768px) {
  .slider-frame { height: 420px !important; }
  #slider .embedded-grow-earn .ge-container { padding-top: 24px; }
  #slider .embedded-grow-earn .cards-container { gap: 18px; }
}
@media (max-width: 480px) {
  .slider-frame { height: 360px !important; }
  #slider .embedded-grow-earn .main-title { font-size: 1.6rem !important; letter-spacing: 3px; }
  #slider .embedded-grow-earn .card { padding: 18px 16px; }
  #slider .embedded-grow-earn .footer-text { font-size: 0.9rem; }
}


/* --- merged from inline <style> blocks --- */


/* Hide slider on mobile only */
@media (max-width: 768px) {
  .slider-frame, #slider { display: none !important; }
}


/* --- merged from inline <style> blocks --- */


/* Mobile spacing above login box only */
@media (max-width: 768px) {
  .login-box { margin-top: 0.4cm !important; }
}


/* --- merged from inline <style> blocks --- */


/* Mobile: ensure login box starts 0.4cm below header */
@media (max-width: 768px) {
  .shine { align-items: flex-start !important; padding-top: 0.4cm !important; }
}


/* --- merged from inline <style> blocks --- */


/* Mobile: keep 0.5cm space below login box before the Join As section */
@media (max-width: 768px) {
  .login-box { margin-bottom: 0.5cm !important; }
}


/* --- merged from inline <style> blocks --- */


/* Mobile: keep 0.5cm space between login box (inside .shine) and the Join As section */
@media (max-width: 768px) {
  .shine { padding-bottom: 0.5cm !important; }
}


/* --- merged from inline <style> blocks --- */


/* MOBILE-ONLY precise spacing between login box and Join As */
@media (max-width: 768px) {
  .shine { padding-bottom: 0 !important; }        /* reset earlier padding-bottom */
  .login-box { margin-bottom: 0.5cm !important; } /* exact 0.5cm gap */
  #grow { margin-top: 0 !important; padding-top: 0 !important; } /* remove extra space at Join As start */
}


/* --- merged from inline <style> blocks --- */


/* MOBILE: collapse unused hero height (remove blue/purple space below login box) */
@media (max-width: 768px) {
  .shine { min-height: auto !important; height: auto !important; }
}


/* --- merged from inline <style> blocks --- */


/* Mobile-only: nudge Join As content down from the section's top border */
@media (max-width: 768px) {
  #grow { padding-top: 0.3cm !important; }
}
