.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.orange-cta {
    background-color: #F97316;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orange-cta:hover {
    background-color: #EA580C;
    transform: translateY(-2px) scale(1.02);
}

.navy-cta {
    background-color: #1A2B6D;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navy-cta:hover {
    background-color: #001456;
    transform: translateY(-2px) scale(1.02);
}

.white-cta {
    background-color: white;
    color: #1A2B6D;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.white-cta:hover {
    background-color: #e8ecf8;
    box-shadow: 0 4px 16px rgba(26, 43, 109, 0.18);
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Career Image Slider */
.career-slider {
    position: relative;
}
.career-slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.career-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.career-slide-img.active {
    opacity: 1;
}
.career-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.career-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Hiring Partners Marquee */

.marquee-item {
    flex-shrink: 0;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    background: #f8f9ff;
    border: 1px solid #eef0f9;
    border-radius: 12px;
    margin: 0 10px;
}
.marquee-item img {
    height: 55px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.2s;
}
.marquee-item:hover img {
    opacity: 1;
}
@keyframes marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.marquee-track-left {
    width: max-content;
    animation: marquee-left 28s linear infinite;
    will-change: transform;
}
.marquee-track-right {
    width: max-content;
    animation: marquee-right 28s linear infinite;
    will-change: transform;
}

/* Section Padding - Desktop Reduction */
section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* First section on desktop needs extra top padding to clear the 6rem/96px fixed navbar */
section:first-of-type {
    padding-top: 8rem !important;
}

/* Specific reduction for Hiring Partners section on desktop */
@media (min-width: 769px) {
    #hiring-partners {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Mobile Specific Optimizations */
@media (max-width: 768px) {
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* First section on mobile needs extra top padding to clear the 6rem fixed navbar */
    section:first-of-type {
        padding-top: 8.5rem !important;
    }
    
    .mobile-sticky-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        background: white;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
    }

    .mobile-sticky-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.875rem;
        color: white;
        transition: opacity 0.2s;
    }

    .mobile-sticky-bar a:active {
        opacity: 0.8;
    }

    .mobile-sticky-bar .call-btn {
        background-color: #1A2B6D;
    }

    .mobile-sticky-bar .whatsapp-btn {
        background-color: #25D366;
    }

    /* Hide floating buttons on mobile if sticky bar is active */
    .floating-actions {
        display: none !important;
    }
}

/* Lenis Smooth Scroll styling */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}