﻿/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
}

a {
    cursor: pointer;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 15px;
}

.narrow-container {
    max-width: 900px !important;
}

.section {
    padding: 64px 0;
}

.section-label {
    color: #9f1f12;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-size: 34px;
    line-height: 1.1;
    margin: 10px 0 18px;
}

.section-heading {
    font-size: 32px;
    line-height: 1.1;
    margin: 8px 0 12px;
}

.section-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}

.center-text {
    max-width: 540px;
    margin: 0 auto 34px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.custom-red-btn,
.ui.red.button {
    background: #9f1f12 !important;
    color: #fff !important;
    border-radius: 2px !important;
}

/* =========================================================
   TOPBAR
========================================================= */

.site-topbar {
    background: #0f2634;
    color: #fff;
    font-size: 13px;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

    .topbar-left span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-left i {
        color: #fff;
        margin: 0 !important;
    }

.topbar-right {
    margin-left: auto;
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: #fff;
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
    overflow: visible;
}

    .site-header .site-container {
        position: relative;
    }

.site-nav {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

    .site-logo img {
        width: 44px;
        height: 44px;
        object-fit: contain;
    }

.site-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 600;
}

    .site-menu a {
        color: #111;
    }

        .site-menu a:hover {
            color: #9f1f12;
        }

.application-btn {
    background: #9f1f12;
    color: #fff !important;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 700;
}

    .application-btn:hover {
        background: #84190f;
        color: #fff !important;
    }

.site-menu-toggle {
    display: none !important;
}

/* =========================================================
   MOBILE MENU
   Fixed: opens below navbar, not in middle of screen
========================================================= */

.site-mobile-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    width: auto;
    background: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    z-index: 99999;
    margin: 0 !important;
    transform: none !important;
}

    .site-mobile-menu a {
        display: block;
        width: 100%;
        color: #111;
        padding: 14px 18px;
        border-bottom: 1px solid #eeeeee;
        font-size: 14px;
        line-height: 1.3;
        text-decoration: none;
        background: #fff;
    }

        .site-mobile-menu a:hover {
            background: #f7f7f7;
            color: #9f1f12;
        }

        .site-mobile-menu a:last-child {
            background: #9f1f12;
            color: #fff;
            font-weight: 700;
            border-bottom: none;
        }

            .site-mobile-menu a:last-child:hover {
                background: #84190f;
                color: #fff;
            }

/* =========================================================
   HERO IMAGE SLIDER
========================================================= */

.hero-slider {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: #0f2634;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 1400ms ease;
    z-index: 1;
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }

.hero-slider-content {
    position: relative;
    z-index: 3;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-small-title {
    display: inline-block;
    color: #fff;
    background: rgba(159, 31, 18, 0.95);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

.hero-content h1 {
    max-width: 620px;
    color: #fff;
    font-size: 54px;
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 700;
}

.hero-content p {
    max-width: 560px;
    color: #f0f4f6;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-primary-btn {
    background: #9f1f12 !important;
    color: #fff !important;
    border-radius: 2px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
}

.hero-secondary-btn {
    border-radius: 2px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #0f2634;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .hero-arrow:hover {
        background: #9f1f12;
        color: #fff;
    }

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

    .hero-dots button {
        width: 11px;
        height: 11px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.65);
        cursor: pointer;
        padding: 0;
    }

        .hero-dots button.active {
            background: #9f1f12;
        }
/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.image-frame {
    padding: 16px;
}

.blue-frame {
    border: 8px solid #0f2634;
}

.red-frame {
    border: 8px solid #9f1f12;
}

/* =========================================================
   COURSES SECTION - SLIDER
========================================================= */

.courses-section {
    background: #263f50;
    padding: 64px 0 82px;
    overflow: hidden;
}

.courses-header-grid {
    margin-bottom: 24px !important;
}

.white-title {
    color: #fff;
    font-size: 34px;
    line-height: 1.1;
    margin: 8px 0 10px;
}

.light-label {
    color: #fff;
}

.light-text {
    color: #d9e1e6;
    font-size: 14px;
    line-height: 1.7;
    max-width: 560px;
}

.courses-arrow-column {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    gap: 8px;
}

.course-slider-arrow {
    width: 34px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.75);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .course-slider-arrow:hover {
        background: #9f1f12;
        border-color: #9f1f12;
    }

.course-slider-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.course-slider-track {
    display: flex;
    gap: 22px;
    transition: transform 500ms ease;
    will-change: transform;
}

.course-slide-card {
    flex: 0 0 calc((100% - 66px) / 4);
    min-height: 330px;
    background: #fff;
    padding: 26px 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

    .course-slide-card .course-icon {
        width: 48px;
        height: 48px;
        background: #0f2634;
        color: #fff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        font-size: 18px;
    }

    .course-slide-card h3 {
        font-size: 17px;
        line-height: 1.25;
        margin: 0 0 12px;
    }

        .course-slide-card h3 a {
            color: #111;
        }

            .course-slide-card h3 a:hover {
                color: #9f1f12;
            }

    .course-slide-card p {
        font-size: 13px;
        color: #555;
        line-height: 1.65;
        margin: 0;
    }

/* =========================================================
   ADMISSION HIGHLIGHT
========================================================= */

.admission-highlight-section {
    padding-bottom: 30px;
}

.admission-card {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.admission-img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
}

.admission-red {
    background: #9f1f12;
    color: #fff;
    padding: 42px !important;
}

    .admission-red span {
        color: #ffd8d2;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .admission-red h2 {
        font-size: 28px;
        line-height: 1.1;
        margin: 10px 0 16px;
    }

    .admission-red p {
        color: #f4dfdc;
        font-size: 14px;
        line-height: 1.7;
    }

    .admission-red a {
        color: #fff;
        font-weight: 700;
        border-bottom: 1px solid #fff;
    }

/* =========================================================
   EVENTS
========================================================= */

.bottom-events-section {
    background: #f5f1ed;
    padding: 58px 0 72px;
}

.left-title {
    text-align: left;
    margin-bottom: 28px;
}

.event-row {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

.event-date {
    width: 52px;
    height: 58px;
    background: #0f2634;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .event-date strong {
        font-size: 13px;
    }

    .event-date span {
        font-size: 10px;
    }

.event-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.event-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}

.event-content a {
    color: #9f1f12;
    font-size: 12px;
    font-weight: 700;
}

.course-highlight {
    background: #0f2634;
    color: #fff;
    padding: 20px;
    text-align: center;
}

    .course-highlight img {
        width: 100%;
        height: 145px;
        object-fit: cover;
        margin-bottom: 18px;
    }

.course-name {
    background: #000;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* =========================================================
   FIND COURSE + STATS
========================================================= */

.find-course-section {
    padding: 20px 0 72px;
}

.course-search-box {
    background: #f7f3ef;
    padding: 30px;
}

    .course-search-box h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

.course-input {
    width: 100%;
    height: 38px;
    border: 1px solid #ccc;
    padding: 0 12px;
}

.stats-grid {
    height: 100%;
    margin: 0 !important;
}

.stat {
    min-height: 130px;
    color: #fff;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .stat i {
        width: 34px;
        height: 34px;
        background: #fff;
        color: #111;
        border-radius: 50%;
        display: grid !important;
        place-items: center;
        margin: 0 auto 8px !important;
    }

    .stat h3 {
        font-size: 26px;
        margin: 0;
    }

    .stat p {
        font-size: 12px;
        margin: 0;
    }

.red-stat {
    background: #9f1f12;
}

.blue-stat {
    background: #0f2634;
}

/* =========================================================
   CAMPUS EXPERIENCE
========================================================= */

.campus-experience-section {
    min-height: 420px;
    background: linear-gradient(rgba(15, 38, 52, 0.35), rgba(15, 38, 52, 0.35)), url("/Images/home_card1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    position: absolute;
    left: 42%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0f2634;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    cursor: pointer;
    z-index: 3;
    font-size: 24px;
    display: grid;
    place-items: center;
}

    .play-button:hover {
        background: #9f1f12;
        color: #fff;
    }

.campus-card {
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.16);
    z-index: 3;
}

    .campus-card h3 {
        font-size: 24px;
        margin-bottom: 14px;
        color: #0f2634;
    }

    .campus-card p {
        font-size: 14px;
        line-height: 1.75;
        color: #555;
    }

    .campus-card a {
        color: #9f1f12;
        font-size: 13px;
        font-weight: 700;
    }

/* =========================================================
   NEWS
========================================================= */

.academic-news-section {
    background: #fff;
}

.news-card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

    .news-card img {
        height: 150px !important;
        object-fit: cover;
    }

    .news-card h3 {
        font-size: 16px;
        line-height: 1.35;
    }

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-banner {
    height: 170px;
    background: linear-gradient(rgba(15, 38, 52, 0.82), rgba(15, 38, 52, 0.82)), url("../Images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}

    .gallery-banner h1 {
        font-size: 34px;
        margin: 0 0 12px;
        color: #fff;
    }

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
}

    .breadcrumb a {
        color: #fff;
    }

.gallery-section {
    background: #fff;
    padding: 70px 0 86px;
}

.gallery-content-container {
    max-width: 850px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    height: 150px;
    overflow: hidden;
    display: block;
    background: #eee;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #0f2634;
    color: #fff;
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.8fr 1.2fr;
    gap: 58px;
    padding-bottom: 70px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
}

    .footer-brand img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
    }

.footer-about p,
.footer-column a,
.footer-contact p {
    font-size: 12px;
    line-height: 1.8;
    color: #d5dee4;
}

.footer-column h3 {
    font-size: 16px;
    margin: 0 0 18px;
    color: #fff;
}

.footer-column a {
    display: block;
    margin-bottom: 11px;
}

    .footer-column a:hover {
        color: #fff;
    }

.footer-contact i {
    color: #9f1f12;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
}

    .footer-social a {
        width: 18px;
        height: 18px;
        background: #fff;
        color: #0f2634;
        display: grid;
        place-items: center;
        font-size: 10px;
        font-weight: 700;
    }

.site-footer-bottom {
    background: #0b1e2a;
    text-align: center;
    padding: 13px 0;
    font-size: 11px;
    color: #fff;
}

/* =========================================================
   APPLICATION MODAL
========================================================= */

.application-modal {
    max-width: 920px !important;
}

    .application-modal .header {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #0f2634 !important;
    }

.application-form label {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #222 !important;
    margin-bottom: 10px !important;
}

.application-form input,
.application-form textarea {
    background: #f7f8fa !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 0 !important;
    min-height: 50px !important;
    font-size: 15px !important;
}

.application-form textarea {
    min-height: 150px !important;
    resize: vertical;
}

.send-message-btn {
    background: #9f1f12 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 15px 34px !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
}


/* =========================================================
   FLOATING CHAT BUTTON
========================================================= */

.chat-button {
    position: fixed;
    right: 52px;
    bottom: 52px;
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 50%;
    background: #00695c;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    z-index: 999;
    cursor: pointer;
    display: grid;
    place-items: center;
}

    .chat-button:hover {
        background: #9f1f12;
        color: #fff;
    }

/* =========================================================
   CHAT MODAL
========================================================= */

.chat-modal {
    max-width: 430px !important;
}

    .chat-modal .header {
        color: #0f2634 !important;
        font-size: 24px !important;
        font-weight: 700 !important;
    }

.chat-modal-intro {
    text-align: center;
    margin-bottom: 22px;
}

    .chat-modal-intro i {
        width: 58px;
        height: 58px;
        background: #0f2634;
        color: #fff;
        border-radius: 50%;
        display: grid !important;
        place-items: center;
        margin: 0 auto 12px !important;
        font-size: 22px !important;
    }

    .chat-modal-intro h3 {
        margin: 0 0 8px;
        font-size: 22px;
        color: #0f2634;
    }

    .chat-modal-intro p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

.chat-form label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222 !important;
}

.chat-form input,
.chat-form textarea {
    border-radius: 0 !important;
    background: #f7f8fa !important;
    border: 1px solid #e1e1e1 !important;
}

.chat-form input {
    min-height: 44px !important;
}

.chat-submit-btn {
    padding: 13px 0 !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
}

@media only screen and (max-width: 600px) {
    .chat-button {
        width: 58px;
        height: 58px;
        right: 24px;
        bottom: 24px;
    }

    .chat-modal {
        width: 94% !important;
        margin: 0 auto !important;
    }
}
/* =========================================================
   RESPONSIVE - TABLET / MOBILE
========================================================= */

@media only screen and (max-width: 991px) {

    .site-container {
        max-width: 92%;
    }

    .site-header {
        min-height: 58px;
        padding: 8px 0;
        position: relative;
        overflow: visible;
    }

    .site-nav {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo img {
        width: 44px;
        height: 44px;
    }

    .site-menu,
    .application-btn {
        display: none !important;
    }

    .site-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        background: #f2f2f2 !important;
        color: #111 !important;
        border-radius: 2px !important;
        box-shadow: none !important;
        width: 42px;
        height: 38px;
        padding: 0 !important;
    }

    .site-mobile-menu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        transform: none !important;
        z-index: 99999 !important;
    }

        .site-mobile-menu.site-mobile-menu-open {
            display: block !important;
        }

    .topbar-inner {
        flex-direction: column;
        gap: 4px;
        justify-content: center;
    }

    .site-topbar {
        height: auto;
        padding: 7px 0;
        text-align: center;
    }

    .hero-section {
        min-height: 280px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title,
    .section-heading,
    .white-title {
        font-size: 28px;
    }

    .arrow-column {
        justify-content: flex-start;
    }

    .campus-card {
        right: 24px;
        width: 300px;
    }

    .play-button {
        left: 30%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* =========================================================
   RESPONSIVE - DESKTOP
========================================================= */

@media only screen and (min-width: 992px) {

    .site-menu {
        display: flex !important;
    }

    .application-btn {
        display: inline-block !important;
    }

    .site-menu-toggle {
        display: none !important;
    }

    .site-mobile-menu,
    .site-mobile-menu.site-mobile-menu-open {
        display: none !important;
    }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media only screen and (max-width: 600px) {

    .topbar-left {
        flex-direction: column;
        gap: 4px;
    }

    .hero-section {
        min-height: 220px;
    }

    .section-title,
    .section-heading,
    .white-title {
        font-size: 25px;
    }

    .admission-red {
        padding: 30px !important;
    }

    .event-row {
        grid-template-columns: 52px 1fr;
    }

    .campus-experience-section {
        min-height: 520px;
    }

    .campus-card {
        left: 24px;
        right: 24px;
        bottom: 28px;
        top: auto;
        transform: none;
        width: auto;
    }

    .play-button {
        left: 50%;
        top: 32%;
    }

    .gallery-banner {
        height: 145px;
    }

        .gallery-banner h1 {
            font-size: 28px;
        }

    .gallery-section {
        padding: 45px 0 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        height: 190px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .application-modal {
        width: 95% !important;
        margin: 0 auto !important;
    }

    .application-form .two.fields {
        display: block !important;
    }

        .application-form .two.fields .field {
            width: 100% !important;
            margin-bottom: 18px !important;
        }

    .send-message-btn {
        width: 100% !important;
    }

    .chat-button {
        width: 58px;
        height: 58px;
        right: 24px;
        bottom: 24px;
    }
}

/* =========================================================
   FINAL MOBILE MENU OVERRIDE
   Keeps menu below navbar, never in page middle
========================================================= */

@media only screen and (max-width: 991px) {
    #siteMobileMenu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 99999 !important;
    }

        #siteMobileMenu.site-mobile-menu-open {
            display: block !important;
        }
}
@media only screen and (max-width: 991px) {

    /* Header should be full width */
    .site-header {
        width: 100%;
        padding: 8px 0;
        background: #fff;
        position: relative;
        z-index: 9999;
        overflow: visible;
    }

        /* Container should not shrink menu area */
        .site-header .site-container {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 18px !important;
            position: relative;
        }

    /* Logo left, hamburger right */
    .site-nav {
        width: 100%;
        min-height: 58px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .site-logo {
        display: inline-flex !important;
        align-items: center;
        justify-content: flex-start;
    }

        .site-logo img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

    /* Hide desktop menu and desktop button */
    .site-menu,
    .header-actions {
        display: none !important;
    }

    /* Show hamburger */
    .site-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 42px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #f2f2f2 !important;
        color: #111 !important;
        border: none !important;
        border-radius: 2px !important;
        box-shadow: none !important;
        font-size: 18px !important;
    }

    /* Full width mobile dropdown */
    #siteMobileMenu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        border-top: 1px solid #eeeeee !important;
        border-bottom: 1px solid #eeeeee !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
        transform: none !important;
        z-index: 99999 !important;
    }

        #siteMobileMenu.site-mobile-menu-open {
            display: block !important;
        }

        #siteMobileMenu a {
            display: block !important;
            width: 100% !important;
            padding: 16px 24px !important;
            color: #111 !important;
            background: #fff !important;
            border-bottom: 1px solid #eeeeee !important;
            font-size: 17px !important;
            line-height: 1.3 !important;
            text-align: left !important;
            text-decoration: none !important;
        }

            #siteMobileMenu a:last-child {
                background: #9f1f12 !important;
                color: #fff !important;
                font-weight: 700 !important;
                border-bottom: none !important;
            }

            #siteMobileMenu a:hover {
                background: #f7f7f7 !important;
                color: #9f1f12 !important;
            }

            #siteMobileMenu a:last-child:hover {
                background: #84190f !important;
                color: #fff !important;
            }
}
@media only screen and (max-width: 991px) {

    .hero-slider,
    .hero-slider-content {
        min-height: 440px;
    }

    .hero-content h1 {
        font-size: 40px;
        max-width: 520px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 500px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 14px;
    }

    .hero-next {
        right: 14px;
    }
}

