

/* =========================================================
   BASE
========================================================= */

.sbamc-header,
.sbamc-header *,
.sbamc-header *::before,
.sbamc-header *::after {
    box-sizing: border-box;
}


.sbamc-header {
    position: relative;
    z-index: 9999;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;

    font-family:
        "Plus Jakarta Sans",
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   COLLEGE HEADER
========================================================= */

.sbamc-header__top {
    width: 100%;
    padding: 30px 110px 15px 110px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 85%,
            #f8fbfd 100%
        );

    border-bottom: 1px solid #e2ebef;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.sbamc-header__container {
    width: min(
        1480px,
        calc(100% - 40px)
    );

    min-height: 132px;

    margin: 0 auto;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    gap: 28px;
}


/* =========================================================
   COLLEGE LOGO
========================================================= */

.sbamc-brand {
    width: 170px;
    height: 100px;

    flex: 0 0 170px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;
}


.sbamc-brand__logo {
    display: block;
    /*margin-left: 100px;*/
    width: 165px;
    height: 100px;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}


/* =========================================================
   COLLEGE INFORMATION
========================================================= */

.sbamc-college-info {
    flex: 1;

    min-width: 0;

    margin: 0;

    padding: 0;
}


/* =========================================================
   MANAGEMENT NAME
========================================================= */

.sbamc-college-info__management {
    margin: 0 0 4px;

    color: #667783;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-style: italic;

    font-weight: 600;

    line-height: 1.2;
}


/* =========================================================
   COLLEGE NAME
========================================================= */

.sbamc-college-info__title {
    width: 100%;

    margin: 0;
    padding: 0;

    color: #193f65;

    font-family:
        "Plus Jakarta Sans",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 35px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.8px;

    text-transform: uppercase;

    white-space: nowrap;
}


/* Keep both title parts on same line */

.sbamc-college-info__title span {
    display: inline;
}


/* =========================================================
   ADDRESS
========================================================= */

.sbamc-college-info__address {
    margin: 7px 0 0;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #647a89;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.3;
}


.sbamc-college-info__address i {
    flex: 0 0 auto;

    color: #079dc8;

    font-size: 11px;
}


/* =========================================================
   REMOVE RIGHT-SIDE ACTION BUTTONS
========================================================= */

.sbamc-header-actions {
    display: none !important;
}


/* =========================================================
   STICKY NAVIGATION
========================================================= */

