:root {
    --primary-color: #001055;
    --secondary-color: #ff7900;
    --text-white: #ffffff;
    --navbar-height: clamp(80px, 10vw, 120px);
    --transition-speed: 0.8s;
    --navy-blue: #001055;
    --navy-blue-dark: #000a33;
    --orange: #ff7900;
    --orange-dark: #e66d00;
    --dark-gray: #2d3436;
    --text-muted: #636e72;
    --section-padding: 100px 0;
    --transition: all 0.3s ease-in-out;
    --card-radius: 20px;
    --navy: #002147;
    --navy-70: rgba(0, 33, 71, 0.7);
    --orange-prog: #f05a28;
    --orange-prog-light: rgba(240, 90, 40, 0.12);
    --orange-prog-glow: rgba(240, 90, 40, 0.3);
    --purple: #5b21b6;
    --purple-light: rgba(91, 33, 182, 0.12);
    --text-prog: #1a1a2e;
    --text-muted-prog: #6b7280;
    --text-light-prog: #9ca3af;
    --surface-prog: #ffffff;
    --surface-2-prog: #f8f9fc;
    --border-prog: rgba(0, 0, 0, 0.07);
    --border-strong-prog: rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --ease-out-prog: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring-prog: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm-prog: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md-prog: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg-prog: 0 20px 48px rgba(0, 0, 0, 0.12);
    --shadow-card-prog: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-card-hover-prog: 0 16px 48px rgba(0, 0, 0, 0.14);
    --radius-sm-prog: 10px;
    --radius-md-prog: 16px;
    --radius-lg-prog: 24px;
    --bg-color-prog: #f6f7fb;
}

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

html {
    overflow-x: hidden;
    background-color: #000b30;
}

body,
body * {
    font-family: "Outfit", sans-serif;
}

body {
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.navbar {
    height: var(--navbar-height);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: #fff0;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: #fff0;
    backdrop-filter: none;
    box-shadow: none;
}

.logo-container {
    height: clamp(90px, 11vw, 170px);
    display: flex;
    align-items: center;
    z-index: 1002;
    animation: navItemFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-container img {
    height: 75%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgb(0 0 0 / 0.45));
}

.logo-container:hover img {
    transform: scale(1.05);
}

.nav-actions {
    position: fixed;
    top: 40px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    background: rgb(0 0 0 / 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 12px 8px 24px;
    border-radius: 100px;
    border: 1px solid rgb(255 255 255 / 0.15);
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.3);
    transition: all 0.3s ease;
    animation: navItemFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) both 0.3s;
}

.nav-actions:hover {
    background: rgb(0 0 0 / 0.5);
    border-color: rgb(255 255 255 / 0.3);
    transform: translateY(-2px);
}

.nav-search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-search-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.nav-menu-btn {
    background: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-btn:hover {
    background: rgb(255 255 255 / 0.2);
    border-color: #fff;
}

.nav-menu-btn:hover {
    background: rgb(255 255 255 / 0.2);
    border-color: #fff;
}

#menubar--open--button.nav-menu-btn {
    background: rgb(255 255 255 / 0.1) !important;
    background-color: rgb(255 255 255 / 0.1) !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    border: 1px solid rgb(255 255 255 / 0.1) !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    z-index: auto !important;
    box-shadow: none !important;
    font-size: inherit !important;
}

#menubar--open--button.nav-menu-btn>* {
    color: white !important;
    font-size: inherit !important;
    padding: 0 !important;
}

#menubar--open--button.nav-menu-btn:hover {
    background: rgb(255 255 255 / 0.2) !important;
    border-color: white !important;
}

@media (max-width: 768px) {
    #menubar--open--button.nav-menu-btn {
        padding: 10px !important;
        width: 44px !important;
        height: 44px !important;
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        top: 20px;
        right: 4%;
        gap: 12px;
        padding: 6px 6px 6px 18px;
    }

    .nav-menu-btn {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .menu-text {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-btn.active .menu-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-menu-btn.active .menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, #001a4d 0%, #000a22 100%);
    backdrop-filter: blur(20px);
    z-index: -1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.menu-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 10%;
    overflow-y: auto;
}

.menu-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.menu-group h3 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.7;
}

.menu-group ul {
    list-style: none;
    padding: 0;
}

.menu-group li {
    margin-bottom: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-overlay.active .menu-group li {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.active .menu-group:nth-child(1) li {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-group:nth-child(2) li {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-group:nth-child(3) li {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-group:nth-child(4) li {
    transition-delay: 0.4s;
}

.menu-group a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
    display: inline-block;
}

.menu-group a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgb(255 255 255 / 0.1);
}

.menu-social {
    display: flex;
    gap: 24px;
}

.menu-social a {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-5px);
}

.menu-quick-ctas {
    display: flex;
    gap: 20px;
}

.menu-cta-btn {
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-cta-btn:not(.secondary) {
    background: var(--secondary-color);
    color: #fff;
}

.menu-cta-btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.menu-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.3);
}

@media (max-width: 768px) {
    .menu-nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-group a {
        font-size: 1.4rem;
    }

    .menu-footer {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    padding-top: var(--navbar-height);
    overflow: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    aspect-ratio: 1920 / 800;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform var(--transition-speed) cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            var(--primary-color) 0%,
            rgb(0 16 85 / 0.7) 40%,
            rgb(0 16 85 / 0.4) 70%,
            transparent 100%);
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.content {
    color: var(--text-white);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.5s;
}

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

.content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.3);
}

.content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.btn-primary:hover {
    background: #e66d00;
    transform: translateY(-3px);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: rgb(255 255 255 / 0.15);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 20px;
}

.nav-arrow:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
}

.prev-arrow {
    left: 40px;
}

.next-arrow {
    right: 40px;
}

@media (max-width: 768px) {
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }
}

@keyframes bscOrbDrift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(70px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 45px) scale(0.92);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes bscOrbDrift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-90px, 70px) scale(1.12);
    }

    70% {
        transform: translate(60px, -40px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes bscOrbGlow {

    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.85;
    }
}

@keyframes bscWaveDrift {
    0% {
        transform: translateX(0) scaleY(1);
    }

    50% {
        transform: translateX(-4%) scaleY(1.04);
    }

    100% {
        transform: translateX(0) scaleY(1);
    }
}

@keyframes bscKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.06) translate(-1%, -1%);
    }
}

@keyframes bscFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bscDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(255 121 0 / 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px #fff0;
    }
}

@keyframes bscShapeFloat1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -40px) rotate(45deg) scale(1.08);
    }

    50% {
        transform: translate(-20px, -70px) rotate(90deg) scale(0.95);
    }

    75% {
        transform: translate(-50px, -30px) rotate(135deg) scale(1.04);
    }

    100% {
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
}

@keyframes bscShapeFloat2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-40px, 50px) rotate(-60deg);
    }

    66% {
        transform: translate(60px, 20px) rotate(-120deg);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg);
    }
}

@keyframes bscShapeFloat3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(50px, 60px) rotate(90deg) scale(1.15);
    }

    100% {
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
}

@keyframes bscShapeFloat4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    30% {
        transform: translate(-30px, -50px) rotate(40deg);
    }

    60% {
        transform: translate(40px, -20px) rotate(80deg);
    }

    100% {
        transform: translate(0, 0) rotate(120deg);
    }
}

@keyframes bscParticleDrift {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.7;
    }
}

.banner-showcase {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 140px 0 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
            rgb(0 16 85 / 0.04) 0%,
            rgb(173 204 234 / 0.28) 25%,
            rgb(210 228 245 / 0.45) 50%,
            rgb(173 204 234 / 0.28) 75%,
            rgb(0 16 85 / 0.04) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-showcase.bsc-visible {
    opacity: 1;
    transform: translateY(0);
}

.bsc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bsc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.bsc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(55px);
}

.bsc-orb-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle,
            rgb(0 80 200 / 0.42) 0%,
            rgb(0 50 150 / 0.18) 55%,
            transparent 80%);
    top: -80px;
    left: -60px;
    animation:
        bscOrbDrift1 20s ease-in-out infinite,
        bscOrbGlow 8s ease-in-out infinite;
}

.bsc-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgb(0 80 200 / 0.35) 0%,
            rgb(0 40 130 / 0.15) 55%,
            transparent 80%);
    bottom: -60px;
    right: -40px;
    animation:
        bscOrbDrift2 24s ease-in-out infinite,
        bscOrbGlow 11s ease-in-out infinite 2s;
}

.bsc-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgb(255 121 0 / 0.32) 0%,
            rgb(255 90 0 / 0.14) 55%,
            transparent 80%);
    top: 25%;
    right: 14%;
    filter: blur(45px);
    animation: bscOrbGlow 7s ease-in-out infinite 1.5s;
}

.bsc-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.bsc-visible .bsc-shape {
    opacity: 1;
}

.bsc-shape-1 {
    width: 0;
    height: 0;
    border-left: 28px solid #fff0;
    border-right: 28px solid #fff0;
    border-bottom: 48px solid rgb(0 100 220 / 0.28);
    top: 12%;
    left: 6%;
    animation: bscShapeFloat1 18s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgb(0 80 200 / 0.3));
}

.bsc-shape-2 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 5px solid rgb(255 121 0 / 0.45);
    top: 8%;
    right: 9%;
    animation: bscShapeFloat2 22s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgb(255 121 0 / 0.4));
}

.bsc-shape-3 {
    width: 36px;
    height: 36px;
    background: rgb(0 80 200 / 0.25);
    border: 2px solid rgb(0 100 255 / 0.4);
    bottom: 16%;
    left: 8%;
    transform: rotate(45deg);
    animation: bscShapeFloat3 16s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgb(0 80 200 / 0.35));
}

