    /* Theme variables */
        :root {
            --primary: #00a573;
            --primary-dark: #1a322f;
            --bg-light: #f7fafc;
            --text-dark: #243b53;
            --text-light: #6b7c93;
            --max-width: 1200px;
        }

        /* Global reset and typography with smooth animations */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Segoe UI", Tahoma, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: white;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Layout container */
        .container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        /* Enhanced Header with animations */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            animation: slideDown 0.8s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        header .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            animation: pulse 2s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul li a {
            color: var(--text-dark);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        nav ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.3s ease;
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            opacity: 1;
            transform: scaleX(1);
        }

        /* Enhanced Hero section with parallax effect */
        .hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            color: white;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }

        .hero .content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            animation: fadeInUp 1.2s ease 0.2s both;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #e2e8f0;
            animation: fadeInUp 1.2s ease 0.4s both;
        }

        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(0, 165, 115, 0.3);
            transition: all 0.4s ease;
            animation: fadeInUp 1.2s ease 0.6s both;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            color: white;
            box-shadow: 0 12px 30px rgba(0, 165, 115, 0.4);
        }

        .btn-primary::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Floating particles animation */
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent);
            background-repeat: repeat;
            background-size: 120px 120px;
            animation: float 20s infinite linear;
            z-index: 0;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(-100px) translateX(-50px); }
        }

        /* Generic sections with scroll animations */
        .section {
            padding: 6rem 0;
            background: var(--bg-light);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section.invert {
            background: white;
        }

        .section .title {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
        }

        .section .title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section .subtitle {
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced Features grid with staggered animations */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .feature.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .feature::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 165, 115, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .feature:hover::before {
            animation: shine 0.8s ease;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            font-weight: 600;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem auto;
            box-shadow: 0 8px 20px rgba(0, 165, 115, 0.3);
            transition: all 0.4s ease;
        }

        .feature:hover .icon-circle {
            transform: rotate(360deg) scale(1.1);
        }

        .feature h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .feature p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* How it works timeline with enhanced animations */
        .timeline {
            position: relative;
            margin-top: 3rem;
            padding-left: 3rem;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 30px;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 4rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -12px;
            top: 5px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            border: 4px solid var(--primary);
            transition: all 0.4s ease;
        }

        .timeline-item:hover::before {
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(0, 165, 115, 0.5);
        }

        .timeline-item h4 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .timeline-item p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Team section with hover effects */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .member {
            text-align: center;
            padding: 2rem;
            border-radius: 16px;
            background: white;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .member.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            margin: 0 auto 1.5rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .member-avatar::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .member:hover .member-avatar::before {
            animation: shine 0.8s ease;
        }

        .member h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .member .role {
            display: block;
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .member p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Stats counter animation */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 4rem 0 2rem;
            text-align: center;
        }

        footer .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        footer .footer-nav a {
            color: white;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer .footer-nav a:hover {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        footer p {
            font-size: 0.95rem;
            margin-top: 2rem;
            color: #e6fffa;
        }

        /* Mobile navigation */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 4rem 0;
            }

            .section .title {
                font-size: 2rem;
            }

            .features-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            nav ul {
                position: absolute;
                top: 100%;
                right: 0;
                background: white;
                flex-direction: column;
                width: 250px;
                padding: 1rem;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-20px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            nav ul.open {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .nav-toggle {
                display: flex;
            }
        }

        /* Scroll progress bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--primary);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Loading animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 4px solid var(--bg-light);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Enhanced Contact Section Styles */
#contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 8rem 0;
}

#contact .container {
    max-width: 1400px; /* Made broader */
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 165, 115, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card a,
.contact-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Enhanced Form Section */
.contact-form-section {
    margin: 6rem 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-container {
    padding: 4rem;
    width: 100%;
    max-width: none; /* Made broader */
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-light);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: white;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Enhanced Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px; /* Made broader */
    margin: 0 auto;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 165, 115, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.response-message {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: none;
}

/* Enhanced Submit Button */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 165, 115, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 165, 115, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    color: white;
}

.cta-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e6fffa;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: white;
    color: var(--primary);
}

.btn-large:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 4rem 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

