:root {
            --primary: #2b6cb0;
            --primary-dark: #2c5282;
            --primary-light: #ebf4ff;
            --secondary: #38b2ac;
            --secondary-dark: #319795;
            --accent: #f6ad55;
            --accent-dark: #ed8936;
            --light: #f7fafc;
            --dark: #1a202c;
            --gray: #4a5568;
            --gray-light: #e2e8f0;
            --emergency: #e53e3e;
            --emergency-dark: #c53030;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 60px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: ellipse(100% 100% at 50% 0%);
            background-color: #2b6cb0;
            background-size: 200% 200%;
        }

        header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background-color: var(--light);
            transform: skewY(-3deg);
            z-index: 1;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-out both;
        }

        .logo-img {
            height: 80px;
            margin-bottom: 15px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            animation: bounceIn 1s ease-out both;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            animation: fadeIn 1.5s ease-out both;
        }

        .tagline {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 2s ease-out both;
        }

        h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            animation: fadeInUp 1s ease-out both;
        }

        .service-title {
            position: relative;
            display: inline-block;
            color: #1bf3e8;
        }

        .service-title span {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from {
                text-shadow: 0 0 5px rgba(246, 173, 85, 0.5);
            }
            to {
                text-shadow: 0 0 10px rgba(246, 173, 85, 0.8), 0 0 20px rgba(246, 173, 85, 0.6);
            }
        }
        
        /* Card Styles */
        .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin-bottom: 40px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--gray-light);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .highlight-card {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            transform: translateY(-50px);
            position: relative;
            overflow: hidden;
        }
        
        .highlight-card h2 {
            color: white;
        }
        
        .highlight-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }
        
        /* Procedure Steps */
        .procedure-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .step {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--accent);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background-color: var(--primary-light);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }
        
        .step:hover {
            transform: translateY(-10px);
        }
        
        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
        }
        
        .step-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(43, 108, 176, 0.1);
            border-radius: 50%;
        }
        
        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary);
            display: flex;
            flex-direction: column;
            background-color: var(--primary-light);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--accent);
        }
        
        .contact-name {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .contact-number {
            color: var(--gray);
            margin: 10px 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Button Styles */
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 8px;
            margin-top: 15px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: fit-content;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
        }
        
        /* Supporters */
        .supporters {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .supporter-badge {
            background: var(--primary-light);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--gray-light);
            transition: all 0.3s ease;
        }
        
        .supporter-badge:hover {
            transform: scale(1.05);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .supporter-badge i {
            color: var(--secondary);
        }
        
        /* Signature */
        .signature {
            margin-top: 40px;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .signature.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .signature-item {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .signature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .signature-name {
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .signature-title {
            font-size: 16px;
            color: var(--gray);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0;
            text-align: center;
            position: relative;
            margin-top: 40px;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .bootlabs-link {
            text-decoration: none;
            color: var(--secondary);
        }
        
        /* Emergency Contact */
        .emergency-contact {
            background: linear-gradient(135deg, var(--emergency), var(--emergency-dark));
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin-top: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .emergency-contact:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
        }
        
        .emergency-contact::before {
            content: '\f0f1';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            opacity: 0.1;
        }
        
        .emergency-contact h3 {
            font-size: 24px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .emergency-contact h3 i {
            animation: pulse 2s infinite;
        }
        
        /* List Styles */
        .feature-list {
            list-style-type: none;
        }
        
        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .feature-list li:hover {
            transform: translateX(5px);
        }
        
        .feature-list li i {
            color: var(--secondary);
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        /* Floating Elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        /* Animations */
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 40px 0 80px;
                clip-path: ellipse(150% 100% at 50% 0%);
            }
            
            .logo-img {
                height: 60px;
            }
            
            .logo-text {
                font-size: 22px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 26px;
            }
            
            .card, .step {
                padding: 25px;
            }
            
            .highlight-card {
                transform: translateY(-30px);
            }
            
            .procedure-steps {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .signature {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .signature-item {
                min-width: 100%;
            }
        }
        
        /* Scroll Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Health Theme Elements */
        .health-icon {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .section-divider {
            height: 80px;
            background: linear-gradient(to bottom, var(--primary-light), white);
            margin: -40px 0;
            position: relative;
            z-index: 1;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loader.fade-out {
            opacity: 0;
            pointer-events: none;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid var(--primary-light);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }