 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary: #4F46E5;
            --primary-light: #EEF2FF;
            --secondary: #F43F5E;
            --secondary-light: #FFE4E6;
            --text: #1E293B;
            --text-light: #64748B;
            --background: #FFFFFF;
            --background-alt: #F8FAFC;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --whatsapp: #25D366;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: var(--background);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            letter-spacing: -0.5px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.2s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .hero {
            background: linear-gradient(120deg, #F5F3FF 0%, #EFF6FF 100%);
            padding: 120px 0 160px;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
            top: -300px;
            right: -100px;
        }
        
        .hero:after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0) 70%);
            bottom: -200px;
            left: -50px;
        }
        
        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 60px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1.5px;
        }
        
        .hero p {
            font-size: 20px;
            color: var(--text-light);
            margin-bottom: 40px;
            font-weight: 400;
        }
        
        
        /* WhatsApp floating button */
        .whatsapp-float {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background-color: var(--whatsapp);
            color: rgb(226, 17, 17);
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            top: -40px;
            right: 0;
            background-color: rgb(167, 30, 30);
            color: var(--text);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 500;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
            pointer-events: none;
            white-space: nowrap;
        }
        

        .whatsapp-button {
            background: linear-gradient(135deg, var(--whatsapp) 0%, #128C7E 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            letter-spacing: 0.5px;
            text-decoration: none;
        }
        
        .whatsapp-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-button svg {
            margin-right: 12px;
        }
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateY(0);
        }
        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, #635BFF 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(99, 91, 255, 0.3);
            letter-spacing: 0.5px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(99, 91, 255, 0.4);
        }
        
        .cta-button svg {
            margin-right: 12px;
        }
        
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-alt {
            background-color: var(--background-alt);
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
            letter-spacing: -0.5px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 60px;
            text-align: center;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            background-color: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            text-align: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .step:before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-light) 0%, rgba(238, 242, 255, 0) 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            z-index: -1;
        }
        
        .step-number {
            font-size: 72px;
            font-weight: 700;
            color: var(--primary-light);
            line-height: 1;
            margin-bottom: 20px;
            position: absolute;
            right: 20px;
            top: 10px;
            opacity: 0.8;
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        
        .step h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text);
            position: relative;
            z-index: 2;
        }
        
        .step p {
            color: var(--text-light);
            font-size: 15px;
            position: relative;
            z-index: 2;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit {
            padding: 40px 30px;
            background-color: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .benefit:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .benefit h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text);
        }
        
        .benefit p {
            color: var(--text-light);
            font-size: 15px;
            margin-top: auto;
        }
        
        .testimonials-container {
            position: relative;
            padding: 40px 0;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            position: relative;
        }
        
        .testimonial:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .testimonial:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            line-height: 1;
            color: var(--primary-light);
            font-family: 'Georgia', serif;
            z-index: 0;
            opacity: 0.7;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 100px;
            margin-right: 16px;
            object-fit: cover;
            border: 3px solid var(--primary-light);
        }
        
        .author-info h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 14px;
        }
        
        .trust-badges {
            text-align: center;
        }
        
        .badges {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .badge {
            display: flex;
            align-items: center;
            padding: 16px 24px;
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .badge svg {
            margin-right: 12px;
        }
        
        .badge span {
            font-weight: 500;
            font-size: 15px;
            color: var(--text);
        }
        
        footer {
            background-color: #1E293B;
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        footer:before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
            top: -250px;
            right: -100px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 24px;
            color: white;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -8px;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 15px;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            margin-top: 60px;
            color: #94A3B8;
            font-size: 14px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .logo {
      text-decoration: none;
      color: inherit; /* optional: keeps parent color */
      display: flex;
      align-items: center; /* optional: aligns SVG with text */
  }
  .logo span {
      font-weight: bold; /* optional: styling for 'Healer' */
  }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .testimonial {
                padding: 30px;
            }
            
            .testimonial-text {
                font-size: 16px;
            }
        }







        .bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    position: sticky;
    bottom: 0;
    z-index: 20;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    flex: 1;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item:active {
    background-color: rgba(0, 102, 255, 0.05);
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}



  /* Hide on desktop (screens larger than 992px) */
  @media (min-width: 800px) {
            .bottom-nav {
                display: none !important;
                visibility: hidden;
                opacity: 0;
                pointer-events: none;
            }
            
            .content {
                padding-bottom: 20px;
            }
        }





        