/* ============================================
   MERITUS UNIVERSITY - HEADER SECTIONS ONLY
   Custom CSS for Header Top & Main Header
============================================ */

/* ===== CSS VARIABLES & GLOBAL RESET ===== */
:root {
    --primary-navy: #1a2b5c;
    --primary-burgundy: #8B1538;
    --primary-gold: #C5A572;
    --primary-blue-teal: rgba(7, 117, 137, 1);
    --primary-deep-blue: rgba(54, 55, 145, 1);
    --primary-yellow: rgba(218, 165, 32, 1);
    --secondary-light-blue: #E8F1F8;
    --secondary-cream: #FAF7F2;
    --secondary-blue-teal: rgba(7, 117, 137, 0.8);
    --secondary-deep-blue: rgba(54, 55, 145, 0.8);
    --secondary-yellow: rgba(218, 165, 32, 0.8);
    --accent-teal: #0B7285;
    --accent-orange: #D97706;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-light: #e2e8f0;
    --primary-blue: var(--primary-navy);
    --secondary-blue: var(--accent-teal);
    --third-blue: var(--accent-teal);
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --para-py: 30px;
    --header-height: 110px;
    --wa-green: #25D366;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    position: relative;
    z-index: 2;
}

.card {
    position: relative;
    z-index: 1;
}

.bg-primary {
    background: var(--primary-navy) !important;
}

.btn-primary {
    background: var(--primary-navy) !important;
    border-color: var(--primary-navy) !important;
}

.text-primary {
    color: var(--primary-navy) !important;
}

.text-secondary,
.text-muted {
    color: var(--text-secondary) !important;
}

.bg-light-alt {
    background-color: #eef2f6;
}

.bg-panel {
    background-color: #f3f6fb;
}

.bg-panel-alt {
    background-color: #f8f9fa;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, #c5a572, #8b1538);
    margin: 60px 0;
    border-radius: 2px;
}

.section-cap {
    height: 12px;
    margin: -12px auto 36px;
    max-width: 110px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 12px;
}

.map-spacer {
    height: 30px;
    background: linear-gradient(180deg, rgba(26,43,92,0.06), rgba(26,43,92,0));
}

.section-shadow {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 12px;
    padding: 0;
}

.section-card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px;
}

.section-fade {
    position: relative;
}

    .section-fade::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.03), transparent);
    }

footer h6 {
    color: var(--primary-gold);
}

.h6, h6 {
    font-size: 2rem;
}

.fa-solid, .fab {
    font-weight: 900 !important;
    font-size: 36px !important;
}

.tab {
    padding: 14px 32px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
}

    .tab:hover,
    .tab.active {
        background: var(--primary-blue);
        color: white;
    }

/* ===== HEADER TOP SECTION ===== */
.header-top {
    background-color: var(--primary-navy);
    padding: 10px 0;
    font-size: 13px;
    color: white;
}

.header-top-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    padding: 0 12px;
    transition: var(--transition-smooth);
}

    .header-top-link:hover {
        color: var(--primary-gold);
    }

.header-top .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ===== MAIN HEADER / NAVBAR SECTION ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    transition: var(--transition-smooth);
    margin-top: -20px;
    margin-bottom: -20px;
}

.main-header .nav-link {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}

    .main-header .nav-link:hover,
    .main-header .nav-link:focus {
        color: var(--primary-burgundy);
    }

    .main-header .nav-link.active {
        color: var(--primary-burgundy);
    }

.main-header .dropdown-toggle::after {
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-header .dropdown-toggle[aria-expanded="true"]::after,
.main-header .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .nav-item.dropdown:hover > .dropdown-toggle {
        color: var(--primary-burgundy);
    }
}

.btn-contact {
    background-color: var(--primary-navy);
    color: white;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid var(--primary-navy);
    transition: var(--transition-smooth);
    display: inline-block;
}

    .btn-contact:hover {
        background-color: var(--primary-burgundy);
        border-color: var(--primary-burgundy);
        color: white;
    }

/* ===== DROPDOWN MENU STYLING ===== */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(26, 43, 92, 0.12);
    border-radius: 0;
    padding: 30px 0;
    min-width: 280px;
}

.dropdown-menu-lg {
    position: absolute !important;
    left: auto !important;
    right: auto !important;
    top: 100% !important;
    width: auto !important;
    min-width: 280px !important;
    max-width: 400px !important;
    margin: 0 !important;
    transform: none !important;
}

    .dropdown-menu-lg .container {
        padding: 0;
    }

