
        /* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #6d4c41;
    --primary-dark: #4e342e;
    --secondary: #81c784;
    --accent: #ffcc80;
    --text-dark: #3e2723;
    --text-light: #7b7b7b;
    --bg-light: #fafaf5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .grid { display: grid; gap: 30px; }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(109, 76, 65, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            background: var(--primary-dark);
            box-shadow: 0 8px 20px rgba(109, 76, 65, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-subtitle {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: var(--transition);
            padding: 20px 0;
        }

        header.sticky {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            padding: 15px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            opacity: 0;
            animation: fadeInDown 0.5s forwards;
        }
        
        /* Stagger animation for nav */
        .nav-link:nth-child(1) { animation-delay: 0.1s; }
        .nav-link:nth-child(2) { animation-delay: 0.2s; }
        .nav-link:nth-child(3) { animation-delay: 0.3s; }
        .nav-link:nth-child(4) { animation-delay: 0.4s; }
        .nav-link:nth-child(5) { animation-delay: 0.5s; }
        .nav-link:nth-child(6) { animation-delay: 0.6s; }
        .nav-link:nth-child(7) { animation-delay: 0.7s; }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after { width: 100%; }

        .header-btns { display: flex; gap: 15px; }

        .hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
            overflow: hidden;
            padding-top: 100px;
           
        }

        .hero-content {
            flex: 1;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-btns { display: flex; gap: 20px; }

        /* Floating Icons Animation */
        .hero-visual {
            flex: 1;
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .floating-icon {
            position: absolute;
            background: var(--white);
            padding: 15px;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            animation: float 6s ease-in-out infinite;
        }

        .fi-1 { top: 10%; left: 10%; animation-delay: 0s; } /* Healthcare */
        .fi-2 { top: 20%; right: 15%; animation-delay: 1s; } /* Skincare */
        .fi-3 { bottom: 30%; left: 5%; animation-delay: 2s; } /* Hair */
        .fi-4 { bottom: 10%; right: 10%; animation-delay: 3s; } /* Dental */
        .fi-5 { top: 50%; left: 40%; animation-delay: 1.5s; z-index: -1; font-size: 3rem; opacity: 0.1; } /* Center Logo BG */
        .fi-6 { top: 15%; left: 50%; animation-delay: 2.5s; } /* Weight Loss */
        .fi-7 { bottom: 20%; left: 25%; animation-delay: 0.5s; } /* Wellness */

        /* --- ABOUT US --- */
        .about {
            background: var(--white);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        /* --- SERVICES --- */
        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--primary);
        }

        .s-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.3s;
        }

        .service-card:hover .s-icon { transform: scale(1.1) rotate(5deg); }

        /* --- WHY CHOOSE US --- */
        .why-us { background: var(--white); }
        
        .features-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .feature-box {
            flex: 1 1 300px;
            background: var(--bg-light);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: scale(1.05);
            background: var(--white);
            box-shadow: var(--shadow);
        }
        
        .feature-box:hover .fb-icon { animation: bounce 0.5s; }

        .fb-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* --- HEALTH INSURANCE --- */
        .insurance { background: linear-gradient(to bottom, var(--bg-light), #fff); }

        .plans-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .plan-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            width: 320px;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            border: 1px solid #eee;
            overflow: hidden;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        
        .plan-card.premium { border: 2px solid var(--accent); transform: scale(1.05); }
        .plan-card.premium:hover { transform: scale(1.05) translateY(-10px); }
        .badge { position: absolute; top: 20px; right: -30px; background: var(--accent); color: #fff; padding: 5px 30px; transform: rotate(45deg); font-size: 0.8rem; font-weight: bold; }

        .plan-features li { margin-bottom: 10px; display: flex; gap: 10px; color: var(--text-light); }
        .plan-features svg { color: var(--primary); width: 20px; flex-shrink: 0; }

        /* --- TESTIMONIALS --- */
        .testimonials { background: var(--primary-dark); color: var(--white); position: relative; }
        .testimonials .section-title, .testimonials .section-subtitle { color: var(--white); }
        
        .slider-container {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 20px;
            text-align: center;
        }

        .slide p {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
        }

        .slide h4 { color: var(--accent); }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active { background: var(--white); transform: scale(1.2); }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-section { background: var(--bg-light); }
        
        .form-container {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            max-width: 700px;
            margin: 0 auto;
        }

        .form-group { margin-bottom: 20px; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 500; }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: var(--transition);
        }

        .form-control:focus { outline: none; border-color: var(--primary); }
        
        .newsletter-section { background: var(--text-dark); color: var(--white); padding: 60px 0; }
        .newsletter-section .section-title { color: var(--white); }

        /* --- FOOTER --- */
        footer {
            background: #1e272e;
            color: #b2bec3;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }

        .social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 0 15px var(--primary);
        }

        .legal-link { cursor: pointer; text-decoration: underline; }
        .legal-link:hover { color: var(--white); }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            font-size: 0.9rem;
        }

        /* --- MODALS & MESSAGES --- */
        .modal {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active { opacity: 1; visibility: visible; }
        
        .modal-content {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .modal.active .modal-content { transform: translateY(0); }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; }

        .success-message {
            display: none;
            text-align: center;
            background: #dff9fb;
            color: #00b894;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #00b894;
        }
        .success-message.show { display: block; animation: fadeIn 0.5s; }

        /* --- ANIMATIONS --- */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Scroll Reveal Classes */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .hero { flex-direction: column; text-align: center; padding-top: 120px; }
            .hero-btns { justify-content: center; }
            .hero h1 { font-size: 2.5rem; }
            .hero-visual { width: 100%; height: 300px; margin-top: 30px; }
            
            .nav-menu {
                position: absolute;
                top: 80px;
                right: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 30px 0;
                box-shadow: var(--shadow);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: 0.4s ease-in-out;
            }
            
            .nav-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            .nav-link { opacity: 1; animation: none; }
            .hamburger { display: block; }
            .header-btns { display: none; } /* Hide top buttons on mobile for simplicity, or move inside menu */
        }
    