.bsc-shape-4 {
    width: 0;
    height: 0;
    border-left: 18px solid #fff0;
    border-right: 18px solid #fff0;
    border-bottom: 32px solid rgb(255 121 0 / 0.35);
    bottom: 12%;
    right: 7%;
    animation: bscShapeFloat4 20s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgb(255 90 0 / 0.35));
}

.bsc-shape-5 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgb(0 120 255 / 0.55);
    top: 50%;
    left: 3%;
    animation: bscParticleDrift 9s ease-in-out infinite;
    box-shadow: 0 0 16px 4px rgb(0 120 255 / 0.45);
}

.bsc-shape-6 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(255 121 0 / 0.65);
    top: 38%;
    right: 4%;
    animation: bscParticleDrift 11s ease-in-out infinite 2s;
    box-shadow: 0 0 14px 4px rgb(255 121 0 / 0.5);
}

.bsc-shape-7 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgb(0 80 200 / 0.22);
    bottom: 5%;
    left: 45%;
    animation: bscShapeFloat2 28s ease-in-out infinite reverse;
    filter: drop-shadow(0 0 8px rgb(0 80 200 / 0.3));
}

.bsc-wave {
    position: absolute;
    left: -5%;
    right: -5%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
}

.bsc-wave-1 {
    top: -20%;
    background: radial-gradient(ellipse at 50% 0%,
            rgb(0 60 160 / 0.12) 0%,
            transparent 70%);
    animation: bscWaveDrift 18s ease-in-out infinite;
}

.bsc-wave-2 {
    bottom: -20%;
    background: radial-gradient(ellipse at 50% 100%,
            rgb(0 60 160 / 0.1) 0%,
            transparent 70%);
    animation: bscWaveDrift 22s ease-in-out infinite reverse;
}

.bsc-frame {
    position: relative;
    z-index: 1;
    flex: 0 0 88%;
    max-width: 1200px;
    transform: scale(0.97);
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bsc-visible .bsc-frame {
    transform: scale(1);
}

.bsc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgb(255 255 255 / 0.82);
    backdrop-filter: blur(14px) saturate(1.5);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    border: 1px solid rgb(0 16 85 / 0.1);
    border-radius: 50%;
    box-shadow:
        0 6px 20px rgb(0 16 85 / 0.1),
        inset 0 1px 0 rgb(255 255 255 / 0.9);
    color: #001055;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition:
        opacity 0.3s ease,
        background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease,
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bsc-frame:hover .bsc-arrow {
    opacity: 1;
    pointer-events: auto;
}

.bsc-arrow:hover {
    background: #ff7900;
    border-color: #ff7900;
    color: #fff;
    transform: translateY(-50%) scale(1.12);
    box-shadow:
        0 10px 28px rgb(255 121 0 / 0.35),
        0 0 0 3px rgb(255 121 0 / 0.12);
}

.bsc-arrow:active {
    transform: translateY(-50%) scale(0.93);
    box-shadow: 0 3px 10px rgb(255 121 0 / 0.2);
}

.bsc-arrow-prev {
    left: 20px;
}

.bsc-arrow-next {
    right: 20px;
}

@media (max-width: 540px) {
    .bsc-arrow {
        display: none;
    }
}

.bsc-track {
    position: relative;
    width: 100%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgb(0 16 85 / 0.14),
        0 2px 8px rgb(0 16 85 / 0.08);
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bsc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.bsc-slide.active {
    opacity: 1;
}

.bsc-slide.active img {
    animation: bscKenBurns 16s ease-in-out infinite alternate;
}

.bsc-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transform-origin: center center;
    transition: transform 1.2s ease;
    background: #f0f4fa;
}

.bsc-slide:not(.active) img {
    animation: none;
    transform: scale(1) translate(0, 0);
}

.bsc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.bsc-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background: rgb(0 16 85 / 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition:
        background 0.35s ease,
        width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.bsc-dot:hover {
    background: rgb(0 16 85 / 0.45);
}

.bsc-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ff7900;
    border-radius: 5px;
}

.bsc-dot.active {
    background: rgb(0 16 85 / 0.15);
    width: 50px;
}

.bsc-dot.active::before {
    animation: bscProgress 5s linear forwards;
}

.banner-showcase.is-paused .bsc-dot.active::before {
    animation-play-state: paused;
}

@keyframes bscProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .banner-showcase {
        padding: 58px 0 52px;
    }

    .bsc-frame {
        width: 92%;
    }
}

@media (max-width: 768px) {
    .banner-showcase {
        padding: 44px 0 40px;
    }

    .bsc-frame {
        width: 94%;
    }

    .bsc-track {
        border-radius: 14px;
    }

    .bsc-dots {
        margin-top: 16px;
        gap: 8px;
    }

    .bsc-dot {
        width: 7px;
        height: 7px;
    }

    .bsc-dot.active {
        width: 20px;
    }

    .bsc-orb-1 {
        width: 280px;
        height: 280px;
    }

    .bsc-orb-2 {
        width: 240px;
        height: 240px;
    }

    .bsc-shape-7 {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-showcase {
        padding: 36px 0 32px;
    }

    .bsc-frame {
        width: 96%;
    }

    .bsc-track {
        border-radius: 10px;
    }

    .bsc-shape-1,
    .bsc-shape-4 {
        display: none;
    }
}

.counter-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end;
}

.counter-container {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--navy-blue-dark) 100%);
    width: 100%;
    max-width: 1000px;
    padding: 30px 40px;
    border-radius: 80px 0 80px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 15px 45px rgb(0 0 0 / 0.6);
    border-bottom: 5px solid var(--secondary-color);
}

.counter-item {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.counter-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.counter-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, -40px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 50px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(-70px, 60px) scale(1.05);
    }

    70% {
        transform: translate(40px, -50px) scale(1.12);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 70px) scale(0.9);
    }
}

@keyframes thumbPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(255 121 0 / 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px #fff0;
    }
}

@keyframes almFadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alumni-section {
    position: relative;
    width: 100%;
    min-height: auto;
    max-height: none;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.alm-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.alm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: almBreathing 8s ease-in-out infinite alternate;
}

.alm-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff7900, transparent);
    top: -10%;
    right: -5%;
}

.alm-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #001055, transparent);
    bottom: -15%;
    left: -10%;
}

.alm-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #636e72, transparent);
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

.alm-orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff7900, transparent);
    bottom: 10%;
    right: 5%;
    animation-delay: -4s;
    opacity: 0.1;
}

@keyframes almBreathing {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.15) translate(20px, -15px);
        opacity: 0.18;
    }
}

.alm-inner {
    position: relative;
    z-index: 2;
    width: 93%;
    max-width: 1350px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.alm-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.alm-hero-text {
    text-align: left;
    flex: 1;
    margin-left: 0;
}

.alm-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgb(0 16 85 / 0.05);
    border: 1px solid rgb(0 16 85 / 0.1);
    border-radius: 100px;
    color: #001055;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.5rem 0;
}

.alm-heading {
    font-size: clamp(2.5rem, 3.8vw, 3.3rem);
    line-height: 1.04;
    color: #001055;
    font-weight: 800;
}

.alm-h-line {
    display: block;
}

.alm-static-testimonial {
    width: 100%;
    max-width: 1200px;
    margin: 4px auto;
    position: relative;
    padding: 0 60px;
}

.alm-testimonial-track {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alm-testimonial-img {
    width: 100%;
    height: auto;
    transition: opacity 0.6s ease-in-out;
}

.alm-testimonial-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.alm-testimonial-img:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.alm-test-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgb(0 16 85 / 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow:
        0 8px 24px rgb(0 16 85 / 0.1),
        0 2px 6px rgb(0 0 0 / 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--primary-color, #001055);
    font-size: 18px;
}

.alm-test-nav:hover {
    background: var(--primary-color, #001055);
    color: #fff;
    border-color: #fff0;
    box-shadow: 0 12px 32px rgb(0 16 85 / 0.25);
    transform: translateY(-50%) scale(1.1);
}

.alm-test-nav.prev-btn {
    left: -30px;
}

.alm-test-nav.next-btn {
    right: -30px;
}

.alm-progress-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.alm-dots {
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alm-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background: rgb(0 16 85 / 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition:
        background 0.35s ease,
        width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.alm-dot:hover {
    background: rgb(0 16 85 / 0.45);
}

.alm-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ff7900;
    border-radius: 5px;
}

.alm-dot.active {
    background: rgb(0 16 85 / 0.15);
    width: 50px;
}

.alm-dot.active::before {
    animation: almProgress 5s linear forwards;
}

@keyframes almProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.alm-selector-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    align-self: flex-end;
    transform: translateY(10px);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.alm-thumbs-wrapper {
    width: 244px;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.alm-thumbs-wrapper::-webkit-scrollbar {
    display: none;
}

.alm-thumb-track {
    display: inline-flex;
    gap: 16px;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    will-change: transform;
}

.alm-thumb-item {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #fff0;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.5;
    filter: grayscale(40%);
}

.alm-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.alm-thumb-item.active {
    transform: scale(1.4);
    opacity: 1;
    filter: none;
    border-color: #ff7900;
}

.alm-thumb-item:hover {
    opacity: 0.8;
}

.alm-thumb-item.active:hover {
    opacity: 1;
}

.alm-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: center;
    min-height: 0;
    position: relative;
    padding: 0 40px;
}

.alm-img-track {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 56vh;
    aspect-ratio: 9 / 11;
    border-radius: 30px 8px 30px 8px;
    overflow: hidden;
    justify-self: end;
    z-index: 1;
    animation: almShadowBreathe 5s ease-in-out infinite alternate;
}

@keyframes almShadowBreathe {
    0% {
        box-shadow:
            0 20px 50px rgb(0 0 0 / 0.1),
            0 0 0 0 #fff0;
    }

    100% {
        box-shadow:
            0 35px 70px rgb(0 0 0 / 0.15),
            0 0 30px rgb(255 121 0 / 0.08);
    }
}

.alm-img-wrap {
    position: absolute;
    inset: 0;
    animation: almFloat 6s ease-in-out infinite alternate;
}

@keyframes almFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-8px) scale(1.015);
    }
}

.alm-img-track::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgb(255 255 255 / 0.12) 0%,
            transparent 50%);
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
}

.alm-img-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.alm-img-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.alm-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
}

.alm-img-item.active img {
    animation: almKenBurns 12s ease-in-out infinite alternate;
}

@keyframes almKenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.06) translate(-1%, -1%);
    }
}

.alm-card-wrap {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin-left: -80px;
    z-index: 3;
    justify-self: start;
}

.alm-card {
    border-radius: 40px 6px 40px 6px;
    background: linear-gradient(135deg,
            rgb(255 255 255 / 0.65) 0%,
            rgb(255 255 255 / 0.35) 100%);
    backdrop-filter: blur(30px) saturate(1.6);
    -webkit-backdrop-filter: blur(30px) saturate(1.6);
    border: 1px solid rgb(255 255 255 / 0.55);
    outline: none;
    box-shadow:
        0 4px 0 rgb(255 121 0 / 0.6),
        0 20px 50px rgb(0 0 0 / 0.06),
        inset 0 1px 0 rgb(255 255 255 / 0.8);
    padding: 26px 36px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.alm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 0% 0%,
            rgb(255 121 0 / 0.1),
            transparent 70%);
    pointer-events: none;
}

.alm-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 4px 0 rgb(255 121 0 / 0.7),
        0 28px 60px rgb(0 0 0 / 0.1),
        inset 0 1px 0 rgb(255 255 255 / 0.8);
}