.dropdown-item {
    padding: 10px 15px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

    .dropdown-item:hover {
        background-color: rgba(139, 21, 56, 0.08);
        color: var(--primary-burgundy);
        transform: translateX(5px);
    }

.dropdown-card-link {
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

    .dropdown-card-link:hover {
        background-color: #f8f9fa;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-card-link img {
        border-radius: 6px;
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: var(--transition-smooth);
    }

    .dropdown-card-link:hover img {
        transform: scale(1.05);
    }

.dropdown-card-title {
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.dropdown-card-link:hover .dropdown-card-title {
    color: var(--primary-burgundy);
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-top-menu {
    background-color: rgba(26, 43, 92, 0.05);
    padding: 20px 15px;
    margin: -8px -12px 20px -12px;
    border-radius: 8px;
}

.mobile-top-title {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-top-menu .nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 15px;
}

    .mobile-top-menu .nav-link:hover {
        color: var(--primary-burgundy);
        background-color: rgba(139, 21, 56, 0.08);
        border-radius: 5px;
    }

.mobile-divider {
    margin: 20px 0;
    border-color: var(--border-light);
}

.navbar-toggler {
    border: 2px solid var(--primary-navy);
    padding: 8px 12px;
    border-radius: 5px;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(26, 43, 92, 0.25);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 43, 92, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-submenu {
    background-color: rgba(26, 43, 92, 0.03);
    padding: 0;
    border-radius: 8px;
    margin: 5px 0 10px 0;
}

.mobile-submenu-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

    .mobile-submenu-item:hover {
        background-color: rgba(139, 21, 56, 0.08);
        color: var(--primary-burgundy);
        border-left-color: var(--primary-burgundy);
    }

    .mobile-submenu-item strong {
        color: var(--primary-navy);
        font-weight: 600;
    }

.mobile-submenu hr {
    margin: 8px 15px;
    border-color: var(--border-light);
    opacity: 0.5;
}

.nav-link[data-bs-toggle="collapse"] i {
    transition: transform 0.3s ease;
}

.nav-link[data-bs-toggle="collapse"]:not(.collapsed) i {
    transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) {
    .dropdown-menu-lg {
        padding: 30px;
    }

    .main-header .navbar-nav {
        gap: 10px;
    }
}

@media (max-width: 991.98px) {
    .logo-img {
        height: 110px;
        margin-top: -10px;
        margin-bottom: -10px;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .main-header .nav-link {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-light);
    }

    .main-header .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .dropdown-menu-lg {
        min-width: 100%;
        padding: 15px;
        top: 100px !important;
    }

        .dropdown-menu-lg .container {
            padding: 0;
        }

        .dropdown-menu-lg .row {
            flex-direction: column;
        }

        .dropdown-menu-lg .col-lg-4,
        .dropdown-menu-lg .col-lg-8 {
            width: 100%;
        }

    .video-controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .video-control-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

        .video-control-btn::after,
        .video-control-btn::before {
            display: none;
        }
}

@media (max-width: 767.98px) {
    .main-header {
        padding: 10px 0;
    }

    .logo-img {
        height: 100px;
        margin-top: -10px;
        margin-bottom: -10px;
    }

    .navbar-toggler {
        padding: 6px 10px;
    }
}

@media (max-width: 575.98px) {
    .header-top {
        font-size: 11px;
        padding: 8px 0;
    }

    .header-top-link {
        padding: 0 8px;
    }
}

/* ===== VIDEO HERO SECTION ===== */
.HTML5video-section {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

    .HTML5video-section video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        transform: translateX(-50%) translateY(-50%);
    }

    .HTML5video-section .container {
        position: relative;
        z-index: 2;
    }

    .HTML5video-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: black;
        opacity: 0.5;
        z-index: 1;
    }

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 43, 92, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .video-control-btn:hover {
        background: rgba(139, 21, 56, 0.9);
        border-color: var(--primary-gold);
        transform: scale(1.1);
    }

    .video-control-btn:active {
        transform: scale(0.95);
    }

    .video-control-btn.active,
    .video-control-btn.sound-on {
        background: rgba(139, 21, 56, 0.9);
        border-color: var(--primary-gold);
    }

    .video-control-btn.pulse-hint {
        animation: subtlePulse 2.5s ease-in-out 12;
    }

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 165, 114, 0.7);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(197, 165, 114, 0);
    }
}

.video-control-btn::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(26, 43, 92, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

.video-control-btn::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 6px solid transparent;
    border-top-color: rgba(26, 43, 92, 0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-control-btn:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

.HTML5video-section:fullscreen .video-controls,
.HTML5video-section:-webkit-full-screen .video-controls,
.HTML5video-section:-moz-full-screen .video-controls,
.HTML5video-section:-ms-fullscreen .video-controls {
    bottom: 50px;
    right: 50px;
}

.HTML5video-section:fullscreen .video-control-btn,
.HTML5video-section:-webkit-full-screen .video-control-btn,
.HTML5video-section:-moz-full-screen .video-control-btn,
.HTML5video-section:-ms-fullscreen .video-control-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

@media (max-width: 991.98px) {
    .video-controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .video-control-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

        .video-control-btn::after,
        .video-control-btn::before {
            display: none;
        }
}

@media (max-width: 575.98px) {
    .video-controls {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== SLIDER SECTION ===== */
.slider-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2d3f6f 100%);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
    z-index: 1 !important;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 0 20px 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 300%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.slide {
    width: 33.333%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: white;
    box-sizing: border-box;
}

.slider-subtitle,
.slider-title,
.slider-description {
    color: white;
}

.slider-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    margin-bottom: 0.5rem;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    margin-bottom: 0.5rem;
}

.slider-description {
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
}

.slide.active .slider-subtitle {
    animation: slideInLeft 0.8s ease-out forwards 0.2s;
}

.slide.active .slider-title {
    animation: slideInLeft 0.9s ease-out forwards 0.4s;
}

.slide.active .slider-description {
    animation: slideInLeft 0.8s ease-out forwards 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

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

.slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

    .slider-dot:hover {
        background: rgba(197, 165, 114, 0.8);
        transform: scale(1.2);
    }

    .slider-dot.active {
        background: var(--primary-gold);
        width: 30px;
        border-radius: 6px;
    }

@media (max-width: 767.98px) {
    .slider-title {
        font-size: 1.75rem;
    }

    .slider-subtitle {
        font-size: 0.65rem;
    }

    .slider-description {
        font-size: 0.85rem;
        padding: 0 15px;
    }
}

@media (max-width: 575.98px) {
    .slider-title {
        font-size: 1.5rem;
    }

    .slider-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .slider-description {
        font-size: 0.8rem;
    }

    .slide {
        padding: 15px 0;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-light-blue, #E8F1F8) 0%, var(--secondary-cream, #FAF7F2) 100%);
    opacity: 0.6;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.about-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.highlight-text {
    background: linear-gradient(120deg, var(--secondary-light-blue, #E8F1F8) 0%, var(--secondary-cream, #FAF7F2) 100%);
    border-left: 4px solid var(--primary-burgundy);
}

    .highlight-text p {
        color: var(--primary-navy) !important;
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-light-blue, #E8F1F8);
    border-radius: 12px;
    color: var(--primary-navy);
    font-size: 1.5rem;
}

.about-image-container {
    background: transparent;
    padding: 0;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }

    .about-background {
        display: none !important;
    }

    .about-image-container {
        background: linear-gradient(135deg, #E8F1F8 0%, #FAF7F2 100%) !important;
        padding: 40px 20px !important;
        border-radius: 12px !important;
        margin-bottom: 40px !important;
        display: block !important;
        position: relative;
    }

        .about-image-container img {
            position: relative;
            z-index: 1;
            max-width: 100%;
            height: auto;
        }

    .about-section .col-lg-7 {
        background: transparent;
        padding: 0 20px;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image-container {
        padding: 30px 15px !important;
        margin-bottom: 30px !important;
    }

    .about-section .col-lg-7 {
        padding: 0 15px;
    }

    .about-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section h3 {
        font-size: 1.25rem;
    }

    .highlight-text {
        padding: 20px !important;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .about-section .h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding-top: 0rem !important;
        padding: 30px 0;
    }

    .about-image-container {
        padding-top: 5px !important;
        padding: 20px 10px !important;
        margin-bottom: 20px !important;
        overflow: hidden !important;
        max-height: 450px !important;
    }

        .about-image-container img {
            width: 100% !important;
            height: 420px !important;
            object-fit: cover !important;
            object-position: bottom 10px center !important;
        }

    .about-subtitle {
        font-size: 0.85rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section h3 {
        font-size: 1.1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonials-slide {
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
    flex-shrink: 0;
}

    .testimonials-slide.active {
        opacity: 1;
        visibility: visible;
    }

    .testimonials-slide .row {
        margin: 0 auto;
        max-width: 1400px;
    }

.testimonials-section .container:first-child {
    max-width: 100%;
    padding: 0;
}

.testimonials-section .text-center {
    padding: 0 15px;
    margin-bottom: 0rem !important;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 12px rgba(26, 43, 92, 0.15);
    transition: all 0.3s ease;
}

.testimonials-section .card:hover .testimonial-photo {
    transform: scale(1.1);
    border-color: var(--primary-burgundy);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.25);
}

.testimonials-section .fa-quote-left {
    color: var(--primary-navy) !important;
}

.testimonials-section .fw-bold {
    color: var(--primary-navy) !important;
}

.testimonials-section .card {
    min-height: 320px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .testimonials-section .card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.testimonials-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 43, 92, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

    .testimonials-dot:hover {
        background: rgba(139, 21, 56, 0.6);
        transform: scale(1.2);
    }

    .testimonials-dot.active {
        background: var(--primary-burgundy);
        width: 30px;
        border-radius: 6px;
    }

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

    .testimonials-slide {
        padding: 0 10px;
    }

    .testimonials-section .card {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .testimonials-slide .col-lg-4 {
        margin-bottom: 20px;
    }

    .testimonials-section .card {
        min-height: 260px;
    }

        .testimonials-section .card p {
            font-size: 18px !important;
        }
}

/* ===== PARALLAX SECTIONS ===== */
.parallax,
.parallax-cta {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .parallax::before,
    .parallax-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 43, 92, 0.75);
    }

.parallax-content,
.parallax-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 100px;
}

    .parallax-content h1,
    .parallax-cta-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .parallax-content p,
    .parallax-cta-content p {
        font-size: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

.parallax1 {
    background-image: url('../images/banner-fp1.jpg');
}

.parallax-cta {
    background-image: url('../images/ship-banner.png');
    margin-top: 60px;
}

.parallax-cta-content {
    padding: 80px 20px;
    max-width: 900px;
}

    .parallax-cta-content h2 {
        font-size: 3.5rem;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 1);
        font-weight: 700;
        line-height: 1.3;
    }

        .parallax-cta-content h2 .small-text {
            font-size: 2rem;
            display: block;
            font-weight: 400;
            margin-bottom: 5px;
        }

    .parallax-cta-content p {
        font-size: 1.2rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 1);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .parallax-cta-content .btn {
        background: white;
        color: var(--primary-blue);
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        font-size: 16px;
    }

        .parallax-cta-content .btn:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

@media (max-width: 992px) {
    .parallax-cta-content h2 {
        font-size: 2.2rem;
    }

        .parallax-cta-content h2 .small-text {
            font-size: 1.3rem;
        }

    .parallax-cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .parallax, .parallax-cta {
        background-attachment: scroll;
        min-height: 300px;
    }

    .parallax-content, .parallax-cta-content {
        padding: 60px 20px;
    }

        .parallax-content h1, .parallax-cta-content h2 {
            font-size: 2rem;
        }

        .parallax-content p, .parallax-cta-content p {
            font-size: 1.2rem;
        }

    .parallax-cta {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .parallax-cta-content {
        padding: 40px 20px;
    }
}

/* ===== SOCIAL MEDIA FEEDS SECTION ===== */
.social-feeds-section {
    border-top: 1px solid rgba(26, 43, 92, 0.08);
}

    .social-feeds-section .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
    }

        .social-feeds-section .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 43, 92, 0.15) !important;
        }

    .social-feeds-section .card-header {
        border-bottom: none;
        font-weight: 600;
    }

    .social-feeds-section .card-body {
        overflow: hidden;
        padding: 0 !important;
    }

    .social-feeds-section .fb-page,
    .social-feeds-section .fb-page span,
    .social-feeds-section .fb-page iframe {
        width: 100% !important;
        min-height: 500px;
        max-width: 100% !important;
    }

    .social-feeds-section .twitter-timeline {
        width: 100% !important;
    }

    .social-feeds-section .ratio iframe {
        border-radius: 6px;
    }

.bg-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D) !important;
}

.bg-mu-cyan {
    background: linear-gradient(45deg, #1a2b5c 0%, #1a2b5c 30%, rgba(0, 153, 204, 0.85) 100%) !important;
}

.bg-mc-teal {
    background: linear-gradient(45deg, #1a2b5c 0%, #1a2b5c 30%, rgba(7, 117, 137, 0.85) 100%) !important;
}

.bg-hmas-blue {
    background: linear-gradient(45deg, #1a2b5c 0%, #1a2b5c 30%, rgba(54, 55, 145, 0.85) 100%) !important;
}

.bg-wm-yellow {
    background: linear-gradient(45deg, #1a2b5c 0%, #1a2b5c 30%, rgba(245, 208, 0, 0.85) 100%) !important;
}

@media (max-width: 991px) {
    .social-feeds-section .card-header h3 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .social-feeds-section {
        padding: 40px 0 !important;
    }

        .social-feeds-section .row {
            row-gap: 1.5rem !important;
        }

        .social-feeds-section .col-lg-3,
        .social-feeds-section .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .social-feeds-section .card-header {
            padding: 15px 10px;
        }

            .social-feeds-section .card-header h3 {
                font-size: 0.95rem;
                line-height: 1.4;
            }

        .social-feeds-section .fb-page {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
        }

            .social-feeds-section .fb-page span {
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
            }

            .social-feeds-section .fb-page iframe {
                width: 100% !important;
                max-width: 100% !important;
                height: 500px !important;
                min-height: 450px !important;
            }

                .social-feeds-section .fb-page iframe[style] {
                    width: 100% !important;
                    max-width: 100% !important;
                }

        .social-feeds-section iframe[data-testid*="fb:page"],
        .social-feeds-section iframe[title*="Facebook Social Plugin"] {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 100% !important;
        }

        .social-feeds-section .card {
            min-height: auto;
            margin-bottom: 0;
        }
}

@media (max-width: 576px) {
    .social-feeds-section {
        padding: 30px 0 !important;
    }

        .social-feeds-section .card-header {
            padding: 12px 8px;
        }

            .social-feeds-section .card-header h3 {
                font-size: 0.85rem;
            }

            .social-feeds-section .card-header .h5 {
                font-size: 0.85rem;
            }

        .social-feeds-section .fb-page iframe {
            height: 450px !important;
            min-height: 400px !important;
        }

        .social-feeds-section .row {
            row-gap: 1rem !important;
        }
}

@media (max-width: 400px) {
    .social-feeds-section .card-header h3 {
        font-size: 0.75rem;
    }

    .social-feeds-section .fb-page iframe {
        height: 400px !important;
        min-height: 350px !important;
    }
}

.fb-page {
    min-height: 500px;
    display: block !important;
    width: 100% !important;
}

    .fb-page iframe {
        width: 100% !important;
        height: 500px !important;
        border: none !important;
    }

@media (max-width: 767px) {
    .fb-page iframe {
        height: 450px !important;
    }
}

@media (max-width: 576px) {
    .fb-page iframe {
        height: 400px !important;
    }
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

    .brands-section .container {
        position: relative;
    }

.four-col-banner {
    display: flex;
    width: 100%;
    height: 400px;
}

.banner-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 0;
}

    .banner-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
        z-index: 1;
    }

.banner-cyan::before {
    background-image: url('../images/1_3.webp');
}

.banner-teal::before {
    background-image: url('../images/2_3.webp');
}

.banner-deep-blue::before {
    background-image: url('../images/HMAerospace.webp');
}

.banner-yellow::before {
    background-image: url('../images/4_3.webp');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.banner-cyan .banner-overlay {
    background: rgba(0, 153, 204, 0.85);
}

.banner-yellow .banner-overlay {
    background: rgba(218, 165, 32, 0.85);
}

.banner-deep-blue .banner-overlay {
    background: rgba(54, 55, 145, 0.85);
}

.banner-teal .banner-overlay {
    background: rgba(7, 117, 137, 0.85);
}

.banner-content {
    color: #fff;
    z-index: 3;
    width: 100%;
    max-width: 350px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .banner-content h2 {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 10px 0;
        line-height: 1.2;
    }

    .banner-content h3 {
        font-size: 34px;
        font-weight: 700;
        margin: 0 0 15px 0;
        line-height: 1.1;
    }

    .banner-content h4 {
        font-size: 14px;
        font-weight: 600;
        margin: 0 0 15px 0;
        line-height: 1.4;
        opacity: 1;
        transition: all 0.4s ease;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }

.banner-link {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

    .banner-link:hover {
        background: #fff;
        color: #333;
    }

.banner-item:hover {
    flex: 2;
    min-width: 300px;
}

.banner-item:not(:hover) {
    flex: 0.8;
}

.banner-item:hover::before {
    transform: scale(1.1);
}

.banner-item:hover .banner-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.banner-item:hover .banner-content p,
.banner-item:hover .banner-link {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
}

/* ===== BRAND DETAILS COLLAPSIBLE SECTIONS ===== */
.product-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
}

.share-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.share-label {
    font-size: 13px;
    font-weight: 600;
    color: #3a3a3a;
    margin-right: 5px;
}

.btn-share-social {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

    .btn-share-social:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        color: white;
    }

    .btn-share-social.facebook {
        background: #1877f2;
    }

    .btn-share-social.twitter {
        background: #1da1f2;
    }

    .btn-share-social.linkedin {
        background: #0077b5;
    }

    .btn-share-social.whatsapp {
        background: #25d366;
    }

    .btn-share-social.copy {
        background: #666;
    }

        .btn-share-social.copy:hover {
            background: var(--primary-navy);
        }

.btn-brochure-university {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

    .btn-brochure-university:hover {
        background: var(--secondary-light-blue);
    }

.btn-brochure-college {
    background: var(--primary-blue-teal);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

    .btn-brochure-college:hover {
        background: var(--secondary-blue-teal);
    }

.btn-brochure-aerospace {
    background: var(--primary-deep-blue);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

    .btn-brochure-aerospace:hover {
        background: var(--secondary-deep-blue);
    }

.btn-brochure-wilderness {
    background: var(--primary-yellow);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

    .btn-brochure-wilderness:hover {
        background: var(--secondary-yellow);
    }

.about-product-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-product-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.about-product-university-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 50px;
}

    .about-product-university-subtitle:first-of-type {
        margin-top: 0;
    }

.stats-product-university-bar {
    background: linear-gradient(135deg, rgba(0, 153, 204) 0%, rgba(0, 153, 204) 100%);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    color: white;
}

.about-product-college-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-blue-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 50px;
}

    .about-product-college-subtitle:first-of-type {
        margin-top: 0;
    }

.stats-product-college-bar {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    color: white;
}

.about-product-aerospace-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-deep-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 50px;
}

    .about-product-aerospace-subtitle:first-of-type {
        margin-top: 0;
    }

.stats-product-aerospace-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    color: white;
}

.about-product-wilderness-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 50px;
}

    .about-product-wilderness-subtitle:first-of-type {
        margin-top: 0;
    }

.stats-product-wilderness-bar {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    color: white;
}

.about-product-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

    .about-product-logo img {
        height: 180px;
        transition: var(--transition-smooth);
        display: block;
    }

.text-muted {
    margin-bottom: 25px;
    line-height: 1.8;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.training-callout {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 30px;
    border-radius: 10px;
    color: white;
    margin: 40px 0;
}

    .training-callout h3 {
        color: white;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .training-callout ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

        .training-callout ul li {
            padding-left: 30px;
            position: relative;
        }

            .training-callout ul li::before {
                content: '\f00c';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                left: 0;
                color: #4ade80;
            }

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

    .feature-box:hover {
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-3px);
    }

    .feature-box i {
        font-size: 32px;
        color: var(--primary-blue);
        margin-bottom: 15px;
        display: block;
    }

    .feature-box h4 {
        font-size: 18px;
        color: var(--primary-blue);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .feature-box p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

.visit-site-product-university-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 153, 204);
    color: white;
    border: 2px solid rgba(0, 153, 204);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .visit-site-product-university-btn:hover {
        background: var(--secondary-light-blue);
        border-color: var(--secondary-light-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 170, 53, 0.3);
    }

.visit-site-product-college-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-blue-teal);
    color: white;
    border: 2px solid var(--primary-blue-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .visit-site-product-college-btn:hover {
        background: var(--secondary-blue-teal);
        border-color: var(--secondary-blue-teal);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 170, 53, 0.3);
    }

.visit-site-product-aerospace-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-deep-blue);
    color: white;
    border: 2px solid var(--primary-deep-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .visit-site-product-aerospace-btn:hover {
        background: var(--secondary-deep-blue);
        border-color: var(--secondary-deep-blue);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 170, 53, 0.3);
    }

.visit-site-product-wilderness-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-yellow);
    color: white;
    border: 2px solid var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .visit-site-product-wilderness-btn:hover {
        background: var(--secondary-yellow);
        border-color: var(--secondary-yellow);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 170, 53, 0.3);
    }

/* ===== SCHOLARSHIPS SECTION ===== */
.scholarships-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .scholarships-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(135deg, var(--secondary-light-blue) 0%, rgba(197, 165, 114, 0.1) 100%);
        opacity: 0.3;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }

.scholarship-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-gold);
}

    .scholarship-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-burgundy) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .scholarship-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(26, 43, 92, 0.15);
        border-top-color: var(--primary-burgundy);
    }

        .scholarship-card:hover::before {
            opacity: 0.03;
        }

.scholarship-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-light-blue) 0%, var(--secondary-cream) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

    .scholarship-icon i {
        font-size: 36px;
        color: var(--primary-navy);
        transition: all 0.4s ease;
    }

.scholarship-card:hover .scholarship-icon {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-burgundy) 100%);
    transform: scale(1.1) rotate(5deg);
}

    .scholarship-card:hover .scholarship-icon i {
        color: white;
    }

