:root {
            --primary-color: #10b981;
            /* Emerald Green */
            --primary-hover: #059669;
            /* Darker Emerald */
            --primary-light: #d1fae5;
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Glassmorphism Utilities (Adjusted for Light Theme) */
        .glass-panel {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 4rem;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .nav-brand img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: #ffffff !important;
            box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(248, 250, 252, 0.9);
            /* Overlay to ensure text readability against the background */
            z-index: 0;
        }

        .hero-text {
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .hero-image-wrapper {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            justify-content: flex-end;
            max-width: 45%;
        }

        .hero-image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border: 6px solid #fff;
            object-fit: cover;
        }

        .tagline {
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            font-size: 1.125rem;
            color: var(--text-muted);
        }

        /* Stats */
        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            padding: 2rem;
            border-radius: 20px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .stat-item p {
            font-size: 0.9rem;
            margin: 0;
            color: var(--text-muted);
        }

        .marquee-content {
            display: flex;
            gap: 2rem;
            align-items: center;
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 1rem));
            }
        }

        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        /* Section Global */
        section {
            padding: 6rem 4rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ffffff;
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }

        /* Services Section */
        .services-bg {
            background-color: var(--card-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            padding: 2.5rem;
            border-radius: 24px;
            background-color: var(--bg-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-hover);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            background-color: var(--card-bg);
            padding: 5rem 4rem 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-col h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .footer-col p {
            margin-bottom: 1.5rem;
            color: var(--text-muted);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .navbar {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 6rem 2rem;
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .hero-image-wrapper {
                max-width: 100%;
                justify-content: center;
            }

            .hero-text {
                max-width: 100%;
            }

            .stats {
                justify-content: center;
            }

            section {
                padding: 4rem 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-width: 150px;
            flex-direction: column;
            padding: 0.5rem 0;
            z-index: 1000;
            list-style: none;
            gap: 0;
        }

        .dropdown:hover .dropdown-menu {
            display: flex;
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            padding: 0.75rem 1.5rem;
            display: block;
            font-size: 0.9rem;
            margin: 0;
            font-weight: 500;
        }

        .dropdown-menu a:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }