@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --primary: #074a86;
    --secondary: #00d2ff;
    --accent: #f59e0b;
    --accent-light: #337bff;
    --accent-dark: #0046cc;
    --text-dark: #1a1a1a;
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f7f7f7;
    --bg-dark: #1a1a1a;
    --glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.logo-text .dept {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
}


.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
    width: 100%;
    padding-left: 2rem;
    position: relative;
}

.nav-row {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-end;

    align-items: center;
}

.nav-row.bottom {
    display: none;

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.nav-row.bottom.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}


@media (min-width: 1101px) {
    .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

}


.desktop-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(7, 74, 134, 0.1);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 0.5rem;
    border: 1px solid rgba(7, 74, 134, 0.1);
}

.desktop-toggle:hover {
    background: var(--primary);
    color: white;
}

.desktop-toggle.active i {
    transform: rotate(180deg);
}


@media (max-width: 1500px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: var(--transition);
        color: var(--primary);
        font-size: 30px;

        line-height: 1;
    }

    .desktop-toggle {
        display: none;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-row.bottom {
        margin-top: 0.75rem;
    }


    .nav-item {
        transition: opacity 0.2s ease;
    }


    .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-item:hover {

        z-index: 10;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
        min-width: auto;
        width: 100%;
        border: none;
        background: transparent;
    }


    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
        display: block;
    }


    .nav-item:hover .nav-link {
        background: rgba(7, 74, 134, 0.08);
        color: var(--primary);
    }

    .nav-link {
        justify-content: center;
        width: 100%;
        text-align: center;
        background: rgba(7, 74, 134, 0.03);
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    background: rgba(7, 74, 134, 0.05);
    color: var(--primary);
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-toggle {
    display: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(7, 74, 134, 0.1);
}


.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 4px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.nav-btn:hover {
    border-color: var(--text-main);
    background: var(--bg-light);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.progress-bar {
    flex-grow: 1;

    max-width: 200px;

    height: 2px;
    background: #e2e8f0;
    position: relative;
    border-radius: 1px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: black;
    width: 33%;
    
    transition: width 0.3s ease, left 0.3s ease;
}


@media (min-width: 1025px) {
    .slider-controls {
        display: none !important;
    }

    .programs-track {
        transform: none !important;

        justify-content: center;
        flex-wrap: wrap;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 2rem);
    }
}

h1,
h2,
h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;

}

.section-padding {
    padding: 60px 5%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 5%;
    }
}

.label-eyebrow {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f59e0b;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow-dash {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #f59e0b;
    border-radius: 2px;
    flex-shrink: 0;
    transform: translateY(-2px);
    
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7) 20%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
    .hero__overlay {
        background: rgba(0, 0, 0, 0.6);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 80px 6% 0;
    color: white;
}

.hero__content h1 {
    font-size: clamp(2rem, 5.2vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #6366f1, #a855f7);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 3rem;
    max-width: 580px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}

.btn--secondary {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    flex-shrink: 0 !important;
}

.feature-item i svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain !important;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.95rem;
    color: white;
}

.feature-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero__content {
        padding: 160px 5% 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__content h1 br {
        display: none;
    }

    .hero__content h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        line-height: 1.2;
    }

    .text-gradient {
        white-space: normal;
    }

    .accent-line {
        margin: 0 auto 2rem;
    }

    .cta-group {
        justify-content: center;
        gap: 1rem;
    }

    .hero-features {
        display: none;
    }
}


@media (prefers-reduced-motion) {
    .hero__video-wrapper video {
        display: none;
    }

    .hero__video-wrapper {
        background: url('./img/Media/hero-bg.jpg') center/cover no-repeat;
    }
}


.why-media {
    background: white;
    padding: 120px 5%;
    overflow: hidden;
}

.why-media__wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
}

@media (max-width: 1500px) {
    .why-media__wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.why-media__left {
    display: flex;
    flex-direction: column;
}

.why-media__text-content {
    margin-bottom: 2rem;
}

.why-media__text-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 800;
}

.accent-line--small {
    width: 80px;
    height: 4px;
    background: #f59e0b;
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.highlight-orange {
    color: #f59e0b;
}

.why-media__text-content p {
    margin-bottom: 1.8rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
}


.why-media__features-row-new {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 3.5rem;
}

.feature-card-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    text-align: left;
    flex: 1;
}

.feature-icon-circle {
    width: 64px;
    height: 64px;
    background: #fff8eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card-vertical:hover .feature-icon-circle {
    transform: translateY(-5px);
}

.feature-icon-circle i {
    color: #f59e0b;
    width: 28px;
    height: 28px;
}

.feature-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.feature-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.feature-divider-v {
    width: 1px;
    height: 80px;
    background: #eee;
    margin-top: 40px;
}

@media (max-width: 850px) {
    .why-media {
        padding-top: 20px;
    }

    .why-media__text-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .why-media__text-content h2 {
        font-size: 1.8rem;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .why-media__text-content p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 1rem;
    }

    .why-media__features-row-new {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
        margin-top: 1rem;
    }

    .feature-card-vertical {
        align-items: center;
        text-align: center;
    }

    .feature-divider-v {
        display: none;
    }
}



.why-media__right {
    position: relative;
    padding-top: 10px;
}

.image-grid-new {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    height: 750px;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.grid-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.grid-img--top-left,
.grid-img--mid-left,
.grid-img--bottom-left {
    grid-column: 1;
}


.grid-img--top-right-circle {
    grid-column: 2;
    grid-row: 1;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 85%;
    justify-self: center;
}

.grid-img--mid-right-slanted {
    grid-column: 2;
    grid-row: 2 / 4;
    
    
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 0 20px 20px 20px;
    object-position: 22% center;
    
}

@media (max-width: 768px) {
    .image-grid-new {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .grid-img {
        aspect-ratio: 16 / 9;
        clip-path: none !important;
        border-radius: 20px !important;
        width: 100% !important;
    }

    .grid-img--top-right-circle {
        aspect-ratio: 1;
        border-radius: 50% !important;
        width: 60% !important;
    }
}

@media (max-width: 1024px) {
    .geometric-accent {
        display: none;
    }
}


.programmes {
    display: flex;
    min-height: 520px;
}

@media (max-width: 768px) {
    .programmes {
        flex-direction: column;
    }
}

.programme-card {
    flex: 1;
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    color: white;
    text-decoration: none;
}

.programme-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.programme-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programme-card__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: var(--transition);
}

.programme-card:hover .programme-card__overlay {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.2) 100%);
}

.programme-card:hover .programme-card__bg {
    transform: scale(1.04);
}

.programme-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tag-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.programme-card h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.programme-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 1;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.learn-more {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
    width: fit-content;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 1rem;
}

.programme-card:hover .learn-more {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}


.facilities-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.facilities-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.facilities-header p {
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 1500px) {

    .facilities-header h2,
    .facilities-header p {
        white-space: normal;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .facilities-header .label-eyebrow {
        font-size: 0.95rem;
        white-space: nowrap;
        letter-spacing: 1px;
    }

    .facilities-header h2 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-top: 0.5rem;
    }
    .facilities-header p {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
    }    
}

.facility-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.facility-block:last-child {
    margin-bottom: 0;
}

.facility-block--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {

    .facility-block,
    .facility-block--reverse {
        flex-direction: column;
        gap: 2rem;
    }
}

.facility-image {
    flex: 0 0 55%;
}

.facility-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-text {
    flex: 0 0 45%;
}

.facility-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #f59e0b;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.facility-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.facility-points p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #444;
}

.facility-points i {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 3px;
}


.careers {
    background: var(--bg-dark);
    color: white;
}

.careers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .careers-header .label-eyebrow {
        font-size: 0.95rem;
        white-space: nowrap;
        letter-spacing: 1px;
    }

    .careers-header h2 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-top: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
    }

    .careers-header p {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
    }
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pill {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.pill:hover {
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-3px);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 1024px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}

.career-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}


.tools {
    background: #f3f3f3;
    overflow: hidden;
}

.marquee-container {
    margin-top: 3rem;
    position: relative;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    animation: scroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tool-tile {
    flex: 0 0 280px;
    margin-right: 30px;
    height: 240px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tool-tile span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.tool-tile img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.tool-tile:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tool-tile:hover img {
    filter: grayscale(0%) opacity(1);
}




.faq {
    background: #f2f7fe;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .faq-heading {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-heading h2 {
        font-size: 2.2rem;
    }

    .faq-heading p {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-illustration {
        display: none;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #fcfcfc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-q-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0056b3;
    stroke-width: 2px;
}

.faq-trigger span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    transition: var(--transition);
}

.faq-chevron {
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #0056b3;
}

.faq-item.active .faq-icon {
    background: #0056b3;
}

.faq-item.active .faq-icon svg {
    stroke: #fff;
}

.faq-item.active .faq-trigger span {
    color: #0056b3;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 2rem 2rem 5.8rem;
    
}

.faq-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .faq-trigger {
        padding: 1.25rem;
    }

    .faq-q-wrapper {
        gap: 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-trigger span {
        font-size: 1rem;
    }

    .faq-content-inner {
        padding: 0 1.25rem 1.5rem 4.25rem;
    }
}



.final-cta {
    position: relative;
    padding: 250px 5%;
    text-align: center;
    color: white;
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.final-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.secondary-link {
    display: block;
    margin-top: 1.5rem;
    color: white;
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.secondary-link:hover {
    opacity: 1;
}


.vision-mission-section {
    background-color: #f8fafc;
    padding-bottom: 5rem;
}

.vm-title {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .vm-title {
        font-size: 2rem;
        text-align: center;
        
       
    }
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.vm-card {
    background: #fff;
    border-radius: 16px;
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 8px;
}

.vm-icon-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0056b3, #0088ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon-inner svg {
    width: 32px;
    height: 32px;
    stroke: #fff !important;
}

.vm-card h3 {
    color: #0056b3;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.vm-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}

.vm-content hr.accent-orange {
    border: none;
    border-top: 2px solid #f59e0b;
    margin: 2rem auto;
    width: 85%;
    opacity: 0.6;
}

.vm-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 0 0 16px 16px;
}

.vm-accent-bar.blue {
    background: linear-gradient(90deg, #0056b3, #0088ff);
}

.vm-accent-bar.orange {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}


.peo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.peo-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.peo-header {
    background: #0056b3;
    color: #fff;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    position: relative;
}

.peo-header-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
}

.peo-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 2;
}

.peo-header-pattern {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.15) 55%, transparent 55%, transparent 65%, rgba(255, 255, 255, 0.15) 65%, rgba(255, 255, 255, 0.15) 75%, transparent 75%);
    background-size: 25px 25px;
    z-index: 1;
}

.peo-body {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.peo-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.peo-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.peo-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.peo-number.blue {
    background: #0056b3;
}

.peo-number.orange {
    background: #f59e0b;
}

.peo-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.peo-text strong {
    color: #0056b3;
    font-weight: 700;
}

.peo-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #0056b3, #0088ff);
}


@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .peo-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .peo-body {
        padding: 2.5rem 1.5rem;
    }

    .peo-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}