.scholarship-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.scholarship-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-burgundy);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.scholarship-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.scholarship-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

    .scholarship-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--text-secondary);
    }

    .scholarship-benefits i {
        color: var(--primary-gold);
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

.btn-scholarship {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-navy);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .btn-scholarship:hover {
        background: var(--primary-burgundy);
        color: white;
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(139, 21, 56, 0.25);
    }

    .btn-scholarship i {
        transition: transform 0.3s ease;
    }

    .btn-scholarship:hover i {
        transform: translateX(5px);
    }

.scholarship-cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-burgundy) 100%);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(26, 43, 92, 0.2);
}

    .scholarship-cta-box .btn-light {
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .scholarship-cta-box .btn-light:hover {
            background: var(--primary-gold);
            color: var(--primary-navy);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #eef2f6;
}

    .contact-section .stat-icon {
        background: var(--primary-navy);
        color: white;
    }

    .contact-section .fw-bold {
        color: var(--primary-navy) !important;
    }

    .contact-section .card {
        border-top: 4px solid var(--primary-burgundy);
    }

.form-label {
    color: var(--primary-navy) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-burgundy);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15);
}

/* ===== MAP SECTION ===== */
.map-section {
    background: #ffffff;
    position: relative;
    padding: 0;
}

.map-container-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .map-container-full iframe {
        display: block;
        width: 100%;
        height: 500px;
        border: 0;
    }

.custom-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    pointer-events: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -100%);
    }

    50% {
        transform: translate(-50%, -110%);
    }
}

.pin-logo {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(26, 43, 92, 0.3);
    margin-bottom: -5px;
}

    .pin-logo img {
        height: 50px;
        width: auto;
        display: block;
    }

.pin-point {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid white;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.map-directions-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

    .map-directions-btn .btn-primary {
        padding: 14px 32px;
        font-weight: 700;
        font-size: 16px;
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(26, 43, 92, 0.3);
        transition: all 0.3s ease;
        background: var(--primary-navy) !important;
        border-color: var(--primary-navy) !important;
    }

        .map-directions-btn .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 21, 56, 0.4);
            background: var(--primary-burgundy) !important;
            border-color: var(--primary-burgundy) !important;
        }

/* ===== FOOTER ===== */
footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.9);
}

    footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }

        footer a:hover {
            color: var(--primary-gold);
        }

    footer h5 {
        color: var(--primary-gold);
    }

/* ===== SEARCH BOX STYLING ===== */
.search-box-wrapper {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 92, 0.1);
    margin-bottom: 40px;
}

