 :root {
            --primary: #0d3b66;
            --secondary: #3da5d9;
            --accent: #06d6a0;
            --accent-light: #ffd166;
            --dark: #1a202c;
            --light: #f8fafc;
            --gray: #718096;
            --light-gray: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.95));
            padding: 18px 0;
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(13, 59, 102, 0.08);
            box-shadow: 0 12px 24px rgba(13, 59, 102, 0.08);
            backdrop-filter: blur(12px);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            flex-direction: row; /* leaf left, text right */
            align-items: center;
            gap: 12px;
        }

        .logo-left {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
        }

        .logo-right {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            line-height: 1.05;
        }

        .logo-text span { color: #06d6a0; }

        .logo-icon {
            font-size: 40px;
            color: #2a9d37; /* leaf color */
            display: block;
        }

        .logo-left img.logo-icon {
            height: 40px;
            width: auto;
            display: block;
        }

        .tagline {
            font-size: 0.95rem;
            color: #06d6a0;
            font-weight: 600;
            margin: 0;
            letter-spacing: 0.2px;
        }

        
        header nav a {
            color: var(--dark);
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        header nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        header nav a:hover {
            color: var(--accent);
        }

        header nav a:hover:after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(6, 214, 160, 0.4);
            text-decoration: none;
            margin-left: 30px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Page Sections */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(61, 165, 217, 0.14), transparent 38%),
                radial-gradient(circle at 85% 75%, rgba(6, 214, 160, 0.14), transparent 36%),
                url('logo.png') no-repeat right 5% center / 380px auto;
            opacity: 0.22;
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .hero h1 span {
            color: var(--accent);
            position: relative;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .hero-slider {
            position: relative;
            min-height: 260px;
            margin-bottom: 8px;
        }

        .hero-slide {
            display: none;
            animation: heroSlideFade 0.45s ease;
        }

        .hero-slide.active {
            display: block;
        }

        .hero-slide-subtitle {
            font-size: 1.35rem;
            margin-bottom: 15px;
            color: var(--gray);
        }

        .hero-slide-note {
            background: #f0f9ff;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin-bottom: 25px;
            border-radius: 8px;
            color: var(--dark);
        }

        .hero-slider-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 8px 0 20px;
        }

        .hero-slider-btn {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(13, 59, 102, 0.2);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(8px);
            color: #0d3b66;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 8px 18px rgba(13, 59, 102, 0.16);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .hero-slider-btn:hover {
            transform: translateY(-2px) scale(1.03);
            background: #ffffff;
            box-shadow: 0 12px 24px rgba(13, 59, 102, 0.22);
        }

        .hero-slider-dots {
            display: flex;
            gap: 8px;
        }

        .hero-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #c8d3df;
            border: none;
            cursor: pointer;
        }

        .hero-slider-dot.active {
            background: var(--accent);
        }

        @keyframes heroSlideFade {
            from { opacity: 0.3; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .primary-btn {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            color: white;
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(6, 214, 160, 0.4);
            border: none;
            cursor: pointer;
            font-size: 16px;
            display: inline-block;
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
        }

        .secondary-btn {
            background: transparent;
            color: var(--primary);
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            cursor: pointer;
            font-size: 16px;
            display: inline-block;
        }

        .secondary-btn:hover {
            background: var(--primary);
            color: white;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 35%;
            transform: translate(-100%, -30%);
            width: 40%;
            max-width: 300px;
            z-index: 1;
            opacity: 0.9;
        }

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    display: block;
    object-fit: contain;
}

.hero-image img {
    transform-origin: 50% 80%;
    animation: leafFloat 2.75s ease-in-out infinite, leafGlow 1.9s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(13, 59, 102, 0.18));
    will-change: transform, filter;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-2.5deg) scale(1.01);
    }
    50% {
        transform: translateY(-14px) rotate(1.8deg) scale(1.03);
    }
    75% {
        transform: translateY(-7px) rotate(-1.4deg) scale(1.01);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes leafGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 20px rgba(13, 59, 102, 0.16));
    }
    50% {
        filter: drop-shadow(0 14px 28px rgba(6, 214, 160, 0.32));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        animation: none;
        filter: drop-shadow(0 10px 20px rgba(13, 59, 102, 0.16));
    }
}