@keyframes almCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes almTextRise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alm-card-enter {
    animation: almCardSlideUp 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.alm-quote-enter {
    animation: almTextRise 0.5s 0.1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.alm-name-enter {
    animation: almTextRise 0.5s 0.22s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.alm-role-enter {
    animation: almTextRise 0.5s 0.32s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.alm-meta-enter {
    animation: almTextRise 0.5s 0.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.alm-quote-icon {
    font-size: 1.8rem;
    color: #ff7900;
    opacity: 0.75;
}

.alm-quote {
    font-size: clamp(1.08rem, 1.4vw, 1.28rem);
    line-height: 1.58;
    color: #2d3436;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.alm-name {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ff7900;
}

.alm-role {
    font-size: 0.96rem;
    color: #001055;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alm-meta {
    font-size: 0.9rem;
    color: rgb(0 16 85 / 0.6);
    font-weight: 500;
}

.alm-arrow {
    position: relative;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #001055;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.08);
    z-index: 20;
    padding: 0;
}

.alm-arrow svg {
    display: block;
    margin: 0;
}

.alm-arrow:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
}

.alm-arrow:active {
    transform: scale(0.96);
}

@media (max-width: 1100px) {
    .alm-header-row {
        gap: 16px;
    }

    .alm-selector-container {
        max-width: 340px;
    }

    .alm-stage {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 0 30px;
    }

    .alm-img-track {
        max-width: 380px;
        aspect-ratio: 4 / 5;
        justify-self: center;
    }

    .alm-card-wrap {
        max-width: 100%;
        margin-left: 0;
        justify-self: auto;
    }

    .alm-card {
        padding: 28px 32px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 4%;
    }

    .hero-slider {
        padding-top: 70px;
    }

    .slider-container {
        aspect-ratio: 1 / 1.1;
    }

    .overlay {
        width: 100%;
        background: linear-gradient(to bottom,
                rgb(0 16 85 / 0.9) 0%,
                rgb(0 16 85 / 0.6) 50%,
                transparent 100%);
        align-items: flex-start;
        padding-top: 60px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .content {
        max-width: 100%;
        text-align: center;
        z-index: 5;
    }

    .content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .nav-arrow img {
        height: 35px;
    }

    .counter-section {
        margin-top: -60px;
        padding: 0 4%;
        justify-content: center;
    }

    .counter-container {
        padding: 20px 15px;
        border-radius: 40px 0 40px 0;
        gap: 15px;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-icon {
        font-size: 1.5rem;
    }

    .counter-number {
        font-size: 1.6rem;
    }

    .counter-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .alumni-section {
        min-height: auto;
        padding: 35px 0;
    }

    .alm-inner {
        padding: 0 5%;
        gap: 10px;
    }

    .alm-header-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .alm-hero-text {
        text-align: center;
        max-width: 100%;
    }

    .alm-pill {
        margin: 0 auto 0.5rem;
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    .alm-heading {
        font-size: clamp(1.7rem, 6.5vw, 2rem);
    }

    .alm-selector-container {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        order: 1;
        margin-bottom: 0;
        z-index: 50;
        position: relative;
    }

    .alm-thumbs-wrapper {
        width: 240px;
        flex-shrink: 0;
    }

    .alm-thumb-track {
        gap: 10px;
        padding: 6px 0;
    }

    .alm-thumb-item {
        flex: 0 0 46px;
        height: 46px;
    }

    .alm-stage {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .alm-img-track {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        order: 2;
        border-radius: 15px;
        margin-top: 0;
    }

    .alm-card-wrap {
        max-width: 100%;
        order: 3;
    }

    .alm-card {
        padding: 18px 16px;
        gap: 10px;
        border-radius: 20px 5px 20px 5px;
    }

    .alm-quote {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .alm-name {
        font-size: 1.3rem;
    }

    .alm-role {
        font-size: 0.78rem;
    }

    .alm-arrow {
        position: relative;
        width: 42px;
        height: 42px;
        background: #fff;
        box-shadow: 0 3px 12px rgb(0 0 0 / 0.08);
        top: 0;
        transform: none;
        visibility: visible;
        display: flex;
        border: none;
        color: #001055;
        padding: 0;
    }

    .alm-arrow svg {
        display: block;
    }

    .alm-arrow-prev,
    .alm-arrow-next {
        left: auto;
        right: auto;
    }
}

.gallery-section {
    padding: 0 100px 8%;
    background-color: #f8f9fa;
}

.gallery-title {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #1a1a1a;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.gallery-title::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1.5px;
    background-color: #333;
    margin-top: 0.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 320px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.03);
}

.gallery-item:nth-child(6n + 1) {
    grid-column: span 2;
}

.gallery-item:nth-child(6n + 2) {
    grid-column: span 4;
}

.gallery-item:nth-child(6n + 3) {
    grid-column: span 4;
}

.gallery-item:nth-child(6n + 4) {
    grid-column: span 4;
}

.gallery-item:nth-child(6n + 5) {
    grid-column: span 4;
}

.gallery-item:nth-child(6n + 6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.5) 0%, transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.4s ease;
}

.gallery-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgb(0 0 0 / 0.7) 0%, transparent 60%);
}

.gallery-item.hidden {
    display: none;
}

.gallery-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-gallery {
    padding: 12px 40px;
    background: #fff0;
    color: #333;
    border: 1px solid #333;
    border-radius: 2px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: #111;
    color: #fff;
}

.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(10 10 20 / 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    padding: 20px;
    animation: lbxFadeIn 0.3s ease;
}

@keyframes lbxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    display: flex;
    width: 90vw;
    max-width: 1100px;
    height: 85vh;
    max-height: 680px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgb(0 0 0 / 0.5);
    animation: lboxZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes lboxZoom {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.3);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgb(255 255 255 / 0.3);
    transform: scale(1.1);
}

.lightbox-image-panel {
    flex: 0 0 58%;
    position: relative;
    overflow: hidden;
}

.lightbox-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.lightbox-category-badge {
    background: rgb(255 255 255 / 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / 0.3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.lightbox-info-panel {
    flex: 1;
    padding: 36px 32px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
}

.lightbox-info-panel::-webkit-scrollbar {
    width: 4px;
}

.lightbox-info-panel::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

.lbx-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.lbx-logo-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #001055, #5c45fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lbx-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.lbx-sublabel {
    font-size: 0.72rem;
    color: #999;
    margin-top: 2px;
}

.lbx-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lbx-score {
    background: #001055;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.lbx-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.lbx-reviews {
    font-size: 0.75rem;
    color: #888;
}

.lbx-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.lbx-desc {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.lbx-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    background: #f8f9fc;
    border-radius: 14px;
}

.lbx-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lbx-detail-item>i {
    font-size: 1.1rem;
    color: #5c45fd;
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.lbx-detail-label {
    display: block;
    font-size: 0.67rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.lbx-detail-val {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
}

.lbx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lbx-tag {
    background: #f0f1ff;
    color: #5c45fd;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e0e0ff;
}

.lbx-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.lbx-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #001055, #5c45fd);
    color: #fff;
    border: none;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lbx-btn-primary:hover {
    box-shadow: 0 8px 20px rgb(92 69 253 / 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.lbx-btn-secondary {
    flex: 1;
    background: #f5f5f5;
    color: #555;
    border: none;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.lbx-btn-secondary:hover {
    background: #ebebeb;
    color: #111;
}

@media (max-width: 768px) {
    .lightbox-modal {
        padding-bottom: 85px;
    }

    .lightbox-content {
        flex-direction: column;
        height: 82vh;
        max-height: none;
        width: 92vw;
        border-radius: 18px;
    }

    .lightbox-image-panel {
        flex: 0 0 38%;
        min-height: 200px;
    }

    .lightbox-info-panel {
        padding: 20px;
        gap: 12px;
    }

    .lbx-title {
        font-size: 1.3rem;
    }

    .lbx-desc {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .lbx-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .lbx-detail-val {
        font-size: 0.75rem;
    }
}

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

    .gallery-item:nth-child(n) {
        grid-column: span 1 !important;
    }
}

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-title {
        font-size: 1.8rem;
    }
}

.youtube-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.youtube-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-video-container {
    width: 93%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-video-section {
    padding: 60px 0 56px;
    background: linear-gradient(180deg,
            rgb(0 16 85 / 0.04) 0%,
            rgb(173 204 234 / 0.28) 25%,
            rgb(210 228 245 / 0.45) 50%,
            rgb(173 204 234 / 0.28) 75%,
            rgb(0 16 85 / 0.04) 100%);
    text-align: left;
    overflow: hidden;
    position: relative;
}

.yt-tray-container {
    background: #fff0;
    border-radius: 40px;
    padding: 20px 0 10px;
    margin: 20px auto 0;
    width: 100%;
    max-width: 1350px;
    box-shadow: none;
    border: none;
    position: relative;
}

.yt-thumbs-outer {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.yt-slider-wrapper {
    display: flex;
    gap: 24px;
    padding: 10px 20px;
    will-change: transform;
    cursor: grab;
    user-select: none;
    overflow: visible;
}

.yt-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.yt-slider-wrapper:active {
    cursor: grabbing;
}

.yt-slide {
    flex: 0 0 300px;
    width: 300px;
    height: 460px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
}

.yt-thumb-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
}

.yt-thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgb(0 33 71 / 0.15);
}

.yt-thumb-card .card-bg {
    width: 100%;
    height: 100%;
}

.yt-thumb-card .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.yt-thumb-card:hover .card-bg img {
    transform: scale(1.05);
}

.yt-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 15px;
    text-align: left;
}

.play-btn-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 72px;
    height: 72px;
    background: rgb(255 255 255 / 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: all 0.4s var(--ease-spring-prog);
}

.yt-thumb-card:hover .play-btn-glass {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.student-info {
    background: linear-gradient(145deg,
            rgb(0 10 30 / 0.45) 0%,
            rgb(0 10 30 / 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 0.15);
    padding: 14px 20px;
    border-radius: 16px;
    width: 100%;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-info h4 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.student-info p {
    color: rgb(255 255 255 / 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.yt-nav-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.yt-timeline-container {
    flex: 1;
    height: 4px;
    position: relative;
    cursor: pointer;
}

.yt-timeline-base {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 10px;
}

.yt-timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--navy);
    width: 0%;
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.yt-nav-arrows {
    display: flex;
    gap: 16px;
}

.yt-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.yt-arrow:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: scale(1.05);
}

.yt-arrow:active {
    transform: scale(0.95);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-close {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
    background: rgb(255 255 255 / 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 0;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
}

@media (max-width: 1024px) {
    .video-close {
        top: -60px;
        right: 0;
    }
}

.video-close:hover {
    background: rgb(255 255 255 / 0.3);
    transform: rotate(90deg) scale(1.1);
}

.yt-thumbs-fade {
    display: none !important;
}

@media (max-width: 768px) {
    .yt-tray-container {
        padding: 30px 0 10px;
        border-radius: 30px;
    }

    .yt-slider-wrapper {
        padding: 0 20px;
        gap: 20px;
    }

    .yt-slide {
        flex: 0 0 280px;
        width: 280px;
        height: 430px;
    }

    .yt-nav-wrapper {
        padding: 20px;
        gap: 20px;
    }

    .yt-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

.news-notice-section {
    padding: 40px 0;
    background: #fff;
}

.news-notice-section .container {
    max-width: 1350px;
    width: 93%;
    margin: 0 auto;
    padding: 0;
}

.news-notice-section .row {
    display: flex;
    flex-wrap: wrap;
}

.news-notice-section .col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
}

.news-notice-section .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.news-notice-section .section-title-v2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.news-row-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card-v2 {
    position: relative;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 80px;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .news-row-v2 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 50px;
        padding-top: 30px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: nowrap;
    }

    .news-row-v2::-webkit-scrollbar {
        display: none;
    }

    .news-card-v2 {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

.news-card-v2:hover {
    transform: translateY(-8px);
}

.news-image-wrap-v2 {
    width: 100%;
    max-width: 370px;
    height: 271px;
    margin: 0 auto;
    border-radius: var(--radius-lg-prog, 24px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-card-v2 .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg-prog, 24px);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card-v2:hover .card-image {
    transform: scale(1.05);
}

.news-card-v2 .card-content-v2 {
    position: absolute;
    bottom: -56px;
    left: 32px;
    right: 32px;
    background: rgb(255 255 255 / 0.72);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgb(255 255 255 / 0.55);
    border-top: 1px solid rgb(255 255 255 / 0.85);
    padding: 14px 18px;
    border-radius: 16px;
    z-index: 2;
    box-shadow:
        0 4px 6px rgb(0 0 0 / 0.04),
        0 12px 32px rgb(0 33 71 / 0.12),
        inset 0 1px 0 rgb(255 255 255 / 0.9);
}

.news-card-v2 .card-meta-v2 {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.8rem;
    color: #667085;
    margin-bottom: 4px;
}

.news-card-v2 .card-category-v2 {
    font-weight: 600;
    color: #101828;
}

.news-card-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #101828;
    line-height: 1.3;
    margin: 0;
}

.notice-search-wrapper {
    position: relative;
    margin-bottom: 25px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.notice-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #98a2b3;
    font-size: 1.1rem;
    pointer-events: none;
}

.notice-search-input {
    flex: 1;
    padding: 8px 12px 8px 38px;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #101828;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgb(16 24 40 / 0.05);
}

.btn-view-all-notices {
    padding: 8px 15px;
    background-color: var(--primary-color, #003399);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.btn-view-all-notices:hover {
    background-color: #026;
    color: #fff;
}

.notice-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgb(0 51 153 / 0.1);
}

.notice-search-input::placeholder {
    color: #667085;
}

.notice-list {
    display: flex;
    flex-direction: column;
    max-height: 640px;
    overflow-y: auto;
    padding-right: 10px;
}

.notice-list::-webkit-scrollbar {
    width: 6px;
}

.notice-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.notice-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.notice-list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.notice-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eaecf0;
    transition: background 0.2s ease;
}

.notice-item:first-child {
    padding-top: 0;
}

.notice-item:hover {
    background: #f9fafb;
    padding-left: 10px;
    margin-left: -10px;
    border-radius: 8px;
}

.notice-date-v2 {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    color: #667085;
}

.notice-date-v2 .day-v2 {
    font-size: 1rem;
    font-weight: 700;
    color: #101828;
}

.notice-date-v2 .year-v2 {
    font-size: 0.8rem;
}

.notice-content-v2 {
    flex: 1;
    padding-left: 16px;
}

.notice-content-v2 h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 6px;
    line-height: 1.4;
}

.notice-content-v2 p {
    font-size: 0.85rem;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-footer-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #d92d20;
    font-weight: 600;
}

.notice-footer-v2 i {
    font-size: 1rem;
    color: #d92d20;
}

.blog-section {
    padding: 50px 0;
    background: linear-gradient(180deg,
            rgb(0 16 85 / 0.04) 0%,
            rgb(173 204 234 / 0.28) 25%,
            rgb(210 228 245 / 0.45) 50%,
            rgb(173 204 234 / 0.28) 75%,
            rgb(0 16 85 / 0.04) 100%);
    position: relative;
}

.blog-nav-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--primary-color, #003399);
    font-size: 18px;
}

.blog-nav-btn:hover {
    background-color: var(--primary-color, #003399);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgb(0 51 153 / 0.2);
}

.blog-nav-btn.prev-btn {
    left: -20px;
}

.blog-nav-btn.next-btn {
    right: -20px;
}

@media (max-width: 1350px) {
    .blog-nav-btn.prev-btn {
        left: 10px;
    }

    .blog-nav-btn.next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .blog-nav-btn {
        display: none;
    }
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.blog-header p {
    font-size: 1rem;
    color: #475467;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: flex;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
    padding: 20px 5px 60px;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background: #fff0;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card.image-top .blog-card-image {
    order: 1;
}

.blog-card.image-top .blog-card-content {
    order: 2;
}

.blog-card.text-top .blog-card-content {
    order: 1;
}

.blog-card.text-top .blog-card-image {
    order: 2;
}

.blog-card-image {
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.06);
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-muted, #636e72);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a6b 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.blog-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgb(0 16 85 / 0.3);
    color: #fff;
}

.blog-cta-btn img.cta-arrow {
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.blog-cta-btn:hover img.cta-arrow {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .news-notice-section .col-lg-8,
    .news-notice-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .notice-board-container {
        padding-left: 0;
        margin-top: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .news-notice-section .col-lg-8,
    .news-notice-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }

    .news-notice-section .section-title-v2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .news-row-v2 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 50px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .news-row-v2::-webkit-scrollbar {
        display: none;
    }

    .news-card-v2 {
        min-width: calc(100% - 30px);
        scroll-snap-align: center;
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .news-image-wrap-v2 {
        height: 220px;
        max-width: 100%;
    }

    .news-card-v2 .card-content-v2 {
        padding: 12px 15px;
        bottom: -40px;
        left: 15px;
        right: 15px;
        background: rgb(255 255 255 / 0.65);
        backdrop-filter: blur(20px) saturate(1.8);
        -webkit-backdrop-filter: blur(20px) saturate(1.8);
    }

    .news-card-v2 h3 {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 2.6rem;
    }

    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
        padding: 0 0 30px;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        min-width: 100%;
        padding: 0 5px;
    }

    .blog-card-image {
        height: 250px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card.text-top .blog-card-content {
        order: 1;
    }

    .blog-card.text-top .blog-card-image {
        order: 2;
    }
}

.featured-blog-section {
    padding: 96px 0 96px 10rem;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #fcfcfd;
}

.blog-inner-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog-header-featured {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    padding-right: 5rem;
}

.header-left-featured .sub-featured {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    display: block;
}

.header-left-featured h2 {
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.header-left-featured p {
    font-size: 20px;
    color: #475467;
    margin: 0;
}

.view-all-btn-featured {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgb(16 24 40 / 0.05);
    white-space: nowrap;
}

.view-all-btn-featured:hover {
    background-color: #000a33;
    color: #fff;
}

.slider-wrap-featured {
    position: relative;
}

.blog-slider-featured {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 15rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-slider-featured::-webkit-scrollbar {
    display: none;
}

.blog-card-featured {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 380px;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.card-img-wrap-featured {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.card-img-wrap-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-featured:hover .card-img-wrap-featured img {
    transform: scale(1.05);
}

.card-overlay-featured {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgb(255 255 255 / 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(255 255 255 / 0.2);
}

.meta-left-featured .author-featured {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
    display: block;
}

.meta-left-featured .date-featured {
    font-size: 12px;
    color: #101828;
    opacity: 0.8;
}

.meta-right-featured .category-featured {
    font-size: 14px;
    font-weight: 500;
    color: #101828;
}

.card-content-featured h3 {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.card-content-featured p {
    font-size: 16px;
    color: #475467;
    margin: 0 0 24px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-post-featured {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.read-post-featured img.read-more-arrow {
    width: 14px;
    height: auto;
    filter: var(--arrow-filter, none);
    transition: transform 0.2s ease;
}

.blog-card-featured:hover .read-post-featured img.read-more-arrow {
    transform: translate(2px, -2px) rotate(-45deg);
}

.slider-controls-featured {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.control-btn-featured {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #eaecf0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #475467;
    padding: 0;
    font-size: 16px;
}

.control-btn-featured:hover {
    background-color: var(--primary-color, #003399);
    color: #fff;
    border-color: var(--primary-color, #003399);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgb(0 51 153 / 0.1);
}

.view-all-card-featured {
    background: #f9fafb;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
    transition: all 0.2s ease;
    height: 100%;
}

.view-all-card-featured:hover {
    border-color: var(--secondary-color);
    background: #fff9f5;
}

.view-all-card-featured .icon-circle-featured {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff9f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.view-all-card-featured span {
    font-weight: 600;
    font-size: 18px;
    color: #101828;
}

.scroller-bar-featured {
    width: calc(100% - 15rem);
    height: 4px;
    background: #f2f4f7;
    border-radius: 2px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.scroller-progress-featured {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.2s ease;
}

@media (max-width: 1200px) {
    .featured-blog-section {
        padding-left: 5rem;
    }

    .blog-slider-featured {
        padding-right: 5rem;
    }

    .scroller-bar-featured {
        width: calc(100% - 5rem);
    }
}

@media (max-width: 768px) {
    .featured-blog-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .blog-slider-featured {
        padding-right: 2rem;
        gap: 20px;
    }

    .blog-card-featured {
        flex: 0 0 calc(70% - 16px);
        min-width: 300px;
    }

    .blog-header-featured {
        flex-direction: column;
        gap: 24px;
        padding-right: 0;
    }

    .scroller-bar-featured {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-card-featured {
        flex: 0 0 100%;
    }
}

.accordion-section {
    padding: 100px 0;
    background-color: #fff;
    margin-bottom: 0;
}

.accordion-header-group {
    max-width: 800px;
    margin-bottom: 60px;
}

.accordion-header-group .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.accordion-header-group .section-subtitle {
    font-size: 18px;
    color: #475467;
    line-height: 1.6;
}

.accordion-container {
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border: none;
    border-bottom: 1px solid #eaecf0;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-item:first-child {
    border-top: 1px solid #eaecf0;
}

.accordion-item {
    background: #fff;
    border: none;
    border-bottom: 1px solid #eaecf0;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    background-color: #fcfaff;
}

.accordion-item:hover {
    background-color: #f9fafb;
}

.accordion-item.active {
    background-color: #f9fafb;
}

.accordion-trigger {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.accordion-trigger h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #101828;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-trigger h3 {
    color: var(--primary-color, #5c45fd);
}

.accordion-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101828;
    transition: all 0.3s ease;
    border: 1px solid #eaecf0;
}

.accordion-icon i {
    font-size: 14px;
}

.accordion-item.active .accordion-icon {
    background-color: var(--primary-color, #5c45fd);
    color: #fff;
    border-color: var(--primary-color, #5c45fd);
    transform: rotate(0deg);
}

.accordion-item.active .accordion-icon i::before {
    content: "\f077";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease-in-out,
        padding 0.5s ease-in-out;
}

.accordion-item.active .accordion-content {
    max-height: 1500px;
}

.accordion-inner-text {
    padding: 0 32px 32px 32px;
}

.accordion-inner-text p {
    color: #475467;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.accordion-inner-text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--primary-color, #5c45fd);
    border-radius: 50%;
}

.accordion-inner-text p:last-child {
    margin-bottom: 0;
}

.accordion-inner-text strong {
    color: #101828;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .accordion-section {
        padding: 50px 0;
    }

    .accordion-header-group .section-title {
        font-size: 28px;
    }

    .accordion-trigger {
        padding: 20px;
    }

    .accordion-inner-text {
        padding: 0 20px 20px;
    }

    .accordion-trigger h3 {
        font-size: 18px;
    }
}

.main-footer {
    background-color: #000b30;
    color: #fff;
    padding: 80px 0 0;
    font-family: "Inter", sans-serif;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 30px;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 320px;
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #f8fafc;
}

.contact-info p span {
    color: #f97316;
    font-weight: 700;
    margin-right: 5px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #f97316;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.footer-col ul li a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin-right: 12px;
    color: rgb(255 255 255 / 0.5);
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col ul li a:hover::before {
    color: #f97316;
    transform: translateX(3px);
}

.footer-bottom {
    background-color: #000824;
    padding: 30px 0;
    font-size: 14px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.legal-links {
    color: rgb(255 255 255 / 0.3);
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #f97316;
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    margin: 0;
    border-top: 1px solid rgb(255 255 255 / 0.05);
    padding-top: 25px;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px 30px;
    }
}

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

    .info-col {
        grid-column: span 2;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-col {
        grid-column: span 1;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .legal-links span {
        display: none;
    }
}

.image-showcase {
    padding: 40px 0;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.image-showcase .section-title {
    margin: 0 auto 3rem;
    padding: 0 5%;
    text-align: center;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    position: relative;
    display: inline-block;
}

.image-showcase .section-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    box-shadow:
        20px 0 0 -1.5px rgb(0 33 71 / 0.2),
        -20px 0 0 -1.5px rgb(0 33 71 / 0.2);
}

.showcase-outer {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.showcase-slider {
    width: 100%;
    overflow: visible;
    padding: 40px 0;
}

.showcase-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: center;
    will-change: transform;
}

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

.showcase-item {
    flex: 0 0 280px;
    width: 280px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    transition:
        flex 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.6s ease,
        transform 0.6s ease;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.08);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: none;
    pointer-events: none;
    user-select: none;
}

.showcase-item:hover {
    flex: 0 0 500px;
    width: 500px;
    z-index: 10;
    transform: none;
}

.showcase-item:hover img {
    transform: none !important;
}

.showcase-hover-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 22px;
    background: linear-gradient(to top,
            rgb(0 0 0 / 0.8) 0%,
            rgb(0 0 0 / 0.2) 70%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.35s ease;
    pointer-events: none;
}

.showcase-item:hover .showcase-hover-label {
    transform: translateY(0);
    opacity: 1;
}

.shc-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgb(0 0 0 / 0.5);
}

.showcase-info {
    margin-top: 20px;
}

.showcase-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.showcase-info p {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .showcase-item {
        flex: 0 0 240px;
        width: 240px;
        height: 380px;
    }

    .showcase-item:hover {
        flex: 0 0 400px;
        width: 400px;
    }

    .showcase-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .image-showcase {
        padding: 50px 0;
    }

    .showcase-item {
        flex: 0 0 200px;
        width: 200px;
        height: 320px;
    }

    .showcase-item:hover {
        flex: 0 0 320px;
        width: 320px;
    }

    .showcase-info p {
        letter-spacing: 1.5px;
    }
}

.programmes-section .mobile-only {
    display: none !important;
}

@media (max-width: 600px),
(max-height: 600px) {
    .programmes-section .desktop-only {
        display: none !important;
    }

    .programmes-section .mobile-only {
        display: block !important;
    }

    .programmes-section .mobile-only.flex {
        display: flex !important;
    }
}

.programmes-section {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: visible;
    font-family: "Outfit", sans-serif;
    color: var(--text-prog);
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(180deg,
            rgb(0 16 85 / 0.04) 0%,
            rgb(173 204 234 / 0.28) 25%,
            rgb(210 228 245 / 0.45) 50%,
            rgb(173 204 234 / 0.28) 75%,
            rgb(0 16 85 / 0.04) 100%);
}

.bg-image-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg-color-prog);
}

.bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.7;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.bg-blob--1 {
    width: 42vw;
    height: 42vw;
    background: radial-gradient(circle, rgb(0 33 71 / 0.12), transparent 70%);
    top: -8%;
    left: -8%;
    animation: drift 22s infinite alternate ease-in-out;
}

.bg-blob--2 {
    width: 38vw;
    height: 38vw;
    background: radial-gradient(circle, rgb(240 90 40 / 0.08), transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: drift 28s infinite alternate-reverse ease-in-out;
}

.bg-blob--3 {
    width: 28vw;
    height: 28vw;
    background: radial-gradient(circle, rgb(91 33 182 / 0.06), transparent 70%);
    top: 40%;
    left: 55%;
    animation: drift 18s 5s infinite alternate ease-in-out;
}

@keyframes drift {
    to {
        transform: translate(28px, 28px);
    }
}

.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.35;
}

.glass-shell {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1350px;
    width: 93%;
    margin: 0 auto;
    padding: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
}

.programmes-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
    background: #fff0;
    padding: 0;
}

.header-titles {
    flex: 1 1 auto;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange);
    margin-bottom: 0.4rem;
}

.section-header {
    width: 100%;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.accent {
    color: var(--orange);
}

.header-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.programme-count {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted-prog);
    letter-spacing: 0.01em;
}

.programme-count .count-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
}

.level-filter {
    display: flex;
    gap: 6px;
    background: rgb(255 255 255 / 0.7);
    backdrop-filter: blur(12px);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid var(--border-prog);
    box-shadow: var(--shadow-sm-prog);
}

.filter-pill {
    padding: 10px 22px;
    border-radius: 100px;
    border: none;
    background: #fff0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted-prog);
    cursor: pointer;
    transition: all 0.22s var(--ease-out-prog);
    font-family: inherit;
    letter-spacing: 0.02em;
}

.filter-pill:hover {
    color: var(--text-prog);
    background: rgb(0 0 0 / 0.04);
}

.filter-pill.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 3px 12px rgb(0 33 71 / 0.25);
}

.programme-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 280px;
    width: 100%;
    padding: 0 16px;
    height: 50px;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid var(--border-strong-prog);
    box-shadow: var(--shadow-sm-prog);
}

.search-icon svg {
    color: var(--text-muted-prog);
    width: 18px;
    height: 18px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: #fff0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-prog);
}

.search-input::placeholder {
    color: var(--text-light-prog);
}

.programme-search:focus-within {
    border-color: var(--orange);
    box-shadow:
        0 0 0 3px var(--orange-light),
        var(--shadow-sm-prog);
    background: #fff;
}

.programme-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 0 16px;
}

.programme-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 13%;
    margin-bottom: 24px;
    z-index: 50;
    position: relative;
}

.programme-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.programme-controls .desktop-college-dropdown {
    width: 320px;
    min-width: 220px;
    flex-shrink: 0;
    margin: 0 !important;
}

.programme-controls .level-filter {
    display: flex;
    gap: 8px;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .programme-controls {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}

.desktop-college-dropdown {
    width: 340px;
    flex-shrink: 0;
}

.dcd-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgb(255 255 255 / 0.85);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--border-prog);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-sm-prog);
    transition: all 0.25s var(--ease-out-prog);
    font-family: inherit;
    text-align: left;
    position: relative;
    z-index: 101;
}

.dcd-trigger:hover {
    border-color: rgb(0 33 71 / 0.3);
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.04);
}

.dcd-trigger[aria-expanded="true"] {
    border-color: var(--orange);
    box-shadow:
        0 0 0 3px var(--orange-light),
        var(--shadow-sm-prog);
    background: #fff;
}

.dcd-trigger[aria-expanded="true"] .dcd-chevron {
    transform: rotate(180deg);
}

.dcd-trigger-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dcd-icon {
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dcd-trigger-text {
    display: flex;
    flex-direction: column;
}

.dcd-sublabel {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted-prog);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3px;
}

.dcd-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.dcd-chevron {
    color: var(--text-muted-prog);
    transition: transform 0.3s var(--ease-out-prog);
}

.dcd-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(240 244 248 / 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out-prog);
}

.desktop-college-dropdown.open .dcd-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.dcd-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid var(--border-prog);
    box-shadow: 0 20px 40px rgb(0 33 71 / 0.12);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
        opacity 0.3s var(--ease-out-prog),
        transform 0.3s var(--ease-out-prog);
    z-index: 101;
}

.desktop-college-dropdown.open .dcd-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dcd-list-wrap {
    width: 100%;
    max-height: 55vh;
    overflow-y: auto;
}

.dcd-list-wrap::-webkit-scrollbar {
    width: 6px;
}

.dcd-list-wrap::-webkit-scrollbar-track {
    background: #fff0;
}

.dcd-list-wrap::-webkit-scrollbar-thumb {
    background: rgb(0 33 71 / 0.15);
    border-radius: 4px;
}

.dcd-list-wrap::-webkit-scrollbar-thumb:hover {
    background: rgb(0 33 71 / 0.3);
}

.dcd-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 32px;
}

.dcd-panel .college-card {
    position: relative;
    height: 128px;
    padding: 0;
    overflow: hidden;
    background: #fff0;
    border: none;
    border-radius: var(--radius-md-prog);
    display: block;
}

.dcd-panel .college-card-thumb-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dcd-panel .glass-badge-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 8px;
    pointer-events: none;
}

.dcd-panel .glass-badge,
.dcd-panel .glass-badge-count {
    width: auto;
    max-width: 95%;
    margin: 0;
    padding: 6px 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    white-space: normal;
    font-weight: 700;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.3);
    text-shadow: 0 1px 3px rgb(0 0 0 / 0.4);
    line-height: 1.2;
}

.dcd-panel .glass-badge {
    font-size: 0.85rem;
}

.dcd-panel .glass-badge-count {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
}

.college-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--border-prog);
    border-radius: var(--radius-md-prog);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.25s var(--ease-out-prog),
        box-shadow 0.25s var(--ease-out-prog),
        border-color 0.25s var(--ease-out-prog),
        background 0.25s var(--ease-out-prog);
    box-shadow: var(--shadow-sm-prog);
    font-family: inherit;
    text-align: left;
    outline: none;
    padding: 0;
}

.college-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgb(0 0 0 / 0.08);
    border-color: rgb(0 33 71 / 0.2);
}

.college-card.active {
    border-color: var(--navy);
    background: rgb(0 33 71 / 0.03);
    box-shadow:
        0 0 0 2px rgb(0 33 71 / 0.1),
        var(--shadow-sm-prog);
}

.college-card-thumb-wrap {
    width: 100%;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}

.college-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--surface-2-prog);
    transition: transform 0.4s var(--ease-out-prog);
}

.college-card:hover .college-card-thumb {
    transform: scale(1.06);
}

.college-card-body {
    padding: 12px;
    width: 100%;
}

.college-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: var(--text-muted-prog);
    transition:
        color 0.22s var(--ease-out-prog),
        transform 0.22s var(--ease-out-prog);
}

.college-card:hover .college-card-icon {
    color: var(--navy);
    transform: scale(1.1);
}

.college-card.active .college-card-icon {
    color: var(--navy);
}

.college-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-prog);
    line-height: 1.3;
    margin-bottom: 2px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.college-card.active .college-card-name {
    color: var(--navy);
}

.college-card-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--surface-2-prog);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted-prog);
    border: 1px solid var(--border-prog);
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.college-card.active .college-card-badge {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.content-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 12px;
}

.content-layout::-webkit-scrollbar {
    width: 6px;
}

.content-layout::-webkit-scrollbar-track {
    background: #fff0;
}

.content-layout::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.programme-showcase {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg-prog);
    padding: 30px;
    box-shadow: var(--shadow-md-prog);
    border: 1px solid var(--border-prog);
}

.grid-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted-prog);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.grid-subtitle strong {
    color: var(--text-prog);
    font-weight: 700;
}

.programme-scroll-container {
    max-height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 12px;
    margin-top: 10px;
}

.programme-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.programme-scroll-container::-webkit-scrollbar-track {
    background: rgb(0 0 0 / 0.03);
    border-radius: 10px;
}

.programme-scroll-container::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 10px;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 24px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.programme-grid.fading {
    opacity: 0;
    transform: scale(0.985);
}

.programme-card {
    background: var(--surface-prog);
    border-radius: var(--radius-md-prog);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-prog);
    box-shadow: var(--shadow-card-prog);
    cursor: pointer;
    transition:
        transform 0.3s var(--ease-out-prog),
        box-shadow 0.3s var(--ease-out-prog);
    animation: cardFadeInProg 0.4s var(--ease-out-prog) backwards;
    min-width: 0;
    min-height: 380px;
}