.combined-search-bar {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

    .combined-search-bar:focus-within {
        border-color: #1a2b5c;
        box-shadow: 0 0 0 0.2rem rgba(26, 43, 92, 0.1);
    }

.institution-filter {
    padding: 12px 15px;
    border: none;
    border-right: 2px solid #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    color: #1a2b5c;
    background: #f8f9fa;
    cursor: pointer;
    outline: none;
    min-width: 180px;
    transition: all 0.3s ease;
}

    .institution-filter:hover {
        background: #e9ecef;
    }

    .institution-filter:focus {
        outline: none;
    }

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #64748b;
    font-size: 18px;
    z-index: 2;
}

.search-input {
    flex: 1;
    padding: 12px 15px 12px 45px;
    border: none;
    font-size: 15px;
    outline: none;
    height: 56px;
}

    .search-input::placeholder {
        color: #94a3b8;
    }

.search-btn {
    height: 56px;
    padding: 0 30px;
    font-weight: 600;
    border: none;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
    background: #1a2b5c;
    color: white;
    cursor: pointer;
    white-space: nowrap;
}

    .search-btn:hover {
        background: #8B1538;
        transform: scale(1.02);
    }

.results-counter {
    font-size: 14px;
    color: #64748b;
    margin-top: 15px;
    font-weight: 500;
}

.filter-options label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    user-select: none;
}

    .filter-options label:hover {
        background: #f8f9fa;
    }

.filter-options input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #1a2b5c;
}

.filter-options label:has(input:checked) {
    background: rgba(26, 43, 92, 0.05);
    border-left: 3px solid #1a2b5c;
    padding-left: 9px;
    font-weight: 600;
    color: #1a2b5c;
}

.programs-section.bg-light {
    background-color: #f8f9fa !important;
}

.filter-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
    align-self: flex-start;
    max-height: calc(100vh - 135px);
    overflow-y: auto;
}

body.scrolled .filter-sidebar {
    top: 150px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

    .filter-section:last-child {
        border-bottom: none;
    }

    .filter-section h5 {
        font-size: 15px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

#programsContainer .row {
    margin-left: -10px;
    margin-right: -10px;
}

#programsContainer .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.program-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 43, 92, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(26, 43, 92, 0.15);
    }

.program-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .program-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .program-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .program-body h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 12px;
        line-height: 1.3;
    }