@media only screen and (max-width: 600px) {

    .hero-slider,
    .hero-slider-content {
        min-height: 430px;
    }

    .hero-content {
        text-align: left;
        padding: 30px 0;
    }

    .hero-small-title {
        font-size: 10px;
        padding: 7px 10px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

        .hero-buttons .button {
            width: 100%;
            text-align: center;
        }

    .hero-arrow {
        display: none;
    }
}
@media only screen and (max-width: 991px) {

    .courses-section {
        padding: 54px 0 70px;
    }

    .courses-arrow-column {
        justify-content: flex-start !important;
        margin-top: 10px;
    }

    .course-slide-card {
        flex: 0 0 calc((100% - 22px) / 2);
        min-height: 330px;
    }
}

@media only screen and (max-width: 600px) {

    .white-title {
        font-size: 28px;
    }

    .course-slide-card {
        flex: 0 0 100%;
        min-height: auto;
    }

    .course-slider-track {
        gap: 16px;
    }
}
/* =========================================================
   COURSE CARD HOVER EFFECT
========================================================= */

.course-slide-card {
    transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

    .course-slide-card:hover {
        background: #9f1f12;
        color: #fff;
        transform: translateY(-6px);
        box-shadow: 0 16px 34px rgba(0,0,0,0.18);
    }

        .course-slide-card:hover h3,
        .course-slide-card:hover h3 a,
        .course-slide-card:hover p {
            color: #fff;
        }

        .course-slide-card:hover .course-icon {
            background: #fff;
            color: #9f1f12;
        }
/* =========================================================
   HEADER ACTION BUTTONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    background: #0f2634;
    color: #fff !important;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

    .login-btn:hover {
        background: #9f1f12;
        color: #fff !important;
    }

/* Keep existing application button consistent */
.application-btn {
    display: inline-block;
}

/* Mobile behavior */
@media only screen and (max-width: 991px) {

    .header-actions {
        display: none !important;
    }

    .site-mobile-menu a:last-child {
        background: #0f2634 !important;
        color: #fff !important;
        font-weight: 700;
    }

        .site-mobile-menu a:last-child:hover {
            background: #9f1f12 !important;
            color: #fff !important;
        }
}

@media only screen and (min-width: 992px) {

    .header-actions {
        display: flex !important;
    }
}
/* =========================================================
   CAMPUS VIDEO MODAL
========================================================= */

.campus-video-modal {
    max-width: 900px !important;
}

    .campus-video-modal .header {
        color: #0f2634 !important;
        font-size: 22px !important;
        font-weight: 700 !important;
    }

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

    .video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
/* =========================================================
   LOGIN MODAL
========================================================= */

.login-modal {
    max-width: 430px !important;
}

    .login-modal .header {
        color: #0f2634 !important;
        font-size: 24px !important;
        font-weight: 700 !important;
    }

.login-modal-form label {
    color: #222 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.login-modal-form input {
    min-height: 46px !important;
    border-radius: 0 !important;
    background: #f7f8fa !important;
    border: 1px solid #e1e1e1 !important;
}

.login-modal-btn {
    padding: 14px 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    margin-top: 10px !important;
}

.login-modal-message {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
}

    .login-modal-message.error {
        color: #9f1f12;
    }

    .login-modal-message.success {
        color: #16833a;
    }

@media only screen and (max-width: 600px) {
    .login-modal {
        width: 94% !important;
        margin: 0 auto !important;
    }
}