.programme-card:hover {
    box-shadow: var(--shadow-card-hover-prog);
}

.card-image-wrap {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #e8eaf0;
    flex-shrink: 0;
}

.card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out-prog);
}

.programme-card:hover .card-bg {
    transform: scale(1.07);
}

.level-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 11px;
    border-radius: 7px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
}

.level-badge.badge-ug {
    background: rgb(0 33 71 / 0.88);
    color: #fff;
}

.level-badge.badge-pg {
    background: rgb(240 90 40 / 0.9);
    color: #fff;
}

.level-badge.badge-doctorate {
    background: rgb(91 33 182 / 0.88);
    color: #fff;
}

.card-text-wrap {
    flex: 1;
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
}

.meta-tags {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 0.63rem;
    font-weight: 700;
    color: var(--navy);
    background: rgb(0 33 71 / 0.06);
    padding: 3px 9px;
    border-radius: 5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.card-title {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    letter-spacing: -0.01em;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-prog);
}

.meta-info {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted-prog);
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-info::before {
    display: none;
}

.pin-icon {
    color: #ff3b30;
    flex-shrink: 0;
}

.explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-light);
    border: 1px solid rgb(240 90 40 / 0.2);
    transition: all 0.25s var(--ease-out-prog);
    letter-spacing: 0.02em;
}

