body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}



    /* Nav Menu */
          /* Header styles */
          .nav-header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-wrapper {
            display: flex;
            height: 3.5rem;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo styles */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

        /* Navigation menu styles */
        .nav-menu {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-menu {
                display: flex;
                align-items: center;
                gap: 2rem;
                margin: 0 auto;
            }
        }

        .nav-item {
            position: relative;
            list-style: none;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            color: #000;
            text-decoration: none;
            font-size: 0.875rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        /* Dropdown styles */
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 400px;
            padding: 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-item:hover .dropdown {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem;
            text-decoration: none;
            color: #000;
            border-radius: 0.375rem;
            transition: background-color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        /* Badge styles */
        .nav-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            background-color: #fbbf24;
            border-radius: 9999px;
            margin-left: 0.5rem;
        }

        /* Button styles */
        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .button-ghost {
            color: #000;
            background: transparent;
            border: none;
        }

        .button-ghost:hover {
            background-color: #f3f4f6;
        }

        .button-primary {
            color: white;
            background-color: #000;
            border: none;
        }

        .button-primary:hover {
            background-color: #1a1a1a;
        }

        /* Mobile menu styles */
        .mobile-menu-button {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-menu-button {
                display: none;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: white;
            padding: 2rem 1rem;
            transition: left 0.3s ease-in-out;
            z-index: 100;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.75rem 0;
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }


/* Hero Section */

.hire-section {
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    min-height: auto;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 211, 153, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.ccontainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #023047;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.subtitle {
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75;
}

.get-started {
    padding: 12px 28px;
    background-color: #34D399;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5rem;
    box-shadow: 0 4px 6px rgba(52, 211, 153, 0.1);
}

.get-started:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 211, 153, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    border-radius: 24px;
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-card.green {
    background-color: #34D399;
}

.team-card.teal {
    background-color: #134E4A;
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-name {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .hire-section {
        padding: 60px 20px;
        margin-right: 100px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .subtitle {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .get-started {
        margin-bottom: 4rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }



























































































        /* Footer */

        /* Scroll animation */
        @keyframes scroll-x {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .scroll-banner {
            background: #B5FC0C;
            color: white;
            padding: 0.9rem 0;
            overflow: hidden;
            width: 100%;
        }

        .scroll-content {
            display: flex;
            white-space: nowrap;
            animation: scroll-x 20s linear infinite;
            color: #000;
        }

        .scroll-item {
            margin: 0 1rem;
        }

        /* Footer styles */
        .footer-container {
            width: 100%;
            padding: 3rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo img {
            width: 250px;
            height: 50px;
        }

        .logo-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: #4b5563;
            transition: color 0.2s;
        }

        .social-link:hover {
            color: #111827;
        }

        .footer-column h3 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #111827;
        }

        .badge-new {
            background: #764af1;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
        }

        .bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .bottom-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .bottom-text h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .bottom-text p {
            color: #4b5563;
        }

        .copyright {
            color: #4b5563;
        }

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}