.programme-code {
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.programme-institution {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

    .programme-institution i {
        color: var(--primary-blue);
        font-size: 14px;
    }

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

    .program-meta span {
        font-size: 12px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .program-meta i {
        color: var(--primary-burgundy);
        font-size: 14px;
    }

.programme-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-request,
.btn-learn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-request {
    background: #666;
    color: white;
    border: none;
}

    .btn-request:hover {
        background: #555;
        color: white;
    }

.btn-learn {
    background: var(--primary-blue);
    color: white;
    border: none;
}

    .btn-learn:hover {
        background: #e55a0f;
        color: white;
    }

    .btn-learn.blue {
        background: var(--primary-blue);
    }

        .btn-learn.blue:hover {
            background: var(--secondary-blue);
        }

#noResultsMessage {
    animation: fadeInUp 0.5s ease;
}

@media (max-width: 768px) {
    .search-box-wrapper {
        padding: 20px;
    }

    .combined-search-bar {
        flex-direction: column;
    }

    .institution-filter {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        width: 100%;
    }

    .search-btn {
        border-radius: 0 0 6px 6px;
        height: 50px;
    }

    .search-input {
        height: 50px;
    }

    .filter-sidebar {
        position: relative;
        top: 0 !important;
        margin-bottom: 30px;
        max-height: none;
    }

    .program-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .program-body {
        padding: 20px;
    }

        .program-body h3 {
            font-size: 16px;
        }

    .programme-actions {
        flex-direction: column;
    }

    .btn-request, .btn-learn {
        width: 100%;
    }
}

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

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

/* ===== PLAY BUTTON OVERLAY ===== */
.hero-play-overlay {
    margin-left: 100px;
    padding-bottom: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.5s ease;
}

    .hero-play-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.hero-play-button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

    .hero-play-button:hover {
        transform: scale(1.05);
    }

.play-circle {
    width: 120px;
    height: 120px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-play-button:hover .play-circle {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-circle i {
    font-size: 40px;
    color: white;
    margin-left: 8px;
}

.play-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-play-overlay {
        margin-left: 50px;
    }

    .play-circle {
        width: 90px;
        height: 90px;
    }

        .play-circle i {
            font-size: 30px;
        }

    .play-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-play-overlay {
        margin-left: 20px;
        align-items: center;
    }

    .play-circle {
        width: 80px;
        height: 80px;
    }

        .play-circle i {
            font-size: 24px;
        }

    .play-text {
        font-size: 12px;
    }

    .hero-play-button {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== LIGHTBOX STYLING ===== */
.gallery-thumbnail {
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .gallery-thumbnail:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 15px rgba(26, 43, 92, 0.2);
    }

.lb-outerContainer {
    border-radius: 12px !important;
    background: var(--primary-navy) !important;
}

.lb-image {
    border: 4px solid white !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.lb-dataContainer {
    background: var(--primary-navy) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 15px 0 !important;
}

.lb-data .lb-caption {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    text-align: center !important;
    padding: 0 20px !important;
}

.lb-data .lb-number {
    color: var(--primary-gold) !important;
    font-weight: 500 !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.9 !important;
    transition: opacity 0.3s ease !important;
}

    .lb-nav a.lb-prev:hover,
    .lb-nav a.lb-next:hover {
        opacity: 1 !important;
    }

.lb-close {
    background: var(--primary-burgundy) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

    .lb-close:hover {
        background: #7a1332 !important;
        transform: scale(1.1) !important;
    }

    .lb-close:after {
        content: "×" !important;
        font-size: 32px !important;
        color: white !important;
        font-weight: 300 !important;
        line-height: 1 !important;
    }

.lb-loader {
    border: 8px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 8px solid var(--primary-gold) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
}

@media (max-width: 768px) {
    .lb-image {
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .lb-dataContainer {
        max-width: 90% !important;
        margin: 0 auto !important;
    }
}

.program-card .gallery-thumbnail {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.lb-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.5 !important;
}

.lightbox .lb-overlay {
    background: rgba(26, 43, 92, 0.95) !important;
}

.BigText {
    font-size: 3rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* ===== PARALLAX READ MORE BUTTON ===== */
.btn-parallax-readmore {
    background: white;
    color: var(--primary-navy);
    border: 3px solid white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .btn-parallax-readmore:hover {
        background: var(--primary-navy);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .btn-parallax-readmore .btn-icon {
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .btn-parallax-readmore:hover .btn-icon {
        transform: translateY(2px);
    }

    .btn-parallax-readmore[aria-expanded="true"] .btn-icon {
        transform: rotate(180deg);
    }

.parallax-expanded-section {
    display: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .parallax-expanded-section.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
        padding: 80px 0;
        animation: slideDown 0.5s ease-out;
    }

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

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

.expanded-content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.btn-close-expanded {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-burgundy);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

    .btn-close-expanded:hover {
        background: #6b0f27;
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
    }

.expanded-title {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-divider-small {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gold), var(--primary-burgundy));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.scholarship-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

    .scholarship-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-gold);
    }

    .scholarship-info-card .info-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-navy), var(--primary-burgundy));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
        box-shadow: 0 8px 20px rgba(26, 43, 92, 0.2);
    }

    .scholarship-info-card h4 {
        color: var(--primary-navy);
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .scholarship-info-card .highlight-text {
        color: var(--primary-burgundy);
        font-size: 2rem;
        font-weight: 700;
        margin: 10px 0;
    }

    .scholarship-info-card .description-text {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
    }

.criteria-list {
    margin-top: 30px;
}

.criteria-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

    .criteria-item:hover {
        background: #e9ecef;
        transform: translateX(5px);
    }

    .criteria-item i {
        color: var(--primary-gold);
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .criteria-item strong {
        color: var(--primary-navy);
    }

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.coverage-item {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

    .coverage-item:hover {
        border-color: var(--primary-gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .coverage-item i {
        font-size: 2.5rem;
        color: var(--primary-navy);
        margin-bottom: 15px;
        display: block;
    }

    .coverage-item p {
        color: var(--text-primary);
        font-weight: 600;
        margin: 0;
        font-size: 0.95rem;
    }

.cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-burgundy) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(26, 43, 92, 0.3);
}

    .cta-box h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.95;
    }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-apply-scholarship,
.btn-download-info {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apply-scholarship {
    background: white;
    color: var(--primary-navy);
    border: 3px solid white;
}

    .btn-apply-scholarship:hover {
        background: var(--primary-gold);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

.btn-download-info {
    background: transparent;
    color: white;
    border: 3px solid white;
}

    .btn-download-info:hover {
        background: white;
        color: var(--primary-navy);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

@media (max-width: 992px) {
    .expanded-content-wrapper {
        padding: 40px 30px;
    }

    .expanded-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .scholarship-info-card .highlight-text {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 40px 30px;
    }

        .cta-box h3 {
            font-size: 1.6rem;
        }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-apply-scholarship, .btn-download-info {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .btn-parallax-readmore {
        padding: 12px 30px;
        font-size: 14px;
    }

    .parallax-expanded-section.active {
        padding: 40px 0;
    }

    .expanded-content-wrapper {
        padding: 30px 20px;
    }

    .expanded-title {
        font-size: 1.6rem;
    }

    .scholarship-info-card .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .criteria-item {
        padding: 15px;
    }

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

/* ===== SIMPLE GALLERY STYLES ===== */
.simple-gallery-section {
    padding: 40px 0;
}

.simple-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .simple-gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .simple-gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

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

.simple-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0px;
}

    .simple-lightbox.active {
        display: flex;
        opacity: 1;
    }

.simple-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.simple-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border: 3px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: lightboxImageAppear 0.4s ease-out forwards;
}

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

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

.simple-lightbox.active img {
    transform: scale(1);
}

.image-info {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    padding: 0 20px;
}

.image-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
}

.simple-lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: rgba(139, 21, 56, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

    .simple-lightbox-close:hover {
        background: rgba(139, 21, 56, 1);
        transform: scale(1.1) rotate(90deg);
        border-color: var(--primary-gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

.simple-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 43, 92, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100001;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

    .simple-lightbox-nav:hover {
        background: rgba(139, 21, 56, 0.95);
        border-color: var(--primary-gold);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

.simple-lightbox-prev {
    left: 30px;
}

.simple-lightbox-next {
    right: 30px;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 100000;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 992px) {
    .simple-lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 32px;
    }

    .simple-lightbox-nav {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .simple-lightbox-prev {
        left: 15px;
    }

    .simple-lightbox-next {
        right: 15px;
    }

    .simple-lightbox img {
        max-height: 80vh;
    }
}

@media (max-width: 768px) {
    .simple-lightbox {
        padding: 15px;
    }

    .simple-lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .simple-lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .simple-lightbox-prev {
        left: 10px;
    }

    .simple-lightbox-next {
        right: 10px;
    }

    .simple-lightbox img {
        max-height: 75vh;
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .simple-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .simple-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .simple-lightbox-prev {
        left: 5px;
    }

    .simple-lightbox-next {
        right: 5px;
    }

    .simple-lightbox img {
        max-height: 70vh;
    }
}

@media (hover: none) and (pointer: coarse) {
    .simple-lightbox-nav {
        background: rgba(26, 43, 92, 0.95);
        width: 60px;
        height: 60px;
    }

    .simple-lightbox-close {
        background: rgba(139, 21, 56, 0.95);
    }
}

@media (max-width: 768px) {
    .simple-lightbox img {
        max-height: 85vh;
        max-width: 95%;
        border-width: 2px;
    }

    .simple-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }

    .simple-lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .simple-lightbox-prev {
        left: 10px;
    }

    .simple-lightbox-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .simple-gallery-item img {
        height: 150px;
    }

    .simple-lightbox img {
        border-width: 2px;
    }
}

/* ===== MAIN CONTENT LAYOUT (Foundation) ===== */
.main-content {
    position: relative;
}

.booking-form-container {
    position: sticky;
    top: 112px;
    z-index: 100;
    margin-top: 38px;
}

.booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    max-width: 380px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.booking-form-container.sticky-active .booking-form {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.booking-form h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.form-description {
    margin-bottom: 20px;
}

    .form-description p {
        margin-bottom: 5px;
        color: #3a3a3a;
        font-size: 13px;
    }

        .form-description p.required-note {
            font-style: italic;
            color: #666;
            font-size: 12px;
        }

.booking-form .form-label {
    font-weight: 600;
    font-size: 13px;
    color: #3a3a3a;
    margin-bottom: 6px;
    display: block;
}

.booking-form .form-control,
.booking-form .form-select {
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 3px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 13px;
    height: 42px;
}

.booking-form .btn-book {
    background: var(--primary-blue);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    height: 46px;
}

.booking-form .form-check {
    margin-top: 15px;
}

.booking-form .form-check-label {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

    .booking-form .form-check-label a {
        color: #e20c18;
        text-decoration: underline;
    }

.course-header-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2);
}

.course-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin: 0;
}

.course-price-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.quick-info-bar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

    .info-item i {
        font-size: 32px;
        color: var(--primary-blue);
    }

.info-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.info-value {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.course-tabs {
    border-bottom: 2px solid #e0e0e0;
}

    .course-tabs .nav-link {
        color: #666;
        font-weight: 600;
        font-size: 15px;
        padding: 15px 25px;
        border: none;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
    }

        .course-tabs .nav-link i {
            margin-right: 8px;
        }

        .course-tabs .nav-link:hover {
            color: var(--primary-blue);
            border-bottom-color: rgba(0, 51, 102, 0.3);
        }

        .course-tabs .nav-link.active {
            color: var(--primary-blue);
            background: transparent;
            border-bottom-color: var(--primary-blue);
        }

.content-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
    display: inline-block;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(120deg, #e3f2fd 0%, #e3f2fd 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-blue);
}

    .highlight-box h4 {
        color: var(--primary-blue);
        font-size: 20px;
        margin-bottom: 20px;
    }

.highlight-list {
    list-style: none;
    padding: 0;
}

    .highlight-list li {
        padding: 8px 0;
        font-size: 15px;
        color: #555;
    }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

    .module-item:hover {
        background: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }

    .module-item i {
        color: var(--primary-blue);
        font-size: 16px;
    }

    .module-item span {
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }

.requirements-section {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.req-heading {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .req-heading i {
        color: var(--primary-blue);
    }

.req-list {
    padding-left: 20px;
}

    .req-list li {
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 1.6;
    }

.english-requirements {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 30px;
    border-radius: 10px;
}

.english-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .english-card h5 {
        color: var(--primary-blue);
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .english-card .score {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .english-card .score-list {
        list-style: none;
        padding: 0;
        margin-bottom: 10px;
    }

        .english-card .score-list li {
            padding: 5px 0;
            font-size: 15px;
        }

    .english-card small {
        color: #999;
        font-size: 12px;
    }

.pathway-image-container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

    .pathway-image-container img {
        max-width: 100%;
        height: auto;
    }

.progression-cards h4 {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 700;
}

.progression-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    height: 100%;
}

    .progression-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: white;
    }

    .progression-card i {
        font-size: 32px;
        color: var(--primary-blue);
        margin-bottom: 15px;
    }

    .progression-card h5 {
        font-size: 16px;
        color: var(--primary-blue);
        margin-bottom: 8px;
        font-weight: 700;
    }

    .progression-card p {
        font-size: 13px;
        color: #666;
        margin: 0;
    }

@media (max-width: 992px) {
    .booking-form-container {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .booking-form {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .course-title {
        font-size: 28px;
    }

    .course-price-box {
        margin-top: 20px;
    }

    .price-value {
        font-size: 24px;
    }

    .content-card {
        padding: 25px;
    }

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

    .course-tabs .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* ===== BOOTSTRAP CAROUSEL HERO SECTION ===== */
.carousel-hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
    width: 100%;
}

    .carousel-hero-section .carousel {
        height: 100%;
        width: 100%;
    }

    .carousel-hero-section .carousel-inner {
        height: 100%;
    }

    .carousel-hero-section .carousel-item {
        height: 100%;
        position: relative;
    }

    .carousel-hero-section .carousel-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .carousel-hero-section .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .carousel-hero-section .carousel-caption {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 2;
        text-align: center;
    }

        .carousel-hero-section .carousel-caption .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 3;
        }

    .carousel-hero-section .carousel-subtitle {
        font-size: 1.1rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 1rem;
        color: var(--primary-gold);
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.3s forwards;
    }

    .carousel-hero-section .carousel-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.5s forwards;
    }

    .carousel-hero-section .carousel-description {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.7s forwards;
    }

    .carousel-hero-section .btn-carousel {
        padding: 15px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: var(--primary-burgundy);
        border: 2px solid var(--primary-burgundy);
        transition: all 0.3s ease;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.9s forwards;
    }

        .carousel-hero-section .btn-carousel:hover {
            background: transparent;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

    .carousel-hero-section .carousel-indicators {
        bottom: 40px;
        margin-bottom: 0;
    }

        .carousel-hero-section .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: transparent;
            margin: 0 8px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

            .carousel-hero-section .carousel-indicators button.active {
                background: var(--primary-gold);
                border-color: var(--primary-gold);
                opacity: 1;
                transform: scale(1.2);
            }

    .carousel-hero-section .carousel-control-prev,
    .carousel-hero-section .carousel-control-next {
        width: 60px;
        height: 60px;
        background: rgba(26, 43, 92, 0.8);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 20px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .carousel-hero-section .carousel-control-prev {
        left: 20px;
    }

    .carousel-hero-section .carousel-control-next {
        right: 20px;
    }

        .carousel-hero-section .carousel-control-prev:hover,
        .carousel-hero-section .carousel-control-next:hover {
            background: var(--primary-burgundy);
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

    .carousel-hero-section .carousel-control-prev-icon,
    .carousel-hero-section .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }

    .carousel-hero-section .carousel-item {
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        .carousel-hero-section .carousel-item.active {
            opacity: 1;
        }

@media (max-width: 992px) {
    .carousel-hero-section {
        height: 65vh;
        min-height: 450px;
    }

        .carousel-hero-section .carousel-title {
            font-size: 2.8rem;
        }

        .carousel-hero-section .carousel-description {
            font-size: 1.1rem;
            max-width: 600px;
        }

        .carousel-hero-section .carousel-control-prev,
        .carousel-hero-section .carousel-control-next {
            width: 50px;
            height: 50px;
            margin: 0 15px;
        }
}

@media (max-width: 768px) {
    .carousel-hero-section {
        height: 60vh;
        min-height: 400px;
    }

        .carousel-hero-section .carousel-title {
            font-size: 2.2rem;
        }

        .carousel-hero-section .carousel-description {
            font-size: 1rem;
            padding: 0 20px;
        }

        .carousel-hero-section .carousel-subtitle {
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .carousel-hero-section .btn-carousel {
            padding: 12px 30px;
            font-size: 1rem;
        }

        .carousel-hero-section .carousel-indicators {
            bottom: 30px;
        }
}

@media (max-width: 576px) {
    .carousel-hero-section {
        height: 55vh;
        min-height: 350px;
    }

        .carousel-hero-section .carousel-title {
            font-size: 1.8rem;
        }

        .carousel-hero-section .carousel-description {
            font-size: 0.9rem;
            padding: 0 15px;
            margin-bottom: 2rem;
        }

        .carousel-hero-section .carousel-subtitle {
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            margin-bottom: 0.8rem;
        }

        .carousel-hero-section .btn-carousel {
            padding: 10px 25px;
            font-size: 0.9rem;
        }

        .carousel-hero-section .carousel-control-prev,
        .carousel-hero-section .carousel-control-next {
            display: none;
        }
}

/* ===== LEADERSHIP BIO EXPAND/COLLAPSE ===== */
.bio-content {
    position: relative;
}

.bio-extra {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

    .bio-extra.show {
        max-height: 2000px;
        opacity: 1;
    }

.bio-toggle .toggle-icon {
    transition: transform 0.3s ease;
}

/* ===== BANNER HERO SECTION ===== */
.banner-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-gold);
}

.banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.banner-section .banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(5, 15, 40, 0.45) 0%, rgba(5, 15, 40, 0.35) 38%, rgba(5, 15, 40, 0.08) 65%, rgba(5, 15, 40, 0.00) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.banner-slider-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    padding: 0 !important;
    z-index: 2;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

    .banner-slider-wrapper .slider-track {
        display: flex;
        width: 300% !important;
        transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        will-change: transform;
    }

    .banner-slider-wrapper .slide {
        width: 33.333% !important;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0;
        box-sizing: border-box;
    }

        .banner-slider-wrapper .slide .container {
            text-align: left !important;
            margin-left: 4vw !important;
            margin-right: auto !important;
            max-width: 580px;
            padding: 1.75rem 2rem !important;
            background: rgba(5, 15, 40, 0.35);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border-left: 3px solid var(--primary-gold);
            border-radius: 0 6px 6px 0;
        }

    .banner-slider-wrapper .slider-subtitle {
        color: var(--primary-gold) !important;
        font-weight: 700 !important;
        letter-spacing: 4px !important;
        text-transform: uppercase;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
        margin-bottom: 0.5rem;
    }

    .banner-slider-wrapper .slider-title {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 1.00), 0 3px 12px rgba(0, 0, 0, 0.80), 0 8px 40px rgba(0, 0, 0, 0.60) !important;
    }

    .banner-slider-wrapper .slider-description {
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95) !important;
        max-width: 520px;
    }

    .banner-slider-wrapper .slider-nav {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        gap: 0.75rem;
    }

    .banner-slider-wrapper .slider-dot {
        background: rgba(255, 255, 255, 0.4);
        border: none;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition-smooth);
    }

        .banner-slider-wrapper .slider-dot:hover {
            background: rgba(197, 165, 114, 0.8);
            transform: scale(1.2);
        }

        .banner-slider-wrapper .slider-dot.active {
            background: var(--primary-gold) !important;
            width: 30px !important;
            border-radius: 6px !important;
            border: none !important;
        }

@media (max-width: 768px) {
    .banner-section {
        height: 60vh;
        min-height: 350px;
    }

    .banner-slider-wrapper {
        padding-bottom: 10px !important;
    }

        .banner-slider-wrapper .slide .container {
            margin-left: 3vw !important;
            padding: 1.25rem 1.5rem !important;
        }
}

/* ===== WHATSAPP ===== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fa-whatsapp {
    font-size: 48px !important;
}

.whatsapp-btn {
    background-color: var(--wa-green);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        color: #fff;
    }

.whatsapp-label {
    position: absolute;
    bottom: 75px;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

    .whatsapp-label::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

.whatsapp-container:hover .whatsapp-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

.whatsapp-ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    border-radius: 50%;
    z-index: 1;
    animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }
}

/* ===== BIO TOGGLE ===== */
.bio-clickable {
    transition: opacity 0.2s ease;
}

    .bio-clickable:hover img {
        opacity: 0.85;
        transition: opacity 0.2s ease;
    }

.bio-toggle-hidden {
    display: none !important;
}

/* ===== SCHOLARSHIP PAGE UTILITIES ===== */
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ===== SCHOLARSHIP PAGE REDESIGN ===== */

.sc-page {
    font-family: 'DM Sans', sans-serif;
}

.sc-ribbon {
    background: linear-gradient(100deg, #1a2b5c 0%, #0f1a3a 55%, #8B1538 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

    .sc-ribbon::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.sc-ribbon__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-ribbon__stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 2.5rem;
    position: relative;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

    .sc-ribbon__stat + .sc-ribbon__stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,.12);
    }

.sc-ribbon__icon {
    width: 44px;
    height: 44px;
    background: rgba(197,165,114,.18);
    border: 1px solid rgba(197,165,114,.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A572;
    font-size: .95rem;
    flex-shrink: 0;
}

.sc-ribbon__num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sc-ribbon__lbl {
    display: block;
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

.sc-content-wrap {
/*    background: #f7f8fc;*/
    padding: 80px 0 60px;
}

.sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8B1538;
    margin-bottom: .6rem;
}

    .sc-eyebrow i {
        font-size: .65rem !important;
    }

.sc-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a2b5c;
    line-height: 1.15;
    margin-bottom: .6rem;
    letter-spacing: -.01em;
}

.sc-subhead {
    font-size: .97rem;
    color: #64748b;
    max-width: 560px;
}

.sc-rule {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #C5A572, #8B1538);
    border-radius: 3px;
    margin: 1rem 0 2.5rem;
}

.hmg-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,43,92,.10);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    margin-bottom: 0;
    transition: box-shadow .35s ease;
}

    .hmg-card:hover {
        box-shadow: 0 8px 12px rgba(0,0,0,.06), 0 30px 80px rgba(26,43,92,.16);
    }

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

.hmg-card__side {
    background: linear-gradient(175deg, #1a2b5c 0%, #0d1a3f 100%);
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .hmg-card__side::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(197,165,114,.15) 0%, transparent 70%);
        border-radius: 50%;
    }

.hmg-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(197,165,114,.15);
    border: 1.5px solid rgba(197,165,114,.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A572;
    font-size: 1.3rem;
}

.hmg-fund-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

    .hmg-fund-label span {
        display: block;
        font-size: .8rem;
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
        color: rgba(255,255,255,.55);
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: .15rem;
    }

.hmg-tags {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hmg-tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: .4rem .85rem;
    border-radius: 50px;
}

    .hmg-tag i {
        color: #C5A572;
        font-size: .65rem !important;
    }

.hmg-card__body {
    padding: 2.5rem 2.75rem;
    background: #fff;
}

@media(max-width:600px) {
    .hmg-card__body {
        padding: 1.75rem 1.5rem;
    }
}

.hmg-lead {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.hmg-section-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a2b5c;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .hmg-section-title::before {
        content: '';
        display: inline-block;
        width: 18px;
        height: 2px;
        background: #C5A572;
        border-radius: 2px;
    }

.hmg-body-text {
    font-size: .94rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.hmg-aims {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem .75rem;
    margin: .5rem 0 1.5rem;
    padding: 0;
    list-style: none;
}

@media(max-width:520px) {
    .hmg-aims {
        grid-template-columns: 1fr;
    }
}

.hmg-aims li {
    font-size: .87rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    background: #f7f8fc;
    border-radius: 8px;
}

    .hmg-aims li i {
        color: #0B7285;
        font-size: .75rem !important;
        flex-shrink: 0;
    }

.hmg-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.4rem;
    background: linear-gradient(135deg, #eef6fb 0%, #e8f4f8 100%);
    border-left: 4px solid #0B7285;
    border-radius: 0 10px 10px 0;
    margin-top: 1.25rem;
}

    .hmg-callout i {
        color: #0B7285;
        font-size: 1.1rem !important;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hmg-callout p {
        font-size: .9rem;
        color: #374151;
        margin: 0;
        line-height: 1.7;
        font-style: italic;
    }

.sc-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

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

.sc-supp-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 8px 24px rgba(26,43,92,.07);
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

    .sc-supp-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1a2b5c, #C5A572);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .sc-supp-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 20px 50px rgba(26,43,92,.13);
    }

        .sc-supp-card:hover::before {
            transform: scaleX(1);
        }

.sc-supp-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(26,43,92,.05);
    line-height: 1;
    user-select: none;
}

.sc-supp-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.sc-supp-icon--navy {
    background: rgba(26,43,92,.1);
    color: #1a2b5c;
}

.sc-supp-icon--teal {
    background: rgba(11,114,133,.1);
    color: #0B7285;
}

.sc-supp-icon--burg {
    background: rgba(139,21,56,.1);
    color: #8B1538;
}

.sc-supp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2b5c;
    margin-bottom: .6rem;
}

.sc-supp-card p {
    font-size: .88rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 1.1rem;
    flex: 1;
}

.sc-supp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: .9rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

    .sc-supp-list li {
        font-size: .82rem;
        color: #475569;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .sc-supp-list li i {
            color: #0B7285;
            font-size: .7rem !important;
            flex-shrink: 0;
        }

.sc-funding-section {
    background: #fff;
    padding: 80px 0 70px;
}

.sc-fund-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.sc-fund-tile {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 12px 40px rgba(26,43,92,.09);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .sc-fund-tile:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0,0,0,.07), 0 24px 60px rgba(26,43,92,.14);
    }

.sc-fund-tile__header {
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.sc-fund-tile__header--navy {
    background: linear-gradient(135deg, #1a2b5c 0%, #0d1a3f 100%);
}

.sc-fund-tile__header--burg {
    background: linear-gradient(135deg, #8B1538 0%, #5a0d23 100%);
}

.sc-fund-tile__header::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.sc-fund-tile__hicon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A572;
    font-size: 1.1rem;
}

.sc-fund-tile__htitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .25rem;
}

.sc-fund-tile__htags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .5rem;
}

.sc-fund-tile__htag {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: .2rem .65rem;
    border-radius: 50px;
    letter-spacing: .04em;
}

.sc-fund-tile__body {
    background: #fff;
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sc-fund-tile__text {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.sc-fund-tile__callout {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .9rem 1.1rem;
    border-radius: 10px;
    margin-top: .25rem;
}

.sc-fund-tile__callout--blue {
    background: #eef6fb;
    border-left: 3px solid #0B7285;
}

.sc-fund-tile__callout--gold {
    background: #fdf8ef;
    border-left: 3px solid #C5A572;
}

.sc-fund-tile__callout i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: .85rem !important;
}

.sc-fund-tile__callout--blue i {
    color: #0B7285;
}

.sc-fund-tile__callout--gold i {
    color: #C5A572;
}

.sc-fund-tile__callout p {
    font-size: .83rem;
    color: #374151;
    margin: 0;
    line-height: 1.7;
    font-style: italic;
}

.sc-apply-banner {
    background: linear-gradient(110deg, #1a2b5c 0%, #0f1a3a 50%, #8B1538 100%);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

    .sc-apply-banner::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(197,165,114,.12) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

    .sc-apply-banner::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: 10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
        border-radius: 50%;
        pointer-events: none;
    }

.sc-apply-banner__text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
}

.sc-apply-banner__text p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    margin: 0;
    max-width: 460px;
    line-height: 1.7;
}

.sc-apply-banner__btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.sc-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #C5A572;
    color: #0f1a3a;
    font-weight: 700;
    font-size: .88rem;
    padding: .8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #C5A572;
    transition: all .3s ease;
    letter-spacing: .02em;
}

    .sc-btn-gold:hover {
        background: #d4bb8a;
        border-color: #d4bb8a;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(197,165,114,.4);
        color: #0f1a3a;
    }

.sc-btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    padding: .8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.35);
    transition: all .3s ease;
}

    .sc-btn-outline-w:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.7);
        color: #fff;
        transform: translateY(-2px);
    }

@media(max-width:640px) {
    .sc-apply-banner {
        padding: 2rem 1.75rem;
    }

    .sc-apply-banner__text h3 {
        font-size: 1.35rem;
    }

    .sc-apply-banner__btns {
        width: 100%;
    }

    .sc-btn-gold, .sc-btn-outline-w {
        flex: 1;
        justify-content: center;
    }
}

/* ===== BRAND PANELS ===== */
.brand-panel {
    display: none;
    position: relative;
    margin-top: 12px;
    padding: 40px 0 0px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

    .brand-panel.show {
        display: block;
    }

.brand-panel-mu {
    border-color: #0099CC;
}

.brand-panel-mc {
    border-color: #077589;
}

.brand-panel-hma {
    border-color: #363791;
}

.brand-panel-close {
    position: absolute;
    top: 12px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 14px;
    border-radius: 20px;
    border: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: opacity 0.2s, transform 0.2s;
}

    .brand-panel-close:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }

.brand-panel-mu > .brand-panel-close {
    background: #0099CC;
}

.brand-panel-mc > .brand-panel-close {
    background: #077589;
}

.brand-panel-hma > .brand-panel-close {
    background: #363791;
}

@media (max-width: 991px) {
    .four-col-banner {
        flex-direction: column;
        height: auto;
        gap: 0;
    }

    .banner-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 12px;
    }

        .banner-wrap .banner-item {
            width: 100%;
            height: auto;
            min-height: 0;
            flex: none;
            position: relative;
        }

        .banner-wrap .banner-overlay {
            position: relative;
            width: 100%;
            height: auto;
            padding: 28px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .banner-wrap .banner-content {
            max-width: 100%;
        }

            .banner-wrap .banner-content p,
            .banner-wrap .banner-link {
                opacity: 1 !important;
                max-height: none !important;
                overflow: visible !important;
            }

        .banner-wrap .banner-link {
            margin-top: 12px;
            display: inline-block;
        }

    .banner-item:hover, .banner-item:not(:hover) {
        flex: none;
    }

        .banner-item:hover .banner-overlay {
            background: inherit !important;
        }

        .banner-item:hover::before {
            transform: none;
        }

    .brand-panel {
        display: none !important;
    }

    .brand-panel-mobile {
        display: none;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        padding: 28px 16px 24px;
        background: #f8f9fa;
        border-left: 5px solid;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        box-sizing: border-box;
    }

        .brand-panel-mobile.show {
            display: block;
        }

        .brand-panel-mobile.brand-panel-mu {
            border-color: #0099CC;
        }

        .brand-panel-mobile.brand-panel-mc {
            border-color: #077589;
        }

        .brand-panel-mobile.brand-panel-hma {
            border-color: #363791;
        }

        .brand-panel-mobile .container,
        .brand-panel-mobile .row,
        .brand-panel-mobile .col-lg-2,
        .brand-panel-mobile .col-lg-8 {
            max-width: 100% !important;
            width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            flex: none !important;
        }

        .brand-panel-mobile .stats-product-university-bar,
        .brand-panel-mobile .stats-product-college-bar,
        .brand-panel-mobile .training-callout,
        .brand-panel-mobile .feature-highlights,
        .brand-panel-mobile .feature-box,
        .brand-panel-mobile table,
        .brand-panel-mobile img {
            max-width: 100% !important;
            width: 100% !important;
            overflow-x: hidden !important;
            box-sizing: border-box !important;
        }

        .brand-panel-mobile .col-md-3,
        .brand-panel-mobile .col-md-6 {
            width: 100% !important;
            max-width: 100% !important;
            flex: none !important;
        }
}

@media (min-width: 992px) {
    .banner-wrap {
        flex: 1;
        display: contents;
    }

    .brand-panel-mobile {
        display: none !important;
    }
}

.training-callout--university {
    background: linear-gradient(135deg, rgba(0, 153, 204, 1) 0%, rgba(0, 153, 204, 1) 100%);
}

.training-callout--college {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
}

/* ===== COURSE ACCORDION (global fallback) ===== */
.course-content-accordion {
    margin-top: 0;
}

.course-accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(26, 43, 92, 0.08);
    transition: box-shadow 0.3s ease;
}

    .course-accordion-item:hover {
        box-shadow: 0 4px 18px rgba(26, 43, 92, 0.13);
    }

.course-accordion-btn {
    background: #fff;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 18px 24px;
    border: none;
    border-left: 4px solid transparent;
    border-radius: 10px 10px 0 0 !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0;
}

    .course-accordion-btn i {
        color: var(--primary-burgundy);
        font-size: 15px !important;
        font-weight: 900 !important;
        width: 22px;
        flex-shrink: 0;
    }

    .course-accordion-btn:not(.collapsed) {
        background: linear-gradient(135deg, var(--primary-navy) 0%, #243870 100%);
        color: #fff;
        border-left-color: var(--primary-gold);
        box-shadow: none;
    }

        .course-accordion-btn:not(.collapsed) i {
            color: var(--primary-gold) !important;
        }

    .course-accordion-btn::after {
        margin-left: auto;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2b5c'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        transition: transform 0.3s ease;
        flex-shrink: 0;
        width: 1.1rem;
        height: 1.1rem;
    }

    .course-accordion-btn:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        transform: rotate(-180deg);
    }

    .course-accordion-btn:focus {
        box-shadow: none;
        outline: none;
    }

.course-accordion-body {
    padding: 0;
    background: #fff;
}

.course-accordion-item .accordion-collapse.collapse:not(.show) ~ * {
    border-radius: 0 0 10px 10px;
}

.course-accordion-item:has(.accordion-collapse.show) {
    border-left: 4px solid var(--primary-gold);
    border-radius: 10px !important;
}

.course-accordion-body .content-card {
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid #f0f0f0;
}

.course-accordion .accordion-collapse {
    transition: all 0.35s ease;
}

@media (max-width: 767.98px) {
    .course-accordion-btn {
        font-size: 14px;
        padding: 15px 16px;
    }

    .course-accordion-body .content-card {
        padding: 20px 16px;
    }

    .course-accordion-item {
        margin-bottom: 8px;
    }
}

/* ============================================
   TVET SPECIFIC STYLES (added from tvet.html)
   No duplicate selectors found, safely appended.
============================================ */

/* Main course section redesign */
.course-details-section {
    --ms-navy: #0d1b3e;
    --ms-navy-2: #1a2b5c;
    --ms-gold: #C5A572;
    --ms-gold-soft: #e7d4a8;
    --ms-teal: #00D9C0;
    --ms-teal-deep: #0AA89A;
    --ms-coral: #FF5C8A;
    --ms-ink: #15233f;
    --ms-ink-soft: #5b6a86;
    --ms-line: rgba(13,27,62,0.08);
    --ms-bg: #f6f8fc;
    background: radial-gradient(1200px 600px at 90% -10%, rgba(0,217,192,0.08), transparent 60%), radial-gradient(900px 500px at -10% 30%, rgba(255,92,138,0.05), transparent 55%), linear-gradient(180deg, #f6f8fc 0%, #ffffff 60%, #f6f8fc 100%);
    position: relative;
}

    .course-details-section,
    .course-details-section *:not(i):not(.fas):not(.far):not(.fab) {
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

        .course-details-section .program-layout {
            display: flex;
            align-items: flex-start;
            gap: 36px;
            position: relative;
        }

        .course-details-section .program-main {
            flex: 1;
            min-width: 0;
        }

.sidenav-cta {
    padding: 16px 20px 20px;
    margin-top: 4px;
}

.sidenav-cta-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background: linear-gradient(135deg, #C5A572, #a8854f);
    color: #0d1b3e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(197,165,114,0.3);
    font-family: 'DM Sans', sans-serif;
}

    .sidenav-cta-btn:hover {
        background: linear-gradient(135deg, #d4b885, #C5A572);
        box-shadow: 0 6px 20px rgba(197,165,114,0.45);
        transform: translateY(-1px);
        color: #0d1b3e;
    }

.course-details-section .course-accordion-item {
    position: relative;
    background: #fff;
    border: 1px solid var(--ms-line) !important;
    border-radius: 18px !important;
    margin-bottom: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px -8px rgba(13,27,62,0.10) !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .25s !important;
}

    .course-details-section .course-accordion-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 50px -20px rgba(13,27,62,0.22) !important;
        border-color: rgba(0,217,192,0.35) !important;
    }

    .course-details-section .course-accordion-item:has(.accordion-collapse.show) {
        box-shadow: 0 24px 60px -22px rgba(13,27,62,0.25) !important;
    }

        .course-details-section .course-accordion-item:has(.accordion-collapse.show)::before {
            opacity: 1;
        }

.course-details-section .course-accordion-btn {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 24px 28px !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--ms-navy) !important;
    position: relative;
    transition: background .3s, color .3s;
}

    .course-details-section .course-accordion-btn:not(.collapsed) {
        background: linear-gradient(135deg, rgba(0,217,192,0.06), rgba(13,27,62,0.04)) !important;
    }

    .course-details-section .course-accordion-btn:focus {
        outline: none !important;
    }

    .course-details-section .course-accordion-btn .acc-section-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, #f4f7fb, #e6ecf5);
        border: 1px solid rgba(13,27,62,0.07);
        flex-shrink: 0;
        transition: all .35s cubic-bezier(.4,0,.2,1);
        position: relative;
        overflow: hidden;
    }

        .course-details-section .course-accordion-btn .acc-section-icon::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--ms-teal), var(--ms-teal-deep));
            opacity: 0;
            transition: opacity .35s;
        }

        .course-details-section .course-accordion-btn .acc-section-icon i {
            position: relative;
            font-size: 22px !important;
            color: var(--ms-navy) !important;
            transition: color .35s, transform .35s;
            z-index: 1;
        }

    .course-details-section .course-accordion-btn:not(.collapsed) .acc-section-icon::before {
        opacity: 1;
    }

    .course-details-section .course-accordion-btn:not(.collapsed) .acc-section-icon {
        border-color: transparent;
        box-shadow: 0 12px 26px -10px rgba(0,217,192,0.6);
        transform: rotate(-4deg) scale(1.05);
    }

        .course-details-section .course-accordion-btn:not(.collapsed) .acc-section-icon i {
            color: #fff !important;
        }

    .course-details-section .course-accordion-btn.collapsed:hover .acc-section-icon {
        background: linear-gradient(135deg, #e9f5f3, #d6efeb);
        border-color: rgba(0,217,192,0.4);
    }

        .course-details-section .course-accordion-btn.collapsed:hover .acc-section-icon i {
            color: var(--ms-teal-deep) !important;
        }

.course-details-section .acc-section-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}

.course-details-section .acc-section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ms-navy);
    letter-spacing: -0.4px;
    transition: color .3s;
}

.course-details-section .course-accordion-btn:not(.collapsed) .acc-section-title {
    color: var(--ms-navy);
    background: linear-gradient(135deg, var(--ms-navy), var(--ms-teal-deep));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-details-section .acc-section-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--ms-ink-soft);
    line-height: 1.35;
    opacity: 0.95;
}

.course-details-section .acc-pm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4f7fb;
    border: 1.5px solid rgba(13,27,62,0.1);
    margin-left: auto;
    flex-shrink: 0;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
}

    .course-details-section .acc-pm-icon::before,
    .course-details-section .acc-pm-icon::after {
        content: '';
        position: absolute;
        background: var(--ms-navy);
        border-radius: 2px;
        transition: all .35s cubic-bezier(.4,0,.2,1);
    }

    .course-details-section .acc-pm-icon::before {
        width: 14px;
        height: 2px;
    }

    .course-details-section .acc-pm-icon::after {
        width: 2px;
        height: 14px;
        transform: scaleY(1);
    }

.course-details-section .course-accordion-btn:not(.collapsed) .acc-pm-icon {
    background: linear-gradient(135deg, var(--ms-teal), var(--ms-teal-deep));
    border-color: transparent;
    box-shadow: 0 8px 18px -6px rgba(0,217,192,0.6);
    transform: rotate(180deg);
}

    .course-details-section .course-accordion-btn:not(.collapsed) .acc-pm-icon::before,
    .course-details-section .course-accordion-btn:not(.collapsed) .acc-pm-icon::after {
        background: #fff;
    }

    .course-details-section .course-accordion-btn:not(.collapsed) .acc-pm-icon::after {
        transform: scaleY(0);
    }

.course-details-section .course-accordion-btn.collapsed:hover .acc-pm-icon {
    border-color: var(--ms-teal);
    background: rgba(0,217,192,0.1);
}

.course-details-section .course-accordion-body {
    padding: 8px 32px 32px !important;
    background: #fff;
}

@keyframes msFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.course-details-section .course-accordion-item {
    animation: msFadeUp .55s cubic-bezier(.4,0,.2,1) both;
}

    .course-details-section .course-accordion-item:nth-child(1) {
        animation-delay: .05s;
    }

    .course-details-section .course-accordion-item:nth-child(2) {
        animation-delay: .12s;
    }

    .course-details-section .course-accordion-item:nth-child(3) {
        animation-delay: .19s;
    }

    .course-details-section .course-accordion-item:nth-child(4) {
        animation-delay: .26s;
    }

    .course-details-section .course-accordion-item:nth-child(5) {
        animation-delay: .33s;
    }

@media (max-width: 1199px) {
    .course-details-section .course-title {
        font-size: 28px;
    }

    .course-details-section .acc-section-title {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .course-details-section .program-layout {
        flex-direction: column;
        gap: 0;
    }

    .course-details-section .course-header-card {
        padding: 32px 26px;
    }

    .course-details-section .course-title {
        font-size: 24px;
    }

    .course-details-section .info-item + .info-item::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .course-details-section .course-accordion-btn {
        padding: 18px 18px !important;
        gap: 14px !important;
    }

        .course-details-section .course-accordion-btn .acc-section-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
        }

            .course-details-section .course-accordion-btn .acc-section-icon i {
                font-size: 18px !important;
            }

    .course-details-section .acc-section-title {
        font-size: 19px;
    }

    .course-details-section .acc-section-subtitle {
        font-size: 12px;
    }

    .course-details-section .acc-pm-icon {
        width: 32px;
        height: 32px;
    }

    .course-details-section .course-accordion-body {
        padding: 4px 18px 22px !important;
    }
}

/* Course table, career cards, programme sidebar (TVET) */
.course-details-table th {
    background: #f0f4fa;
    color: #1a2b5c;
    font-weight: 600;
    width: 40%;
    vertical-align: middle;
}

.course-details-table td {
    vertical-align: middle;
    color: #444;
}

.career-card {
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a2b5c;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

    .career-card:hover {
        background: #fff;
        box-shadow: 0 6px 24px rgba(0,0,0,0.10);
        transform: translateY(-3px);
    }

.career-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a2b5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.career-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2b5c;
    margin-bottom: 8px;
}

.career-card p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.course-code {
    letter-spacing: 0.02em;
}

.prog-sidebar-wrap {
    margin-top: 38px;
}

.prog-sidebar-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(26,43,92,0.09);
    overflow: hidden;
    border: 1px solid #e8edf5;
}