.programme-card:hover .explore-cta {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 14px var(--orange-glow);
}

@keyframes cardFadeInProg {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 100px;
    background: var(--surface-prog);
    border: 1.5px solid var(--border-strong-prog);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.25s var(--ease-out-prog);
    box-shadow: var(--shadow-sm-prog);
    letter-spacing: 0.02em;
}

.load-more-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgb(0 33 71 / 0.2);
    transform: translateY(-2px);
}

.load-more-btn.hidden {
    display: none;
}

@media (max-width: 768px),
(max-height: 600px) {
    .programmes-section .desktop-only {
        display: none !important;
    }

    .programmes-section .mobile-only {
        display: flex !important;
    }

    .mobile-only.card-carousel {
        display: block !important;
    }

    .programmes-section {
        padding: 1rem 0;
        min-height: 92vh;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        position: relative;
    }

    .programme-showcase {
        background: #fff0;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .glass-shell {
        padding: 0 4%;
        height: 100%;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-x: hidden;
    }

    .programme-wrapper {
        padding: 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .section-header {
        margin-bottom: 12px;
        flex-shrink: 0;
        display: block !important;
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        margin-bottom: 6px;
        color: var(--tmu-orange);
        font-weight: 700;
        text-transform: uppercase;
    }

    .section-title {
        font-size: 1.85rem;
        line-height: 1.1;
        margin-bottom: 2px;
        color: var(--navy);
        font-weight: 800;
    }

    .programmes-section .section-title {
        padding-top: 2rem;
        padding-bottom: 1rem;
    }

    .section-title .accent {
        color: var(--tmu-orange);
    }

    .header-filters {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        box-sizing: border-box;
    }

    .programme-count {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1;
        flex-shrink: 0;
    }

    .programme-count .count-number {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--navy);
    }

    .programme-count .count-label {
        font-size: 0.65rem;
        font-weight: 600;
        color: #888;
        margin-top: -1px;
    }

    .level-filter {
        display: flex !important;
        overflow-x: auto;
        gap: 10px;
        padding: 4px 0 8px;
        margin: 0;
        flex: 1;
        max-width: 78%;
        margin-left: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        -webkit-overflow-scrolling: touch;
    }

    .level-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-pill {
        flex-shrink: 0;
        white-space: nowrap;
        height: 34px;
        padding: 0 14px;
        font-size: 0.8rem;
        border-radius: 20px;
        background: #fff;
        border: 1.5px solid #eee;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .filter-pill.active {
        background: var(--navy);
        border-color: var(--navy);
        color: #fff;
        font-weight: 600;
    }

    .mobile-college-trigger {
        width: 100%;
        margin: 0 0 16px 0;
        display: block;
        box-sizing: border-box;
    }

    .mcd-trigger {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        background: #fff;
        border: 1px solid rgb(0 0 0 / 0.08);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgb(0 0 0 / 0.03);
        cursor: pointer;
        box-sizing: border-box;
    }

    .mobile-accordion-view {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 10px;
        padding: 0 16px 40px;
        box-sizing: border-box;
    }

    .college-accordion {
        background: #fff;
        border-radius: 18px;
        border: 1px solid rgb(0 33 71 / 0.08);
        overflow: hidden;
        box-shadow: 0 4px 15px rgb(0 0 0 / 0.04);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .college-accordion.active {
        box-shadow: 0 15px 35px rgb(0 33 71 / 0.12);
        border-color: rgb(0 33 71 / 0.15);
    }

    .college-accordion-header {
        width: 100%;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        gap: 12px;
    }

    .cah-left {
        display: flex;
        align-items: center;
        gap: 16px;
        overflow: hidden;
    }

    .cah-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        background: #f8fafc;
        border-radius: 12px;
        flex-shrink: 0;
        border: 1px solid rgb(0 33 71 / 0.05);
        transition: all 0.3s ease;
    }

    .college-accordion.active .cah-icon {
        background: var(--navy);
        color: #fff;
    }

    .cah-label-wrap {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .cah-label {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cah-count {
        font-size: 0.7rem;
        font-weight: 600;
        color: #888;
        margin-top: 2px;
    }

    .cah-chevron {
        color: var(--navy);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        flex-shrink: 0;
    }

    .college-accordion.active .cah-chevron {
        transform: rotate(180deg);
    }

    .college-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fcfcfd;
    }

    .college-accordion.active .college-accordion-content {
        max-height: 5000px;
    }

    .college-accordion-inner {
        padding: 0 16px 24px;
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .college-accordion-inner::-webkit-scrollbar {
        display: none;
    }

    .mobile-prog-card {
        flex: 0 0 280px;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgb(0 0 0 / 0.05);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.02);
    }

    .mpc-image-wrap {
        height: 180px;
        width: 100%;
        position: relative;
    }

    .mpc-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mpc-level-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.65rem;
        font-weight: 800;
        color: #fff;
        backdrop-filter: blur(8px);
        text-transform: uppercase;
    }

    .mpc-body {
        padding: 16px;
    }

    .mpc-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .mpc-duration {
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--navy);
        background: #f1f5f9;
        padding: 4px 10px;
        border-radius: 6px;
    }

    .mpc-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 14px;
        border-top: 1px solid rgb(0 0 0 / 0.05);
        margin-top: 4px;
    }

    .mpc-explore {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--orange);
    }

    .mpc-progress-bar-wrap {
        height: 3px;
        background: #f1f5f9;
        margin: 0 20px 20px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .mpc-progress-bar {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 15%;
        background: var(--orange);
        border-radius: 10px;
        transition: width 0.15s ease-out;
        box-shadow: 0 0 10px rgb(255 121 0 / 0.3);
    }

    .mcd-trigger-left {
        display: contents;
    }

    .mcd-icon {
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mcd-icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    .mcd-trigger-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
        overflow: hidden;
        min-width: 0;
    }

    .mcd-sublabel {
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #888;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .mcd-label {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--navy);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mcd-chevron {
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }

    .content-layout {
        flex: 1;
        min-height: 0;
        max-height: 42rem;
        display: flex;
        flex-direction: column;
    }

    .card-carousel {
        flex: 1;
        min-height: 0;
        display: block !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .card-carousel::-webkit-scrollbar {
        display: none;
    }

    .card-track {
        display: flex;
        gap: 12px;
        height: 100%;
        padding: 4px 0 16px;
    }

    .programme-card {
        flex: 0 0 320px !important;
        scroll-snap-align: start;
        height: auto;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgb(0 0 0 / 0.05);
    }

    .card-image-wrap {
        height: 240px;
        position: relative;
        overflow: hidden;
    }

    .swipe-cue {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 0.75rem;
        color: #999;
        margin: 4px auto;
        opacity: 0.6;
        width: 100%;
    }

    .mobile-dot-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin: 4px 0 12px;
        flex-shrink: 0;
    }

    .mobile-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        padding: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .mobile-dot.active {
        background: var(--navy);
        width: 16px;
        border-radius: 10px;
    }

    .mobile-bottom-sheet {
        display: block;
    }

    .mcd-backdrop {
        position: fixed;
        inset: 0;
        background: rgb(0 0 30 / 0.4);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .mcd-backdrop.open {
        opacity: 1;
        pointer-events: all;
    }

    .mcd-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 75vh;
        max-height: 600px;
        background: #fff;
        border-radius: 24px 24px 0 0;
        z-index: 100;
        transform: translateY(100%);
        transition: transform 0.4s var(--ease-spring-prog);
        display: flex;
        flex-direction: column;
    }

    .mcd-panel.open {
        transform: translateY(0);
    }

    .mcd-panel-header {
        padding: 0 20px 16px;
        border-bottom: 1px solid rgb(0 0 0 / 0.05);
    }

    .mcd-panel-handle-area {
        height: 48px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mcd-list-wrap {
        flex: 1;
        overflow-y: auto;
        padding: 12px 20px 20px;
    }

    .mcd-item {
        padding: 12px 16px;
        border-radius: 14px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-prog);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        transition: all 0.2s var(--ease-out-prog);
        border: 1px solid #fff0;
    }

    .mcd-item.active {
        background: #f1f5f9;
        border-color: rgb(0 33 71 / 0.08);
        color: var(--navy);
        font-weight: 700;
    }

    .mcd-item-label {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .mcd-item-label svg,
    .mcd-item-label img {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .mcd-item-check {
        opacity: 0;
        color: var(--orange);
        flex-shrink: 0;
    }

    .mcd-item.active .mcd-item-check {
        opacity: 1;
    }

    .mcd-item.hidden {
        display: none !important;
    }
}

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    padding-top: var(--navbar-height);
    background: #000;
    display: flex;
    align-items: center;
    isolation: isolate;
    z-index: 10;
    transform: none !important;
    will-change: auto !important;
}

.hero-video-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background-image: url(/assets/img/new-homepage-img/hero_campus_fallback.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-logo-link {
    position: absolute;
    top: 20px;
    left: 5%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.hero-logo-link:hover {
    transform: scale(1.05);
}

.hero-logo {
    height: 120px !important;
    width: auto !important;
    max-width: 500px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 6px rgb(0 0 0 / 0.5));
}

@media (max-width: 768px) {
    .hero-logo-link {
        top: 20px;
        left: 4%;
    }

    .hero-logo {
        height: 64px !important;
        max-width: auto;
    }
}

.hero-bottom-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-top-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #000000a7 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
}

.hero-blob-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgb(255 121 0 / 0.15), transparent 70%);
    top: -10%;
    left: 20%;
    animation: blobFloat1 20s infinite alternate ease-in-out;
}