.sbamc-navigation {
    position: sticky;
    top: 0;
    left: 0;

    z-index: 99999;

    width: 100%;
    min-height: 55px;

    background: rgba(255, 255, 255, 0.94);

    border-top: 1px solid rgba(220, 232, 238, 0.85);
    border-bottom: 1px solid rgba(208, 223, 230, 0.95);

    box-shadow:
        0 4px 20px rgba(20, 65, 90, 0.12);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.sbamc-navigation__container {
    width: min(
        1480px,
        calc(100% - 30px)
    );

    min-height: 55px;

    margin: 0 auto;

    padding: 0 10px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.sbamc-menu {
    width: 100%;

    min-height: 55px;

    margin: 0;
    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 2px;

    list-style: none;
}


.sbamc-menu__item {
    position: relative;

    margin: 0;
    padding: 0;
}


/* =========================================================
   MENU LINK
========================================================= */

.sbamc-menu__link {
    position: relative;

    min-height: 40px;

    margin: 0;

    padding: 7px 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: #164d75;

    background: transparent;

    border: 0;

    border-radius: 8px;

    font-size: 11.5px;

    font-weight: 700;

    line-height: 1.2;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}


.sbamc-menu__link:hover {
    color: #0787b9;

    background:
        linear-gradient(
            135deg,
            #edf8fc,
            #f8fcfd
        );

    transform:
        translateY(-1px);
}


/* =========================================================
   ACTIVE MENU
========================================================= */

.sbamc-menu__link.active {
    color: #0787b9;

    background:
        linear-gradient(
            135deg,
            #edf8fc,
            #f8fcfd
        );
}


.sbamc-menu__link.active::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 3px;

    width: 21px;
    height: 2px;

    transform:
        translateX(-50%);

    background: #08a3cc;

    border-radius: 10px;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.sbamc-menu__dropdown-trigger {
    appearance: none;

    -webkit-appearance: none;
}


.sbamc-menu__dropdown-trigger i {
    font-size: 8px;

    transition:
        transform 0.2s ease;
}


.sbamc-menu__item--dropdown:hover
.sbamc-menu__dropdown-trigger i {
    transform:
        rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.sbamc-dropdown {
    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    z-index: 100000;

    width: 235px;

    margin: 0;

    padding: 6px;

    list-style: none;

    background: #ffffff;

    border:
        1px solid
        #dce9ee;

    border-radius:
        0 0 10px 10px;

    box-shadow:
        0 14px 32px
        rgba(
            20,
            60,
            90,
            0.15
        );

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(6px);

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.sbamc-menu__item--dropdown:hover
.sbamc-dropdown {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


/* =========================================================
   DROPDOWN HOVER BRIDGE
========================================================= */

.sbamc-menu__item--dropdown::after {
    content: "";

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    height: 6px;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sbamc-dropdown li {
    margin: 0;

    padding: 0;
}


.sbamc-dropdown a {
    display: block;

    width: 100%;

    padding: 9px 11px;

    color: #425a6c;

    background: transparent;

    border-radius: 6px;

    font-size: 11.5px;

    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        padding-left 0.18s ease;
}


.sbamc-dropdown a:hover {
    color: #0787b9;

    background: #edf8fc;

    padding-left: 14px;
}


/* =========================================================
   MOBILE BRAND
========================================================= */

.sbamc-mobile-brand {
    display: none;

    align-items: center;

    gap: 8px;
}


.sbamc-mobile-brand img {
    width: 42px;
    height: 36px;

    object-fit: contain;
}


.sbamc-mobile-brand__text {
    display: flex;

    flex-direction: column;
}


.sbamc-mobile-brand__text strong {
    color: #164d75;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;
}


.sbamc-mobile-brand__text small {
    margin-top: 2px;

    color: #718393;

    font-size: 8px;

    line-height: 1.2;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.sbamc-mobile-toggle {
    display: none;

    width: 40px;
    height: 40px;

    margin: 0;
    padding: 0;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 4px;

    background: #edf8fc;

    border:
        1px solid
        #d0e5ed;

    border-radius: 8px;

    cursor: pointer;
}


.sbamc-mobile-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    background: #164d75;

    border-radius: 10px;
}


/* =========================================================
   MOBILE PANEL
========================================================= */

.sbamc-mobile-panel {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 100001;

    width:
        min(
            380px,
            90vw
        );

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    box-shadow:
        -15px 0 40px
        rgba(
            10,
            45,
            70,
            0.20
        );

    transform:
        translateX(105%);

    visibility: hidden;

    transition:
        transform 0.3s ease,
        visibility 0.3s ease;
}


.sbamc-mobile-panel.is-open {
    transform:
        translateX(0);

    visibility: visible;
}


/* =========================================================
   MOBILE PANEL HEADER
========================================================= */

.sbamc-mobile-panel__header {
    min-height: 68px;

    padding: 8px 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            #f6fbfd,
            #ffffff
        );

    border-bottom:
        1px solid
        #e0ebf0;
}


.sbamc-mobile-panel__brand {
    display: flex;

    align-items: center;

    gap: 9px;
}


.sbamc-mobile-panel__brand img {
    width: 50px;
    height: 42px;

    object-fit: contain;
}


.sbamc-mobile-panel__brand strong {
    display: block;

    color: #164d75;

    font-size: 12px;

    font-weight: 800;
}


.sbamc-mobile-panel__brand small {
    display: block;

    margin-top: 2px;

    color: #718393;

    font-size: 9px;
}


/* =========================================================
   MOBILE CLOSE BUTTON
========================================================= */

.sbamc-mobile-close {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #164d75;

    background: #edf8fc;

    border:
        1px solid
        #d5e7ef;

    border-radius: 50%;

    cursor: pointer;
}


.sbamc-mobile-close:hover {
    color: #0787b9;

    background: #dff4fa;
}


/* =========================================================
   MOBILE PANEL BODY
========================================================= */

.sbamc-mobile-panel__body {
    flex: 1;

    min-height: 0;

    padding: 10px;

    overflow-y: auto;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.sbamc-mobile-menu {
    margin: 0;

    padding: 0;

    list-style: none;
}


.sbamc-mobile-menu > li {
    margin: 0 0 3px;

    padding: 0;
}


.sbamc-mobile-menu > li > a,
.sbamc-mobile-menu > li > button {
    width: 100%;

    min-height: 44px;

    padding: 9px 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    color: #294f6d;

    background: transparent;

    border: 0;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;

    text-align: left;

    text-decoration: none;

    cursor: pointer;
}


.sbamc-mobile-menu > li > a:hover,
.sbamc-mobile-menu > li > button:hover {
    color: #0787b9;

    background: #edf8fc;
}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.sbamc-mobile-submenu {
    display: none;

    margin: 2px 5px 5px;

    padding: 4px;

    background: #f6fbfd;

    border:
        1px solid
        #dcebf2;

    border-radius: 8px;
}


.sbamc-mobile-dropdown.is-open
.sbamc-mobile-submenu {
    display: block;
}


.sbamc-mobile-dropdown > button > i {
    font-size: 9px;

    transition:
        transform 0.2s ease;
}


.sbamc-mobile-dropdown.is-open
> button
> i {
    transform:
        rotate(180deg);
}


.sbamc-mobile-submenu a {
    display: block;

    padding: 8px 10px;

    color: #526a7b;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;
}


.sbamc-mobile-submenu a:hover {
    color: #0787b9;

    background: #eaf7fb;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.sbamc-mobile-overlay {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 100000;

    background:
        rgba(
            7,
            29,
            45,
            0.45
        );

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.sbamc-mobile-overlay.is-visible {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {

    .sbamc-header__container {
        width: calc(100% - 30px);

        gap: 20px;

        padding-left: 10px;
        padding-right: 10px;
    }


    .sbamc-brand {
        width: 150px;
        flex-basis: 150px;
    }


    .sbamc-brand__logo {
        width: 145px;
        
    }


    .sbamc-college-info__title {
        font-size: 30px;

        letter-spacing: -0.5px;
    }


    .sbamc-menu__link {
        padding-left: 7px;
        padding-right: 7px;

        font-size: 10.5px;
    }

}


/* =========================================================
   MOBILE HEADER
   LOGO + COLLEGE INFORMATION IN ONE ROW
========================================================= */

@media (max-width: 991px) {
    
    

    /* =====================================================
       HEADER TOP
    ====================================================== */

    .sbamc-header__top {
        width: 100%;

        padding:
            12px 10px 12px;

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #ffffff 85%,
                #f8fbfd 100%
            );

        border-bottom:
            1px solid
            #e2ebef;
    }


    /* =====================================================
       HEADER CONTAINER
    ====================================================== */

    .sbamc-header__container {

        width:
            calc(100% - 10px);

        min-height: auto;

        margin: 0 auto;

        padding: 4px 0;

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: flex-start;

        gap: 10px;
    }


    /* =====================================================
       COLLEGE LOGO
    ====================================================== */

    .sbamc-brand {

        width: 72px;

        height: 72px;

        flex:
            0 0 72px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .sbamc-brand__logo {

        display: block;

        width: 70px;

        height: 70px;

        max-width: 100%;

        max-height: 100%;

        object-fit: contain;
    }


    /* =====================================================
       COLLEGE INFORMATION
    ====================================================== */

    .sbamc-college-info {

        flex: 1;

        width: auto;

        min-width: 0;

        margin: 0;

        padding: 0;

        text-align: left;
    }


    /* =====================================================
       MANAGEMENT NAME
    ====================================================== */

    .sbamc-college-info__management {

        margin:
            0 0 2px;

        color:
            #667783;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size:
            11px;

        font-style: italic;

        font-weight:
            600;

        line-height:
            1.15;
    }


    /* =====================================================
       COLLEGE TITLE
    ====================================================== */

    .sbamc-college-info__title {

        width: 100%;

        margin: 0;

        padding: 0;

        color:
            #193f65;

        font-family:
            "Plus Jakarta Sans",
            Arial,
            Helvetica,
            sans-serif;

        font-size:
            clamp(
                18px,
                5.2vw,
                25px
            );

        font-weight:
            800;

        line-height:
            1.05;

        letter-spacing:
            -0.4px;

        text-transform:
            uppercase;

        white-space:
            normal;

        text-align:
            left;
    }


    /* =====================================================
       TITLE SECOND PART
    ====================================================== */

    .sbamc-college-info__title span {

        display: inline;
    }


    /* =====================================================
       ADDRESS
    ====================================================== */

    .sbamc-college-info__address {

        width: 100%;

        margin:
            5px 0 0;

        padding: 0;

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 5px;

        color:
            #647a89;

        font-size:
            8.5px;

        font-weight:
            500;

        line-height:
            1.25;

        text-align:
            left;
    }


    .sbamc-college-info__address i {

        flex:
            0 0 auto;

        margin-top:
            1px;

        color:
            #079dc8;

        font-size:
            9px;
    }


    .sbamc-college-info__address span {

        display: block;

        min-width: 0;
    }


    /* =====================================================
       DESKTOP MENU
    ====================================================== */

    .sbamc-menu {
        display: none;
    }


    /* =====================================================
       MOBILE NAVBAR
    ====================================================== */

    .sbamc-navigation {
        width: 100%;

        min-height: 54px;

        background:
            rgba(
                255,
                255,
                255,
                0.96
            );

        border-top:
            1px solid
            rgba(220, 232, 238, 0.85);

        border-bottom:
            1px solid
            rgba(208, 223, 230, 0.95);

        box-shadow:
            0 4px 18px
            rgba(20, 65, 90, 0.10);

        backdrop-filter:
            blur(14px);

        -webkit-backdrop-filter:
            blur(14px);
    }


    .sbamc-navigation__container {

        width: 100%;

        min-height: 54px;

        margin: 0;

        padding:
            0 12px;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    /* =====================================================
       MOBILE BRAND
    ====================================================== */

    .sbamc-mobile-brand {

       display: flex;

        align-items: center;

        justify-content: flex-start;

        flex: 1;

        min-width: 0;
    }


    .sbamc-mobile-brand img {

        width:
            42px;

        height:
            36px;

        object-fit:
            contain;
    }


    /* =====================================================
       MOBILE TOGGLE
    ====================================================== */

    .sbamc-mobile-toggle {

         display: flex;

        width:
            40px;

        height:
            40px;

        flex:
            0 0 40px;

        margin-left:
            auto;

        padding: 0;

        align-items:
            center;

        justify-content:
            center;

        flex-direction:
            column;

        gap:
            4px;

        background:
            #edf8fc;

        border:
            1px solid
            #d0e5ed;

        border-radius:
            8px;

        cursor:
            pointer;

        position:
            relative;

        z-index:
            100002;
    }
    
    /* =====================================================
       HAMBURGER LINES
    ====================================================== */

    .sbamc-mobile-toggle span {

        display:
            block;

        width:
            20px;

        height:
            2px;

        background:
            #164d75;

        border-radius:
            10px;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }


    /* =====================================================
       OPEN → CLOSE ICON
    ====================================================== */

    .sbamc-mobile-toggle[aria-expanded="true"]
    span:nth-child(1) {

        transform:
            translateY(6px)
            rotate(45deg);
    }


    .sbamc-mobile-toggle[aria-expanded="true"]
    span:nth-child(2) {

        opacity: 0;
    }


    .sbamc-mobile-toggle[aria-expanded="true"]
    span:nth-child(3) {

        transform:
            translateY(-6px)
            rotate(-45deg);
    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    /* =====================================================
       HEADER TOP
    ====================================================== */

    .sbamc-header__top {

        padding:
            9px 7px 10px;
    }


    /* =====================================================
       HEADER CONTAINER
    ====================================================== */

    .sbamc-header__container {

        width:
            calc(100% - 4px);

        padding:
            3px 0;

        gap:
            7px;
    }


    /* =====================================================
       LOGO
    ====================================================== */

    .sbamc-brand {

        width:
            58px;

        height:
            58px;

        flex:
            0 0 58px;
    }


    .sbamc-brand__logo {

        width:
            56px;

        height:
            56px;
    }


    /* =====================================================
       COLLEGE INFORMATION
    ====================================================== */

    .sbamc-college-info {

        flex:
            1;

        min-width:
            0;
    }


    /* =====================================================
       MANAGEMENT NAME
    ====================================================== */

    .sbamc-college-info__management {

        margin-bottom:
            2px;

        font-size:
            9px;

        line-height:
            1.1;
    }


    /* =====================================================
       COLLEGE NAME
    ====================================================== */

    .sbamc-college-info__title {

        font-size:
            clamp(
                15px,
                5vw,
                21px
            );

        line-height:
            1.06;

        letter-spacing:
            -0.3px;

        white-space:
            normal;
    }


    /* =====================================================
       TITLE SECOND PART
    ====================================================== */

    .sbamc-college-info__title span {

        display:
            inline;
    }


    /* =====================================================
       ADDRESS
    ====================================================== */

    .sbamc-college-info__address {

        margin-top:
            4px;

        gap:
            4px;

        font-size:
            7px;

        line-height:
            1.2;
    }


    .sbamc-college-info__address i {

        font-size:
            8px;
    }


    /* =====================================================
       NAVBAR
    ====================================================== */

    .sbamc-navigation,
    .sbamc-navigation__container {

        min-height:
            52px;
    }


    .sbamc-navigation__container {

        padding:
            0 10px;
    }


    /* =====================================================
       MOBILE TOGGLE
    ====================================================== */

    .sbamc-mobile-toggle {

        width:
            38px;

        height:
            38px;
    }

}