.prog-sidebar-header {
    padding: 11px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
}

    .prog-sidebar-header i {
        font-size: 0.85rem !important;
    }

.prog-header-university {
    background: linear-gradient(135deg, #1a2b5c, #2d4080);
}

.prog-header-college {
    background: linear-gradient(135deg, #077589, #0a9cb3);
}

.prog-header-aerospace {
    background: linear-gradient(135deg, #363791, #5253c0);
}

.prog-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 6px 0 8px;
}

.prog-sidebar-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aab4cc;
    padding: 8px 16px 3px;
    margin-top: 2px;
}

.prog-sidebar-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 16px;
    font-size: 0.84rem;
    color: #3a4560;
    text-decoration: none;
    line-height: 1.45;
    transition: background 0.2s, color 0.2s, border-left 0.2s;
    border-left: 3px solid transparent;
    position: relative;
}

    .prog-sidebar-link i {
        font-size: 0.6rem !important;
        color: #b0bbcc;
        margin-top: 5px;
        flex-shrink: 0;
        transition: color 0.2s;
    }

    .prog-sidebar-link:hover {
        background: #f0f4fb;
        color: #1a2b5c;
        border-left-color: #c5a572;
    }

        .prog-sidebar-link:hover i {
            color: #c5a572;
        }

    .prog-sidebar-link.prog-active {
        background: linear-gradient(to right, rgba(26,43,92,0.06), rgba(26,43,92,0.02));
        color: #1a2b5c;
        font-weight: 700;
        border-left: 3px solid #8b1538;
    }

        .prog-sidebar-link.prog-active i {
            color: #8b1538;
        }

.prog-active-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #8b1538;
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
    text-transform: uppercase;
    align-self: center;
}

.prog-sidebar-enquiry {
    background: linear-gradient(135deg, #1a2b5c 0%, #2a3f70 100%);
    border-radius: 10px;
    padding: 24px 20px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26,43,92,0.18);
}

.prog-enquiry-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197,165,114,0.2);
    border: 2px solid rgba(197,165,114,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

    .prog-enquiry-icon i {
        font-size: 1.3rem !important;
        color: #c5a572;
    }

.prog-sidebar-enquiry h5 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.prog-sidebar-enquiry p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
    margin-bottom: 14px;
}

.prog-enquiry-btn, .prog-browse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.prog-enquiry-btn {
    background: #8b1538;
    color: #fff;
    border: 2px solid #8b1538;
}

    .prog-enquiry-btn:hover {
        background: #a81a44;
        border-color: #a81a44;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(139,21,56,0.35);
    }

.prog-browse-btn {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 2px solid rgba(255,255,255,0.25);
}

    .prog-browse-btn:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: #fff;
    }

@media (max-width: 991px) {
    .prog-sidebar-wrap {
        margin-top: 2rem;
    }
}