.hero-blob-2 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle,
            rgb(100 150 255 / 0.1),
            transparent 70%);
    bottom: -10%;
    right: 10%;
    animation: blobFloat2 25s infinite alternate ease-in-out;
}

@keyframes blobFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, 10%) scale(1.1);
    }
}

@keyframes blobFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, -10%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin-top: calc(-1 * var(--navbar-height) / 2);
    will-change: transform;
}

.hero-text-wrap {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text-wrap>* {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-hero-visible .hero-text-wrap .hero-eyebrow {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.video-hero-visible .hero-text-wrap .hero-heading {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.video-hero-visible .hero-text-wrap .hero-subtext {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.video-hero-visible .hero-text-wrap .hero-ctas {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    width: fit-content;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgb(0 0 0 / 0.3);
}

.accent-orange {
    color: var(--secondary-color);
}

.hero-subtext {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: rgb(255 255 255 / 0.9);
    font-weight: 400;
    text-shadow: 0 2px 10px rgb(0 0 0 / 0.3);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(255 121 0 / 0.4);
}

.btn-hero-primary:hover {
    background: #e66d00;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(255 121 0 / 0.6);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgb(255 255 255 / 0.15);
    transform: translateY(-3px);
    border-color: #fff;
}

.hero-usp-card {
    position: absolute;
    z-index: 20;
    bottom: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    max-width: 1000px;
    background: rgb(10 20 40 / 0.5);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 20px;
    padding: 28px 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    box-shadow:
        0 10px 40px rgb(0 0 0 / 0.2),
        0 0 20px rgb(100 150 255 / 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition:
        opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
}

.usp-card-visible {
    opacity: 1;
    transform: none;
}

.usp-card-visible:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 50px rgb(0 0 0 / 0.3),
        0 0 35px rgb(100 150 255 / 0.3);
}

.hero-usp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgb(255 255 255 / 0.08),
            transparent);
    transform: skewX(-20deg);
    animation: shimmerSlide 7s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.usp-stat {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    text-align: left;
    transition: transform 0.3s ease;
}

.usp-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.usp-stat:hover {
    transform: translateY(-4px);
}

.usp-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 6px rgb(255 121 0 / 0.4));
    flex-shrink: 0;
}

.usp-count {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgb(0 0 0 / 0.3);
}

.usp-count span {
    font-variant-numeric: tabular-nums;
}

.usp-count .usp-suffix {
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: 6px;
    align-self: flex-end;
    margin-bottom: 3px;
    color: rgb(255 255 255 / 0.9);
}

.usp-label {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgb(255 255 255 / 0.75);
}

#video-hero {
    margin-bottom: 0;
}

.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity, filter;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (max-width: 1024px) {
    .hero-content {
        align-items: center;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text-wrap {
        align-items: center;
    }

    .hero-usp-card {
        padding: 24px 32px;
        width: 90%;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    #video-hero {
        margin-bottom: 0;
    }

    .video-hero {
        min-height: 800px;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-layout-wrapper {
        display: grid;
    }

    .hero-usp-card {
        grid-row: 1;
        grid-column: 1;
        align-self: end;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        width: 90%;
        max-width: 420px;
        padding: 5px 0;
        gap: 0;
        bottom: -50px;
        margin: 0 auto;
        border-radius: 16px;
        transform: translateY(30px) scale(0.95);
        box-shadow:
            0 8px 25px rgb(0 0 0 / 0.4),
            0 0 10px rgb(100 150 255 / 0.1);
    }

    .banner-showcase {
        grid-row: 2;
        grid-column: 1;
        padding: 100px 0 0;
    }

    .usp-card-visible {
        transform: translateY(0);
    }

    .usp-card-visible:hover {
        transform: translateY(-4px) scale(1.02);
    }

    .hero-usp-card::before,
    .hero-usp-card::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        pointer-events: none;
        z-index: 1;
        animation: none;
    }

    .hero-usp-card::before {
        width: 90%;
        height: 1px;
        transform: translate(-50%, -50%);
        background: linear-gradient(90deg,
                transparent,
                rgb(255 255 255 / 0.8) 50%,
                transparent);
        box-shadow: 0 0 12px rgb(255 255 255 / 0.6);
    }

    .hero-usp-card::after {
        width: 1px;
        height: 90%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg,
                transparent,
                rgb(255 255 255 / 0.8) 50%,
                transparent);
        box-shadow: 0 0 12px rgb(255 255 255 / 0.6);
    }

    .usp-stat {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 16px 24px;
        position: relative;
        z-index: 2;
        min-height: 64px;
    }

    .usp-stat .usp-icon {
        flex: 0 0 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .usp-stat-text {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .usp-icon {
        grid-area: icon;
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .usp-count {
        grid-area: count;
        font-size: 1.3rem;
    }

    .usp-count .usp-suffix {
        font-size: 0.85rem;
    }

    .usp-label {
        grid-area: label;
        font-size: 0.7rem;
    }

    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 0;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-heading {
        font-size: 1.9rem;
    }

    .hero-usp-card {
        width: 92%;
        bottom: -50px;
    }

    .usp-icon {
        font-size: 1.3rem;
    }

    .usp-count {
        font-size: 1.15rem;
    }

    .usp-label {
        font-size: 0.65rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
    }
}

.hero-video-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video.active {
    opacity: 1;
}

@keyframes breatheGlow {
    0% {
        opacity: 0.4;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        filter: blur(2px);
    }
}

@media (max-width: 768px) {
    .alm-static-testimonial {
        padding: 0;
        width: 115%;
        margin-left: -7.5%;
    }

    .alm-test-nav {
        top: auto;
        bottom: -5px;
        transform: none;
        width: 38px;
        height: 38px;
        font-size: 14px;
        background: rgb(255 255 255 / 0.9);
        box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    }

    .alm-test-nav:hover {
        transform: scale(1.05);
        background: var(--primary-color, #001055);
    }

    .alm-test-nav.prev-btn {
        left: 15%;
    }

    .alm-test-nav.next-btn {
        right: 15%;
    }

    .alm-progress-wrap {
        margin-top: 35px;
        position: relative;
    }

    .alm-dots {
        gap: 9px;
    }

    .alm-dot {
        width: 8px;
        height: 8px;
    }
}

#searchModal.home-premium-search {
    background: rgb(0 0 0 / 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.home-premium-search .modal-search-content {
    background: #ffffff !important;
    border: 1px solid rgb(0 0 0 / 0.1);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
    border-radius: 12px;
    margin: auto !important;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    animation: centerReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: none !important;
}

@media (max-width: 768px) {
    #searchModal.home-premium-search {
        padding: 20px !important;
    }

    .home-premium-search .modal-search-content {
        width: 95% !important;
        max-width: none !important;
        margin: auto !important;
    }
}

@keyframes centerReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.home-premium-search .modal-search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    line-height: 1;
}

.home-premium-search .modal-search-close:hover {
    color: #000;
}

.home-premium-search #searchInput {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    color: #000;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s;
    margin: 10px 0 5px 0;
    font-family: inherit;
}

.home-premium-search #searchInput:focus {
    border-color: #ff7900;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgb(255 121 0 / 0.1);
}

.home-premium-search .suggestions {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ff7900 #f1f5f9;
}

.home-premium-search .suggestions::-webkit-scrollbar {
    width: 6px;
}

.home-premium-search .suggestions::-webkit-scrollbar-thumb {
    background-color: #ff7900;
    border-radius: 10px;
}

#close-btn-container {
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 1001;
}

#close-btn-container button {
    background: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
}

