  * {
            font-family: "Inter", sans-serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #10b981;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #059669;
        }

        /* Enhanced animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
            50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-animation {
            animation: float 3s ease-in-out infinite;
        }

        .pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .gradient-bg {
            background: linear-gradient(-45deg, #10b981, #059669, #047857, #065f46);
            background-size: 400% 400%;
            animation: gradient-shift 15s ease infinite;
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hover-lift {
            transition: all 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
        }

        .text-gradient {
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Header styles */
        .site-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(16, 185, 129, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
        }


        .header-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #10b981;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .header-nav-item {
            color: #374151;
            text-decoration: none;
            font: 1.2rem Inter, sans-serif;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .header-nav-item:hover {
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown-content.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

         .dropdown1 {
            position: relative;
        }

        .dropdown1-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown1-content.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown1-content a {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .dropdown1-content a:hover {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-language-button,
        .header-user-button {
            padding: 0.5rem 1rem;
            border: 1px solid #e5e7eb;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .header-language-button:hover,
        .header-user-button:hover {
            border-color: #10b981;
            color: #10b981;
        }

        .mobile-menu-button {
            display: none;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

/* Mobile dropdown styles */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-dropdown-button:hover {
    background-color: #ecfdf5;
    color: #10b981;
}

.mobile-chevron {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 1rem;
}

.mobile-dropdown-content.show {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

.mobile-dropdown-item:hover {
    background-color: #ecfdf5;
    color: #10b981;
}




        /* Footer styles */
        .site-footer {
            background: #111827;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #10b981;
        }

        .footer-description {
            color: #9ca3af;
            line-height: 1.6;
        }

        .footer-column-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #10b981;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #10b981;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            color: #9ca3af;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-icon:hover {
            background: #10b981;
            color: white;
            transform: translateY(-2px);
        }

        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* Chat styles */
        .chat-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
        }

        .chat-popup {
            position: fixed;
            bottom: 100px;
            right: 2rem;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            z-index: 1000;
        }

        .chat-popup.active {
            display: flex;
        }

        .chat-header {
            padding: 1rem;
            background: #10b981;
            color: white;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-body {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }

        .message {
            margin-bottom: 1rem;
        }

        .message.bot .message-content {
            background: #f3f4f6;
            padding: 0.75rem;
            border-radius: 12px;
            max-width: 80%;
        }

        .message.user .message-content {
            background: #10b981;
            color: white;
            padding: 0.75rem;
            border-radius: 12px;
            max-width: 80%;
            margin-left: auto;
        }

        .chat-footer {
            padding: 1rem;
            border-top: 1px solid #e5e7eb;
            display: flex;
            gap: 0.5rem;
        }

        .chat-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            outline: none;
        }

        .chat-send {
            padding: 0.75rem;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .header-nav {
                display: none;
            }

            .mobile-menu-button {
                display: block;
            }

             .header-logo-section {
        justify-content: space-between;
    }

            .chat-popup {
                width: calc(100vw - 2rem);
                right: 1rem;
                left: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

        }

        /* Custom animations for sections */
        .section-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card-hover {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .card-hover:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
        }

        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: #10b981;
        }

        .hero-bg {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2310b981" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23059669" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2310b981" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        #who-we-are {
            transform: none !important;
            will-change: auto;
        }

        #who-we-are .glass-effect {
            transition: none;
            transform: none !important;
        }

        #who-we-are .glass-effect:hover {
            transform: none !important;
        }