.hero-image img {
    width: 100%;
    height: auto;
            max-height: 250px;
            display: block;
            object-fit: contain;
        }

        .hero-section {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section .hero-content {
            max-width: 720px;
        }

        .hero-section h1,
        .hero-section h2 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .hero-section .hero-tagline {
            font-size: 1.15rem;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 680px;
            line-height: 1.8;
        }

        .hero-section .primary-btn,
        .hero-section .secondary-btn {
            margin-top: 10px;
        }

        .hero-section .hero-divider {
            width: 140px;
            height: 4px;
            margin: 30px 0 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
        }

        .about-grid,
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-grid .feature-card,
        .section-with-background .feature-card {
            background: white;
            padding: 35px 28px;
            border-radius: 18px;
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .about-grid .feature-card:hover,
        .section-with-background .feature-card:hover {
            transform: translateY(-8px);
        }

        .section-with-background {
            background: white;
            border-radius: 24px;
            padding: 60px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }

        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }

        .career-section {
            padding: 80px 0;
            background: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info {
            max-width: 520px;
        }

        .contact-details p {
            margin-bottom: 18px;
            color: var(--gray);
        }

        .contact-section .primary-btn-contact,
        .contact-section .submit-btn {
            width: auto;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .client-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
        }

        .client-slider-track {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 15px 0;
            /* hide native scrollbars for a cleaner marquee look */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE 10+ */
        }

        .client-slider-track::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .client-slider-item {
            flex: 0 0 calc(25% - 20px);
            min-width: 260px;
        }

        .client-value-card-slider {
            background: white;
            padding: 35px 25px;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            border: 2px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .client-value-card-slider:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 12px 32px rgba(6, 214, 160, 0.25);
            border-color: var(--accent);
        }

        .client-value-icon-slider {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
            transition: all 0.3s;
        }

        .client-value-card-slider:hover .client-value-icon-slider {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            transform: scale(1.1) rotate(5deg);
        }

        .client-value-card-slider h3 {
            font-size: 1.15rem;
            color: var(--dark);
            font-weight: 600;
            line-height: 1.4;
        }

        .slider-nav {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            justify-content: center;
        }

        .slider-button {
            width: 44px;
            height: 44px;
            border: 2px solid var(--accent);
            background: white;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            color: var(--accent);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .slider-button:hover:not(:disabled) {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }

        .slider-button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .section-header-with-line {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
            position: relative;
            padding-bottom: 30px;
        }

        .section-header-with-line h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
        }

        .section-header-with-line h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 2px;
        }

        .section-header-with-line p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.6;
            margin-top: 30px;
        }

        .why-choose-section {
            background: linear-gradient(135deg, rgba(13, 59, 102, 0.08) 0%, rgba(61, 165, 217, 0.08) 100%);
            padding: 50px 40px;
            border-radius: 18px;
            margin-bottom: 30px;
            border: 1px solid rgba(6, 214, 160, 0.2);
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--secondary));
        }

        .why-choose-section h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 30px;
            margin-top: 10px;
        }

        .why-choose-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .why-choose-list li {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .why-choose-list li:hover {
            transform: translateX(8px) translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.2);
            background: linear-gradient(135deg, rgba(6, 214, 160, 0.02), rgba(61, 165, 217, 0.02));
        }

        .why-choose-list li i {
            color: var(--accent);
            margin-right: 18px;
            font-size: 22px;
            flex-shrink: 0;
            margin-top: 3px;
            width: 30px;
            text-align: center;
        }

        .why-choose-list strong {
            color: var(--primary);
            display: block;
            margin-bottom: 5px;
            font-size: 1.05rem;
        }

        .why-choose-list span {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .client-slider-item {
                flex: 0 0 calc(33.333% - 17px);
                min-width: 240px;
            }
        }

        @media (max-width: 768px) {
            .client-slider-item {
                flex: 0 0 calc(50% - 12px);
                min-width: 200px;
            }
            
            .why-choose-list {
                grid-template-columns: 1fr;
            }
            
            .why-choose-section {
                padding: 30px 25px;
            }
            
            .section-header-with-line h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .client-slider-item {
                flex: 0 0 calc(100% - 25px);
                min-width: 100%;
            }
            
            .slider-nav {
                gap: 8px;
            }
            
            .slider-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        .logo img {
            height: 55px !important;
            width: auto;
            object-fit: contain;
        }

        .logo-container .tagline {
            margin-left: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 28px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            padding: 30px;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 40px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
        }

        .service-features li {
            margin-bottom: 10px;
            color: var(--gray);
            position: relative;
            padding-left: 25px;
        }

        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Mission Section */
        .mission {
            text-align: center;
            background: linear-gradient(to right, #0d3b66, #3da5d9);
            color: #fff;
            padding: 80px 0;
        }

        .mission h2 {
            color: #fff;
            margin-bottom: 20px;
        }

        .mission p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.8;
        }

        /* Clients Section */
        .clients {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }

        .client-logo {
            width: 150px;
            height: 80px;
            background: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 15px;
            transition: transform 0.3s;
        }

        .client-logo:hover {
            transform: translateY(-5px);
        }

        .client-logo i {
            font-size: 36px;
            color: #0d3b66;
        }

        /* Careers Intro */
        .careers-intro {
            padding: 80px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 28px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .value-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Job Listings */
        .job-listings {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }

        .filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: white;
            border: 1px solid var(--light-gray);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .job-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            padding: 30px;
            position: relative;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .job-card-icon {
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            background: rgba(95, 184, 142, 0.12);
            color: var(--accent);
            margin-bottom: 18px;
            font-size: 1.2rem;
        }

        .job-card ul {
            list-style: inside disc;
            margin: 18px 0 0;
            color: var(--gray);
            line-height: 1.7;
        }

        .job-card ul li {
            margin-bottom: 10px;
        }

        .job-cta {
            margin-top: 30px;
            padding: 24px;
            border-radius: 24px;
            background: rgba(13, 59, 102, 0.05);
            border: 1px solid rgba(13, 59, 102, 0.12);
            text-align: center;
        }

        .job-cta p {
            margin: 0;
            font-size: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .job-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .job-badge.full-time {
            background: rgba(6, 214, 160, 0.1);
            color: var(--accent);
        }

        .job-badge.part-time {
            background: rgba(255, 209, 102, 0.1);
            color: var(--accent-light);
        }

        .job-badge.remote {
            background: rgba(61, 165, 217, 0.1);
            color: var(--secondary);
        }

        .job-type {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            background: var(--light-gray);
        }

        .job-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .job-details {
            list-style: none;
            margin: 20px 0;
        }

        .job-details li {
            margin-bottom: 10px;
            color: var(--gray);
            display: flex;
            align-items: center;
        }

        .job-details i {
            margin-right: 10px;
            color: var(--accent);
        }

        .view-job-btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin-top: 15px;
        }

        .view-job-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 28px;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .benefit-card p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Application Section */
        .application {
            padding: 80px 0;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }

        .application-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .application-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .application-info p {
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .application-details {
            list-style: none;
        }

        .application-details li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            color: var(--gray);
        }

        .application-details i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 20px;
            width: 24px;
        }

        .application-form {
            background: var(--light);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* Admin Panel */
        .admin-panel {
            background: var(--light);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .admin-title {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .admin-title i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent);
            outline: none;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .file-upload {
            border: 2px dashed var(--light-gray);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .file-upload:hover {
            border-color: var(--accent);
        }
        
        .file-upload i {
            font-size: 48px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .file-upload p {
            color: var(--gray);
            margin-bottom: 10px;
        }
        
        .file-upload .file-input {
            display: none;
        }
        
        .requirements-list {
            margin-top: 40px;
        }
        
        .requirements-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .requirement-item {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .requirement-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .requirement-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .requirement-actions {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            padding: 8px 15px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .edit-btn {
            background: var(--secondary);
            color: white;
        }
        
        .delete-btn {
            background: #ff6b6b;
            color: white;
        }
        
        .action-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-form {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form label {
            display: flex;
            flex-direction: column;
            font-weight: 600;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 16px;
            margin-top: 5px;
        }

        .contact-form .primary-btn {
            align-self: flex-start;
            padding: 12px 25px;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            color: var(--gray);
        }

        .contact-details i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 20px;
            width: 24px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .submit-btn {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            color: white;
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(6, 214, 160, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
        }

        .footer-col p {
            color: #a0aec0;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #a0aec0;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal-content {
            background: white;
            margin: 50px auto;
            padding: 40px;
            border-radius: 16px;
            max-width: 800px;
            position: relative;
            animation: modalFadeIn 0.3s;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray);
        }

        .job-modal-header {
            margin-bottom: 30px;
        }

        .job-modal-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .job-detail {
            margin-bottom: 30px;
        }

        .job-detail h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .job-detail ul {
            list-style: none;
            margin-left: 20px;
        }

        .job-detail li {
            margin-bottom: 10px;
            color: var(--gray);
            position: relative;
            padding-left: 20px;
        }

        .job-detail li:before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.3s;
            z-index: 1000;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification.success {
            background: var(--accent);
        }
        
        .notification.error {
            background: #ff6b6b;
        }

        /* Responsive */
    /* ===== MOBILE NAVIGATION FIX ===== */
@media (max-width: 768px) {
    /* Hide desktop nav by default on mobile, show when active */
    header nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 40px;
        z-index: 999;
        overflow-y: auto;
    }
    
    header nav.active {
        display: flex;
    }
    
    /* Style the close button */
    header nav .close-menu {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--dark);
        z-index: 1001;
        display: block;
    }
    
    /* Reset and style mobile nav links */
    header nav a {
        margin: 0 !important;
        margin-left: 0 !important;
        padding: 15px 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--dark) !important;
        text-decoration: none;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
        display: block;
    }
    
    /* Remove the underline animation for mobile */
    header nav a:after {
        display: none;
    }
    
    /* Style the CTA button specifically */
    header nav a.cta-button {
        background: linear-gradient(90deg, var(--accent), var(--accent-light)) !important;
        color: white !important;
        padding: 15px 25px !important;
        border-radius: 30px;
        text-align: center;
        margin-top: 20px !important;
        border: none;
        box-shadow: 0 4px 14px rgba(6, 214, 160, 0.4);
        width: auto;
        display: inline-block;
    }
    
    header nav a.cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--dark);
        z-index: 1000;
        padding: 5px;
    }
}

/* Hide close button and mobile menu button on desktop */
@media (min-width: 769px) {
    .close-menu {
        display: none !important;
    }
    .mobile-menu-btn {
        display: none !important;
    }
    header nav {
        display: flex !important;
    }
}


/* Add this to your existing style.css file */

/* ===== BANNER SIZE REDUCTION ===== */
.hero {
    padding: 100px 0 80px; /* Reduced from 150px 0 100px */
    min-height: auto; /* Remove any fixed height */
}

.hero-image {
    width: 40%; /* Reduced from 50% */
    max-width: 400px; /* Add maximum width */
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-height: 300px; /* Limit maximum height */
}

/* ===== CLIENT LOGOS STYLING ===== */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    width: 150px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px;
    transition: transform 0.3s;
}

.client-logo:hover {
    transform: translateY(-5px);
}

/* Replace icon-based logos with actual logo images */
.client-logo i {
    display: none; /* Hide the icons */
}

/* Add actual logo images */
.client-logo:nth-child(1) {
    background: url('https://via.placeholder.com/120x60/0d3b66/ffffff?text=TechCorp') no-repeat center center;
    background-size: contain;
}

.client-logo:nth-child(2) {
    background: url('https://via.placeholder.com/120x60/3da5d9/ffffff?text=Dataeaze') no-repeat center center;
    background-size: contain;
}

.client-logo:nth-child(3) {
    background: url('https://via.placeholder.com/120x60/06d6a0/ffffff?text=Baramati+Agro') no-repeat center center;
    background-size: contain;
}

.client-logo:nth-child(4) {
    background: url('https://via.placeholder.com/120x60/ffd166/ffffff?text=Greenleaf+IT') no-repeat center center;
    background-size: contain;
}

.client-logo:nth-child(5) {
    background: url('https://via.placeholder.com/120x60/1a202c/ffffff?text=Data+World') no-repeat center center;
    background-size: contain;
}

.client-logo:nth-child(6) {
    background: url('https://via.placeholder.com/120x60/718096/ffffff?text=SkyTravel') no-repeat center center;
    background-size: contain;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-image {
        width: 60%;
        position: relative;
        margin: 30px auto 0;
        top: auto;
        transform: none;
    }
    
    .client-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-image {
        width: 80%;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
    }
    
    .client-logos {
        gap: 20px;
    }
}
        .contact-form-wrapper {
            font-family: 'Inter', sans-serif;
            max-width: 690px;
            margin: 0 auto;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
        }

        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 30px 55px -15px rgba(0, 0, 0, 0.2);
        }

        .contact-header {
            background: linear-gradient(135deg, #1e5a7a, #2c8fb0);
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            color: white;
        }

        .contact-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .contact-header h2 i {
            font-size: 1.8rem;
        }

        .contact-header p {
            font-size: 0.9rem;
            opacity: 0.95;
            margin: 0;
        }

        .contact-body {
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .contact-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: #2c4c6c;
            margin-bottom: 0.5rem;
        }

        .contact-label i {
            width: 1.25rem;
            color: #5a8eb0;
        }

        .contact-label strong {
            font-weight: 700;
            color: #1a3c4a;
        }

        .required-star {
            color: #e53e3e;
            margin-left: 0.25rem;
        }

        .contact-input,
        .contact-textarea {
            width: 100%;
            font-family: 'Inter', sans-serif;
            border: 1.5px solid #e2e8f0;
            border-radius: 1rem;
            padding: 0.85rem 1rem;
            font-size: 0.95rem;
            transition: all 0.2s;
            outline: none;
            background: #fff;
            color: #1a2c3e;
        }

        .contact-input:focus,
        .contact-textarea:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .contact-input::placeholder,
        .contact-textarea::placeholder {
            color: #a5bbd0;
            font-weight: 400;
        }

        .contact-textarea {
            resize: vertical;
            font-family: 'Inter', sans-serif;
        }

        /* Restore classic submit button style and alias primary button */
        .submit-btn,
        .primary-btn-contact {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            color: white;
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(6, 214, 160, 0.4);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .submit-btn:hover,
        .primary-btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
            background: linear-gradient(90deg, #06d6a0, #ffd166);
        }

        .submit-btn:active,
        .primary-btn-contact:active { transform: translateY(0); }

        .submit-btn i,
        .primary-btn-contact i { font-size: 1rem; }

        .privacy-note {
            font-size: 0.8rem;
            color: #6b85a0;
            margin-top: 1rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .privacy-note i {
            color: #10b981;
        }

        .contact-status {
            margin-top: 1rem;
            padding: 0.75rem;
            border-radius: 0.75rem;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            display: none;
        }

        .contact-status.success {
            background: #e6f7e6;
            color: #065f46;
            border-left: 3px solid #10b981;
            display: block;
        }

        .contact-status.error {
            background: #fee;
            color: #b91c1c;
            border-left: 3px solid #dc2626;
            display: block;
        }

        .contact-status.loading {
            background: #e6f3fc;
            color: #1e5a7a;
            border-left: 3px solid #3b82f6;
            display: block;
        }

        @media (max-width: 768px) {
            .contact-header {
                padding: 1.5rem;
            }
            .contact-header h2 {
                font-size: 1.4rem;
            }
            .contact-body {
                padding: 1.5rem;
            }
        }
            /* Quick fix: ensure contact form styles apply consistently
               This block overrides missing external file styles (updates.css)
               and normalizes classes used in contact.html/contact sections. */
            .contact-form, .contact-form .contact-body {
                background: #ffffff;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                padding: 24px;
            }
            .contact-form .contact-label { color: #1a3c4a; font-weight:700; }
            .contact-form .contact-input,
            .contact-form .contact-textarea {
                width:100%;
                border:1.5px solid #e2e8f0;
                border-radius:12px;
                padding:12px 14px;
                background:#fff;
                color:#1a2c3e;
                font-size:0.95rem;
            }
            .contact-form .contact-input:focus,
            .contact-form .contact-textarea:focus {
                border-color: #3b82f6;
                box-shadow: 0 0 0 3px rgba(59,130,246,0.08);
            }
        .contact-form .primary-btn-contact {
                background: linear-gradient(135deg,#1e5a7a,#0f3b55);
                color:#fff;
                padding:12px 18px;
                border-radius:28px;
                border:none;
                display:inline-flex;
                align-items:center;
                gap:0.6rem;
                cursor:pointer;
                font-weight:600;
                width:100%;
            }

        /* Unified hover state for cards across pages */
        .service-card:hover,
        .feature-card:hover,
        .value-card:hover,
        .job-card:hover,
        .benefit-card:hover,
        .client-value-card-slider:hover {
            background: linear-gradient(135deg, #e8f4ff 0%, #d8efe7 100%);
            border: 2px solid #3da5d9;
            box-shadow: 0 14px 30px rgba(61, 165, 217, 0.25);
        }

        .service-card:hover h3,
        .feature-card:hover h3,
        .value-card:hover h3,
        .job-card:hover h3,
        .benefit-card:hover h3,
        .client-value-card-slider:hover h3 {
            color: #0d3b66;
        }
    