#close-btn-container i.fa-circle-xmark {
    font-size: 2.2rem !important;
    transition: transform 0.3s ease !important;
}

#close-btn-container button:hover i {
    transform: rotate(90deg) !important;
}

body.menu-open .nav-actions {
    display: none !important;
}

@media (max-width: 768px) {
    #close-btn-container {
        top: 10px;
        right: 20px;
    }

    #close-btn-container i.fa-circle-xmark {
        font-size: 2.5rem !important;
    }
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

/* Showcase Slider Controls */
.showcase-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
}

.showcase-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color, #001055);
    border: 1px solid rgba(0, 16, 85, 0.1);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    background: #001055;
    color: #fff;
    transform: scale(1.12);
}

.showcase-progress {
    width: 350px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.showcase-progress-fill {
    width: 0%;
    height: 100%;
    background: #ff7900;
    transition: width 0.1s linear;
}

/* Mobile Responsiveness for Showcase Controls */
@media (max-width: 768px) {
    .showcase-controls {
        gap: 15px;
        margin-top: 20px;
    }

    .showcase-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .showcase-progress {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .showcase-controls {
        gap: 10px;
        margin-top: 15px;
    }

    .showcase-btn {
        width: 40px;
        height: 40px;
    }

    .showcase-progress {
        width: 140px;
        height: 4px;
    }

    /* Optimization for very small screens */
    .showcase-item {
        flex: 0 0 160px;
        width: 160px;
        height: 260px;
    }

    .showcase-item:hover {
        flex: 0 0 240px;
        width: 240px;
    }
}