/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    color: #071a35;
    background: #ffffff;

    font-size: 13px;

    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    outline:none !important;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #001f43;
    --navy-dark: #00172f;

    --orange: #f4a000;
    --orange-dark: #df8e00;

    --text: #071a35;
    --muted: #647080;

    --border: #e7eaee;

    --container: 1400px;
}


/* =========================================================
   CONTAINER
========================================================= */

.site-container {

    width: min(
        calc(100% - 72px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    height: 40px;

    background: var(--navy-dark);

    color: #ffffff;

    font-size: 9px;
}

.top-bar-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {

    display: flex;

    align-items: center;

    gap: 9px;
}

.top-bar a {

    display: flex;

    align-items: center;

    gap: 5px;

    color: #ffffff;

    white-space: nowrap;

    opacity: .96;
}

.top-icon {

    font-size: 10px;

    line-height: 1;
}

.top-separator {

    width: 1px;

    height: 13px;

    background: rgba(255,255,255,.25);
}

.social-icon {

    font-size: 10px;

    margin-left: 2px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {

    height: 78px;

    background: #ffffff;

    border-bottom: 1px solid #eceff2;

    position: relative;

    z-index: 100;
}

.header-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/* LOGO */

.site-logo {

    width:auto;
    height:76px;
    flex:0 0 90px;
    display: flex;
    align-items: center;
}

.site-logo img {

    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding-right: 15px;
}

span.site-logo-copy {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    font-size: 1.1em;
}


/* NAVIGATION */

/*.main-navigation {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 21px;
}

.nav-link {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 4px;

    position: relative;

    white-space: nowrap;

    color: #081b33;

    font-size: 9px;

    font-weight: 600;
}

.nav-link.active {

    color: var(--orange-dark);
}

.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 19px;

    height: 2px;

    background: var(--orange);
}

.nav-arrow {

    font-size: 10px;

    margin-top: -2px;
}*/

/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-navigation .nav-dropdown {
    position: relative;
}


/* =========================================================
   TOP LEVEL NAV LINK
========================================================= */

.main-navigation > .nav-dropdown > .nav-link {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 72px;

    padding: 0 13px;

    color: #071b35;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}


.main-navigation > .nav-dropdown > .nav-link:hover,
.main-navigation > .nav-dropdown:focus-within > .nav-link {

    color: #003b70;
}


/* =========================================================
   TOP LEVEL ARROW
========================================================= */

.main-navigation > .nav-dropdown > .nav-link .nav-arrow {

    display: inline-flex;

    margin-left: 3px;

    font-size: 10px;

    transition:
        transform .2s ease;
}


.main-navigation > .nav-dropdown:hover
> .nav-link .nav-arrow,
.main-navigation > .nav-dropdown:focus-within
> .nav-link .nav-arrow {

    transform: rotate(180deg);
}


/* =========================================================
   TOP LEVEL ACTIVE LINE
========================================================= */

.main-navigation > .nav-dropdown > .nav-link::after {

    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 14px;

    height: 2px;

    background: #e99a00;

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform .2s ease;
}


.main-navigation > .nav-dropdown:hover
> .nav-link::after,
.main-navigation > .nav-dropdown:focus-within
> .nav-link::after {

    transform: scaleX(1);
}


/* =========================================================
   LEVEL 1 SUBMENU
========================================================= */

.main-navigation .sub-menu-1 {

    position: absolute;

    top: calc(100% + 8px);
    left: 50%;

    z-index: 10000;

    width: 285px;
    min-width: 285px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 7px;

    box-shadow:
        0 15px 40px rgba(0, 25, 55, .15);

    transform:
        translate(-50%, 8px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


/* =========================================================
   LEVEL 1 SHOW
========================================================= */

.main-navigation .nav-dropdown:hover
> .sub-menu-1,

.main-navigation .nav-dropdown:focus-within
> .sub-menu-1,

.main-navigation .nav-dropdown
> .sub-menu-1:hover {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   LEVEL 1 HOVER BRIDGE
========================================================= */

/*
 * This transparent area fills the small visual gap between
 * the main navigation and level-1 submenu.
 */

.main-navigation > .nav-dropdown::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 100%;

    height: 15px;

    background: transparent;

    z-index: 9999;
}


/* =========================================================
   LEVEL 1 ITEMS
========================================================= */

.main-navigation .sub-menu-1 > li {

    position: relative;

    display: block;

    margin: 0;

    padding: 0;

    list-style: none;
}


.main-navigation .sub-menu-1 > li > a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 40px;

    padding: 9px 18px;

    color: #102943;

    background: #ffffff;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    line-height: 1.35;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color .18s ease,
        background-color .18s ease,
        padding-left .18s ease;
}


/* =========================================================
   LEVEL 1 ITEMS WITH CHILDREN
========================================================= */

.main-navigation .sub-menu-1 > li:has(> .sub-menu-2)
> a::after {

    content: "›";

    margin-left: 20px;

    color: #738091;

    font-size: 18px;

    line-height: 1;

    transition:
        transform .18s ease,
        color .18s ease;
}


/* =========================================================
   LEVEL 1 HOVER
========================================================= */

.main-navigation .sub-menu-1 > li:hover > a,
.main-navigation .sub-menu-1 > li:focus-within > a {

    color: #003b70;

    background: #f3f7fb;

    padding-left: 22px;
}


.main-navigation .sub-menu-1 > li:hover
> a::after,
.main-navigation .sub-menu-1 > li:focus-within
> a::after {

    color: #e99a00;

    transform: translateX(2px);
}


/* =========================================================
   LEVEL 2 SUBMENU
========================================================= */

.main-navigation .sub-menu-2 {

    position: absolute;

    top: -8px;

    left: calc(100% + 8px);

    z-index: 10001;

    width: 245px;
    min-width: 245px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 7px;

    box-shadow:
        0 15px 40px rgba(0, 25, 55, .15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateX(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


/* =========================================================
   LEVEL 2 SHOW
========================================================= */

.main-navigation .sub-menu-1 > li:hover
> .sub-menu-2,

.main-navigation .sub-menu-1 > li:focus-within
> .sub-menu-2,

.main-navigation .sub-menu-2:hover {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);
}


/* =========================================================
   LEVEL 2 HOVER BRIDGE
========================================================= */

/*
 * Critical:
 * fills the gap between level-1 and level-2 menus.
 */

.main-navigation .sub-menu-1 > li::after {

    content: "";

    position: absolute;

    top: 0;

    right: -14px;

    width: 15px;

    height: 100%;

    background: transparent;

    z-index: 10000;
}


/* =========================================================
   LEVEL 2 ITEMS
========================================================= */

.main-navigation .sub-menu-2 > li {

    display: block;

    margin: 0;

    padding: 0;

    list-style: none;
}


.main-navigation .sub-menu-2 > li > a {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 38px;

    padding: 8px 17px;

    color: #142a43;

    background: #ffffff;

    font-family: "Poppins", sans-serif !important;

    font-size: 10.5px !important;

    font-weight: 600 !important;

    line-height: 1.35;

    text-decoration: none;

    transition:
        color .18s ease,
        background-color .18s ease,
        padding-left .18s ease;
}


.main-navigation .sub-menu-2 > li > a:hover {

    color: #003b70;

    background: #f3f7fb;

    padding-left: 21px;
}


/* =========================================================
   DROPDOWN POINTER
========================================================= */

.main-navigation > .nav-dropdown
> .sub-menu-1::before {

    content: "";

    position: absolute;

    top: -6px;

    left: 50%;

    width: 11px;
    height: 11px;

    background: #ffffff;

    border-left: 1px solid #e5e9ee;
    border-top: 1px solid #e5e9ee;

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* =========================================================
   REMOVE OLD ANIMATIONS
========================================================= */

.main-navigation .dropdown-menu.animated,
.main-navigation .dropdown-menu.fadeInUp {

    animation: none !important;
}


/* =========================================================
   BOOTSTRAP .SHOW SUPPORT
========================================================= */

.main-navigation .sub-menu-1.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


.main-navigation .sub-menu-2.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .main-navigation {

        display: block;

        width: 100%;
    }


    .main-navigation .nav-dropdown {

        width: 100%;
    }


    .main-navigation > .nav-dropdown
    > .nav-link {

        width: 100%;

        height: auto;

        min-height: 46px;

        padding: 12px 18px;

        justify-content: space-between;
    }


    .main-navigation > .nav-dropdown
    > .nav-link::after {

        display: none;
    }


    .main-navigation > .nav-dropdown::after {

        display: none;
    }


    /* Level 1 */

    .main-navigation .sub-menu-1 {

        position: static;

        width: 100%;
        min-width: 0;

        padding: 0;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        transform: none;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height .3s ease,
            opacity .2s ease;
    }


    .main-navigation .nav-dropdown:hover
    > .sub-menu-1 {

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        max-height: 0;
    }


    .main-navigation .nav-dropdown.is-open
    > .sub-menu-1,

    .main-navigation .sub-menu-1.show {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        max-height: 2000px;

        transform: none;
    }


    /* Level 1 item */

    .main-navigation .sub-menu-1 > li > a {

        min-height: 42px;

        padding: 10px 30px;

        background: #f6f8fa;

        border-top: 1px solid #e7ebef;

        white-space: normal;
    }


    /* Level 2 */

    .main-navigation .sub-menu-2 {

        position: static;

        width: 100%;
        min-width: 0;

        padding: 0;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        transform: none;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height .3s ease,
            opacity .2s ease;
    }


    .main-navigation .sub-menu-1 > li:hover
    > .sub-menu-2 {

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        max-height: 0;
    }


    .main-navigation .sub-menu-1 > li.is-open
    > .sub-menu-2,

    .main-navigation .sub-menu-2.show {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        max-height: 1000px;

        transform: none;
    }


    .main-navigation .sub-menu-2 > li > a {

        min-height: 40px;

        padding: 9px 45px;

        background: #eef2f5;

        border-top: 1px solid #e2e7eb;

        white-space: normal;
    }


    /* No desktop bridge on mobile */

    .main-navigation .sub-menu-1 > li::after {

        display: none;
    }

}


/* APPLY */

.apply-button {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 35px;

    padding: 0 14px;

    background: var(--orange);

    color: #111111;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 700;

    transition: .2s ease;
}

.apply-button:hover {

    background: var(--orange-dark);

    color: #ffffff;
}


/* SEARCH */

.search-button {

    font-size: 20px;

    line-height: 1;

    display: flex;

    align-items: center;

    margin-left: 10px;
}


/* MOBILE MENU */

.mobile-menu-button {

    display: none;

    border: 0;

    background: transparent;

    padding: 5px;

    cursor: pointer;
}

.mobile-menu-button span {

    display: block;

    width: 25px;

    height: 2px;

    background: var(--navy);

    margin: 5px 0;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    height: 400px;

    position: relative;

    overflow: hidden;

    color: #ffffff;
}


/* HERO IMAGE */

.hero-background {

    position: absolute;

    inset: 0;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: right center;
}


/* DARK GRADIENT */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,29,56,.97) 0%,
            rgba(0,29,56,.91) 28%,
            rgba(0,29,56,.60) 52%,
            rgba(0,29,56,.12) 75%,
            rgba(0,29,56,0) 100%
        );
}


/* HERO CONTENT */

.hero-container {

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;
}

.hero-content {

    margin-top: -3px;
}


/* SINCE */

.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 9px;

    color: var(--orange);

    font-size: 9px;

    font-weight: 700;
}

.hero-eyebrow i {

    display: block;

    width: 25px;

    height: 1px;

    background: var(--orange);
}


/* HERO TITLE */

.hero-content h1 {

    margin: 0 0 12px;

    font-family: "Poppins", sans-serif;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.5px;
}

.hero-content h1 em {

    color: var(--orange);

    font-style: normal;
}


/* CREDENTIALS */

.hero-credentials {

    font-size: 10px;

    font-weight: 500;

    line-height: 1.65;
}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;
}

.hero-button {

    min-height: 34px;

    padding: 0 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    font-size: 9px;

    font-weight: 700;

    transition: .2s ease;
}


/* PRIMARY */

.hero-button-primary {

    background: var(--orange);

    color: #111111;
}

.hero-button-primary:hover {

    background: var(--orange-dark);

    color: #ffffff;
}


/* OUTLINE */

.hero-button-outline {

    border: 1px solid rgba(255,255,255,.8);

    color: #ffffff;
}

.hero-button-outline:hover {

    background: #ffffff;

    color: var(--navy);
}


/* HERO DOTS */

.hero-slider-dots {

    position: absolute;

    left: 50%;

    bottom: 50px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 4px;
}

.hero-slider-dots button {

    width: 5px;

    height: 5px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    cursor: pointer;
}

.hero-slider-dots button.active {

    background: var(--orange);
}


/* =========================================================
   STATISTICS
========================================================= */

.statistics-section {

    position: relative;

    z-index: 10;

    margin-top: -27px;
}

.statistics-card {

    min-height: 66px;

    background: #ffffff;

    border-radius: 7px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.12);

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 0 16px;
}

.stat-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-right: 1px solid #e1e5ea;
}

.stat-item:last-child {

    border-right: 0;
}


/* ICON */

.stat-icon {

    width: 37px;

    height: 37px;

    flex: 0 0 37px;

    border: 1px solid var(--orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    font-size: 19px;
}


/* TEXT */

.stat-content strong {

    display: block;

    font-family: "Poppins", sans-serif;

    color: var(--navy);

    font-size: 20px;

    line-height: 1.1;
}

.stat-content strong span {

    color: var(--orange);
}

.stat-content small {

    display: block;

    margin-top: 2px;

    color: #202a35;

    font-size: 8px;

    line-height: 1.2;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .site-container {

        width: min(
            calc(100% - 40px),
            950px
        );
    }

    .main-navigation {

        gap: 12px;
    }

    .nav-link {

        font-size: 8px;
    }

    .site-logo {

        width: auto;
    }
}


@media (max-width: 760px) {

    .top-bar {

        display: none;
    }

    .main-header {

        height: 70px;
    }

    .header-inner {

        height: 70px;
    }

    .site-logo {

        width: auto;

        height: 62px;
    }

    .mobile-menu-button {

        display: block;
    }

    .main-navigation {

        display: none;

        position: absolute;

        top: 70px;

        left: 15px;

        right: 15px;

        height: auto;

        padding: 10px;

        background: #ffffff;

        border-radius: 0 0 8px 8px;

        box-shadow:
            0 12px 30px rgba(0,0,0,.15);

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width:92%;
    }

    .main-navigation.is-open {

        display: flex;
    }

    .nav-link {

        height: 40px;

        border-bottom: 1px solid #eeeeee;

        font-size: 10px;
    }

    .nav-link.active::after {

        bottom: 0;
    }

    .apply-button {

        margin: 8px 0;

        height: 36px;
    }

    .search-button {

        height: 38px;
        width: 38px;
        align-items: flex-end;
        justify-content: center;
        margin: 0 auto;
        font-size: 38px !important;
    }


    /* HERO */

    .hero-section {

        height: 430px;
    }

    .hero-background {

        background-position: 65% center;
    }

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,29,56,.97),
                rgba(0,29,56,.68) 58%,
                rgba(0,29,56,.20)
            );
    }

    .hero-container {

        align-items: flex-end;

        padding-bottom: 48px;
    }

    .hero-content h1 {

        font-size: 34px;
    }


    /* STATS */

    .statistics-card {

        grid-template-columns: repeat(2,1fr);

        min-height: auto;

        padding: 5px;
    }

    .stat-item {

        min-height: 57px;
    }

    .stat-item:nth-child(2) {

        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {

        border-bottom: 1px solid #e6e9ed;
    }
}


@media (max-width: 480px) {

    .site-container {

        width: calc(100% - 28px);
    }

    .site-logo {

        width: auto;
    }

    .hero-section {

        height: 465px;
    }

    .hero-content h1 {

        font-size: 30px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .statistics-card {

        grid-template-columns: 1fr;
    }

    .stat-item {

        border-right: 0 !important;

        border-bottom: 1px solid #e6e9ed;
    }

    .stat-item:last-child {

        border-bottom: 0;
    }
}

/* =========================================================
   WELCOME / ABOUT
========================================================= */

.welcome-section {

    padding: 28px 0 24px;

    background: #ffffff;
}

.welcome-grid {

    display: grid;

    grid-template-columns:
        180px
        minmax(0, 1fr)
        330px;

    gap: 24px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   SWAMI IMAGE
--------------------------------------------------------- */

.welcome-portrait {

    position: relative;

    min-height: 245px;

    overflow: hidden;

    border-radius: 10px;

    background: #fff;
}

/*.welcome-portrait::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55%;

    background:
        linear-gradient(
            to top,
            rgba(0,20,43,.65),
            transparent
        );
}*/

.welcome-portrait img {

    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 10px;
}


/* ---------------------------------------------------------
   WELCOME CONTENT
--------------------------------------------------------- */

.welcome-content {

    padding: 5px 0;
}

.section-label {

    display: block;

    color: var(--orange);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .03em;

    margin-bottom: 4px;
}

.welcome-content h2 {

    margin: 0 0 10px;

    color: var(--navy);

    font-family:"Poppins",sans-serif;

    font-size: 25px;

    line-height: 1.08;
}

.welcome-content p {

    margin: 0 0 7px;

    color: #5d6875;

    font-size: 8.5px;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   HIGHLIGHTS
--------------------------------------------------------- */

.welcome-highlights {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px 12px;

    margin: 13px 0;
}

.welcome-highlight {

    display: flex;

    align-items: center;

    gap: 7px;
}

.highlight-icon {

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3f6f9;

    border: 1px solid #dce3e9;

    color: var(--orange);

    font-size: 9px;

    font-weight: 700;
}

.welcome-highlight strong {

    display: block;

    color: var(--navy);

    font-size: 7.5px;

    line-height: 1.25;
}

.welcome-highlight small {

    display: block;

    margin-top: 2px;

    color: #737d89;

    font-size: 6.5px;

    line-height: 1.25;
}


/* ---------------------------------------------------------
   DARK BUTTON
--------------------------------------------------------- */

.dark-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 30px;

    padding: 0 13px;

    border-radius: 4px;

    background: var(--navy);

    color: #ffffff;

    font-size: 8px;

    font-weight: 700;

    transition: .2s ease;
}

.dark-button:hover {

    background: var(--navy-dark);

    transform: translateY(-1px);
}

.dark-button span {

    font-size: 12px;
}


/* =========================================================
   MISSION CARD
========================================================= */

.mission-card {

    position: relative;

    min-height: 245px;

    padding: 20px 21px;

    overflow: hidden;

    border-radius: 7px;

    background:

        linear-gradient(
            145deg,
            #001b39,
            #00345b
        );

    color: #ffffff;

    box-shadow:
        0 5px 15px rgba(0,25,55,.10);
}

.mission-card::before {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -60px;
    bottom: -65px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}

.mission-mark {

    position: absolute;

    right: 17px;
    top: 10px;

    color: var(--orange);

    font-family: "Poppins", sans-serif;

    font-size: 60px;

    line-height: 1;

    opacity: .85;
}

.mission-label {

    position: relative;

    display: block;

    color: var(--orange);

    font-size: 8px;

    font-weight: 700;

    margin-bottom: 4px;
}

.mission-card h3 {

    position: relative;

    margin: 0 0 8px;

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    line-height: 1.15;
}

.mission-card > p {

    position: relative;

    margin: 0;

    color: #dce7f0;

    font-size: 8px;

    line-height: 1.55;
}

.mission-features {

    position: relative;

    display: grid;

    grid-template-columns: 1fr;

    gap: 7px;

    margin-top: 16px;
}

.mission-features div {

    display: flex;

    align-items: center;

    gap: 7px;

    min-height: 30px;

    padding: 5px 7px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 4px;

    background: rgba(255,255,255,.04);
}

.mission-features span {

    color: var(--orange);

    font-size: 7px;

    font-weight: 700;
}

.mission-features strong {

    color: #ffffff;

    font-size: 6.5px;

    line-height: 1.2;
}


/* =========================================================
   WELCOME RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .welcome-grid {

        grid-template-columns:
            150px
            minmax(0, 1fr)
            300px;

        gap: 18px;
    }

    .welcome-content h2 {

        font-size: 22px;
    }
}


@media (max-width: 800px) {

    .welcome-grid {

        grid-template-columns:
            145px
            minmax(0, 1fr);
    }

    .mission-card {

        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .welcome-grid {

        grid-template-columns: 1fr;
    }

    .welcome-portrait {

        height: 250px;

        min-height: 0;
    }

    .welcome-highlights {

        grid-template-columns: 1fr;
    }

    .mission-card {

        grid-column: auto;
    }
}

/* =========================================================
   PROGRAMMES SECTION
========================================================= */

.programmes-section {

    padding: 22px 0 28px;

    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.programmes-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 13px;
}

.programmes-heading h2 {

    margin: 3px 0 5px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 24px;

    line-height: 1.1;
}

.programmes-heading p {

    margin: 0;

    max-width: 620px;

    color: var(--muted);

    font-size: 8.5px;

    line-height: 1.55;
}


/* =========================================================
   CONTROLS
========================================================= */

.programmes-controls {

    display: flex;

    align-items: center;

    gap: 6px;

    flex-shrink: 0;
}

.programmes-controls a {

    margin-right: 6px;

    color: var(--navy);

    font-size: 8px;

    font-weight: 600;
}

.programmes-controls button {

    width: 29px;

    height: 29px;

    padding: 0;

    border: 1px solid #dfe4e9;

    border-radius: 50%;

    background: #ffffff;

    color: var(--navy);

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    transition: .2s ease;
}

.programmes-controls button:hover {

    background: var(--navy);

    color: #ffffff;

    border-color: var(--navy);
}


/* =========================================================
   PROGRAMMES SLIDER
========================================================= */

.programmes-slider {

    display: flex;

    gap: 11px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 2px 2px 5px;
}

.programmes-slider::-webkit-scrollbar {

    display: none;
}


/* =========================================================
   PROGRAMME CARD
========================================================= */

.programme-card {

    flex: 0 0
        calc(
            (100% - 44px) / 5
        );

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9ed;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(0,25,55,.06);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.programme-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 22px rgba(0,25,55,.11);
}


/* =========================================================
   PROGRAMME IMAGE
========================================================= */

.programme-image {

    position: relative;

    height: 100px;

    background: #e8edf1;
}

.programme-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:transform .35s ease;
    
    object-position: top;
}

.programme-card:hover
.programme-image img {

    transform: scale(1.04);
}


/* PROGRAMME CODE */

.programme-code {

    position: absolute;
    left: 8px;
    bottom: -20px;
    padding: 10px;
    background: #ffffff;
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .10);
    border-radius: 50%;
}

span.programme-code img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}


/* =========================================================
   CONTENT
========================================================= */

.programme-content {

    padding: 30px 10px 10px 15px;
}

.programme-type {

    display: block;

    color: var(--orange);

    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.6;

    min-height: 8px;
}

.programme-content h3 {

    margin: 4px 0 5px;

    color: var(--navy);

    font-size: 12px;

    line-height: 1.25;

    min-height: 30px;
}

.programme-content p {

    margin: 0 0 8px;

    color: #65717e;

    font-size: 7.5px;

    line-height: 1.45;

    min-height: 34px;
}

.programme-content a {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: var(--navy);

    font-size: 7.5px;

    font-weight: 700;
}

.programme-content a span {

    color: var(--orange);

    font-size: 11px;

    transition: transform .2s ease;
}

.programme-content a:hover span {

    transform: translateX(3px);
}


/* =========================================================
   NOTE
========================================================= */

.programmes-note {

    margin-top: 7px;

    color: #7a848f;

    font-size: 7px;

    font-style: italic;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .programme-card {

        flex-basis:
            calc(
                (100% - 22px) / 3
            );
    }

}


@media (max-width: 760px) {

    .programmes-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .programmes-heading p {

        max-width: 100%;
    }

    .programmes-controls {

        width: 100%;

        justify-content: flex-end;
    }

    .programme-card {

        flex-basis: 65%;
    }

}


@media (max-width: 480px) {

    .programmes-section {

        padding-top: 20px;
    }

    .programmes-heading h2 {

        font-size: 21px;
    }

    .programme-card {

        flex-basis: 84%;
    }

    .programme-image {

        height: 105px;
    }

}

/* =========================================================
   ADMISSION PROCESS
========================================================= */

.admission-process-section {

    padding: 25px 0 27px;

    background: #f7f9fb;
}


/* =========================================================
   HEADER
========================================================= */

.admission-process-header {

    text-align: center;

    max-width: 600px;

    margin: 0 auto 19px;
}

.admission-process-header h2 {

    margin: 3px 0 5px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 23px;

    line-height: 1.1;
}

.admission-process-header p {

    margin: 0;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   STEPS
========================================================= */

.admission-steps {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    position: relative;
}


/*
   CONNECTING LINE
*/

.admission-steps::before {

    content: "";

    position: absolute;

    top: 25px;

    left: 11%;

    right: 11%;

    border-top:
        1px dashed #b9c3cd;

    z-index: 0;
}


/* =========================================================
   STEP
========================================================= */

.admission-step {

    position: relative;

    z-index: 1;

    text-align: center;

    padding: 0 12px;
}


/* =========================================================
   NUMBER
========================================================= */

.step-number {

    width: 32px;

    height: 32px;

    margin: 0 auto 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: #111111;

    font-size: 8px;

    font-weight: 700;

    box-shadow:
        0 0 0 5px #f7f9fb;
}


/*
   Different colours give the same visual
   hierarchy as the selected design.
*/

.admission-step:nth-child(2)
.step-number {

    background: #4c8d25;

    color: #ffffff;
}

.admission-step:nth-child(3)
.step-number {

    background: #2169d2;

    color: #ffffff;
}

.admission-step:nth-child(4)
.step-number {

    background: #63369b;

    color: #ffffff;
}


/* =========================================================
   ICON
========================================================= */

.step-icon {

    width: 34px;

    height: 34px;

    margin: 0 auto 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #d7dee5;

    border-radius: 50%;

    background: #ffffff;

    color: var(--navy);

    font-size: 15px;

    box-shadow:
        0 2px 7px rgba(0,0,0,.04);
}


/* =========================================================
   TITLE
========================================================= */

.admission-step h3 {

    margin: 0 0 4px;

    color: var(--navy);

    font-size: 10px;

    font-weight: 700;

    line-height: 1.25;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.admission-step p {

    max-width: 175px;

    margin: 0 auto;

    color: #687481;

    font-size: 7.5px;

    line-height: 1.5;
}


/* =========================================================
   FOOTER NOTE
========================================================= */

.admission-process-footer {

    margin-top: 18px;

    padding-top: 11px;

    border-top: 1px solid #e1e6eb;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    font-size: 7.5px;

    color: #6b7682;
}

.admission-process-footer a {

    color: var(--navy);

    font-weight: 700;
}

.admission-process-footer a:hover {

    color: var(--orange-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .admission-steps {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 24px;
    }

    .admission-steps::before {

        display: none;
    }

}


@media (max-width: 520px) {

    .admission-process-section {

        padding: 23px 0;
    }

    .admission-steps {

        grid-template-columns: 1fr;
    }

    .admission-step p {

        max-width: 260px;
    }

    .admission-process-footer {

        flex-direction: column;

        gap: 4px;
    }

}

/* =========================================================
   CAMPUS / FACILITIES
========================================================= */

.campus-facilities-section {

    padding: 22px 0 25px;

    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.campus-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 12px;
}

.campus-header h2 {

    margin: 3px 0 0;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    line-height: 1.1;
}


/* =========================================================
   CONTROLS
========================================================= */

.campus-controls {

    display: flex;

    align-items: center;

    gap: 6px;
}

.campus-controls a {

    margin-right: 6px;

    color: var(--navy);

    font-size: 8px;

    font-weight: 600;
}

.campus-controls button {

    width: 29px;

    height: 29px;

    padding: 0;

    border: 1px solid #dfe4e9;

    border-radius: 50%;

    background: #ffffff;

    color: var(--navy);

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    transition: .2s ease;
}

.campus-controls button:hover {

    background: var(--navy);

    color: #ffffff;

    border-color: var(--navy);
}


/* =========================================================
   CAMPUS SLIDER
========================================================= */

.campus-slider {

    display: flex;

    gap: 9px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 2px 1px 5px;
}

.campus-slider::-webkit-scrollbar {

    display: none;
}


/* =========================================================
   CAMPUS CARD
========================================================= */

.campus-card {

    position: relative;

    flex: 0 0
        calc(
            (100% - 45px) / 6
        );

    height: 91px;

    overflow: hidden;

    border-radius: 6px;

    background: #dfe5ea;
}

.campus-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.campus-card:hover img {

    transform: scale(1.06);
}


/* =========================================================
   OVERLAY
========================================================= */

.campus-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 20%,
            rgba(0,0,0,.15) 45%,
            rgba(0,0,0,.78) 100%
        );
}


/* =========================================================
   TITLE
========================================================= */

.campus-card-title {

    position: absolute;

    left: 8px;

    right: 8px;

    bottom: 8px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 5px;

    color: #ffffff;

    font-size: 7.5px;

    font-weight: 700;

    line-height: 1.2;
}

.campus-card-icon {

    color: var(--orange);

    font-size: 7px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .campus-card {

        flex-basis:
            calc(
                (100% - 27px) / 4
            );
    }

}


@media (max-width: 760px) {

    .campus-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }

    .campus-controls {

        width: 100%;

        justify-content: flex-end;
    }

    .campus-card {

        flex-basis:
            calc(
                (100% - 18px) / 3
            );
    }

}


@media (max-width: 520px) {

    .campus-card {

        flex-basis: 68%;

        height: 115px;
    }

}

/* =========================================================
   ADMISSIONS CTA
========================================================= */

.admissions-cta-section {

    padding: 19px 0;

    background:
        linear-gradient(
            100deg,
            #001832 0%,
            #002b52 100%
        );

    color: #ffffff;
}

.admissions-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.cta-label {

    display: block;

    margin-bottom: 3px;

    color: var(--orange);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .03em;
}

.admissions-cta-content h2 {

    margin: 0 0 4px;

    font-family:"Poppins", sans-serif;

    font-size: 22px;

    line-height: 1.1;

    color: #ffffff;
}

.admissions-cta-content p {

    margin: 0;

    color: #d9e4ed;

    font-size: 8px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   CTA BUTTONS
--------------------------------------------------------- */

.admissions-cta-actions {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}

.cta-primary-button,
.cta-secondary-button {

    min-width: 110px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    font-size: 8px;

    font-weight: 700;

    transition: .2s ease;
}

.cta-primary-button {

    background: var(--orange);

    color: #111111;
}

.cta-primary-button:hover {

    background: var(--orange-dark);

    color: #ffffff;
}

.cta-secondary-button {

    border: 1px solid rgba(255,255,255,.65);

    color: #ffffff;
}

.cta-secondary-button:hover {

    background: #ffffff;

    color: var(--navy);
}


/* =========================================================
   ENQUIRY SECTION
========================================================= */

.enquiry-section {

    padding: 25px 0;

    background: #f7f9fb;
}


/* =========================================================
   MAIN GRID
========================================================= */

.enquiry-grid {

    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr
        1fr;

    gap: 18px;

    align-items: stretch;
}


/* =========================================================
   ENQUIRY CARD
========================================================= */

.enquiry-card {

    padding: 19px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 7px;

    box-shadow:
        0 4px 14px rgba(0,25,55,.05);
}

.enquiry-heading {

    margin-bottom: 13px;
}

.enquiry-heading h2 {

    margin: 3px 0 5px;

    color: var(--navy);

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    line-height: 1.1;
}

.enquiry-heading p {

    margin: 0;

    max-width: 500px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;
}

.form-field {

    margin-bottom: 9px;
}

.form-field label {

    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-size: 7px;

    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    padding: 8px 9px;

    border: 1px solid #dfe4e9;

    border-radius: 4px;

    background: #ffffff;

    color: #172331;

    font-size: 8px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-field input {

    height: 31px;
}

.form-field select {

    height: 31px;

    cursor: pointer;
}

.form-field textarea {

    min-height: 65px;

    resize: vertical;

    line-height: 1.4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {

    border-color: var(--orange);

    box-shadow:
        0 0 0 2px rgba(244,160,0,.10);
}


/* =========================================================
   FORM BOTTOM
========================================================= */

.form-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: 3px;
}

.robot-check {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #596574;

    font-size: 7px;

    cursor: pointer;
}

.robot-check input {

    width: 13px;

    height: 13px;

    margin: 0;

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

.form-submit-button {

    height: 31px;

    padding: 0 14px;

    border: 0;

    border-radius: 4px;

    background: var(--navy);

    color: #ffffff;

    font-size: 8px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 7px;

    transition: .2s ease;
}

.form-submit-button:hover {

    background: var(--navy-dark);
}

.form-submit-button span {

    color: var(--orange);

    font-size: 11px;
}

.enquiry-message {

    margin-top: 6px;

    color: #18804b;

    font-size: 7px;
}


/* =========================================================
   CONTACT COLUMN
========================================================= */

.contact-column {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {

    padding: 17px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 7px;

    box-shadow:
        0 4px 14px rgba(0,25,55,.05);
}

.contact-card h2 {

    margin: 3px 0 13px;

    color: var(--navy);

    font-family:"Poppins", sans-serif;

    font-size: 20px;

    line-height: 1.1;
}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 11px;
}

.contact-icon {

    width: 25px;

    height: 25px;

    flex: 0 0 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f5f7f9;

    border: 1px solid #e0e5ea;

    color: var(--orange);

    font-size: 10px;
}

.contact-item strong {

    display: block;

    margin-bottom: 2px;

    color: var(--navy);

    font-size: 7.5px;
}

.contact-item p {

    margin: 0;

    color: #647080;

    font-size: 7.5px;

    line-height: 1.45;
}


/* =========================================================
   SOCIAL
========================================================= */

.contact-socials {

    display: flex;

    gap: 6px;

    padding-top: 4px;
}

.contact-socials a {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dfe4e9;

    border-radius: 50%;

    color: var(--navy);

    font-size: 8px;

    font-weight: 600;

    transition: .2s ease;
}

.contact-socials a:hover {

    background: var(--navy);

    color: #ffffff;

    border-color: var(--navy);
}


/* =========================================================
   MAP
========================================================= */

.map-card {

    min-height: 150px;

    overflow: hidden;

    border-radius: 7px;

    border: 1px solid var(--border);

    background: #e5eaee;
}
.map-card iframe
{
    width:100%;
    height:100%;
}
.map-placeholder {

    min-height: 150px;

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        linear-gradient(
            135deg,
            #dfe6ea,
            #f0f3f4
        );
}


/*
   Subtle map-style lines
*/

.map-placeholder::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:

        linear-gradient(
            25deg,
            transparent 47%,
            #aeb8bf 48%,
            transparent 49%
        ),

        linear-gradient(
            105deg,
            transparent 47%,
            #aeb8bf 48%,
            transparent 49%
        );

    background-size:
        90px 65px,
        120px 85px;
}

.map-content {

    position: relative;

    z-index: 2;

    width: 190px;

    padding: 12px;

    border-radius: 5px;

    background: #ffffff;

    box-shadow:
        0 4px 15px rgba(0,0,0,.12);

    text-align: center;
}

.map-pin {

    display: block;

    margin-bottom: 3px;

    color: var(--orange);

    font-size: 18px;
}

.map-content strong {

    display: block;

    color: var(--navy);

    font-size: 8px;
}

.map-content small {

    display: block;

    margin-top: 2px;

    color: #707b87;

    font-size: 7px;
}

.map-content a {

    display: block;

    margin-top: 7px;

    color: var(--navy);

    font-size: 7px;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .enquiry-grid {

        grid-template-columns: 1fr;
    }

    .contact-column {

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        align-items: stretch;
    }

    .map-card {

        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .admissions-cta-inner {

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }

    .admissions-cta-actions {

        width: 100%;
    }

    .cta-primary-button,
    .cta-secondary-button {

        flex: 1;
    }

    .contact-column {

        grid-template-columns: 1fr;
    }

    .map-card {

        grid-column: auto;
    }

}


@media (max-width: 500px) {

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-bottom {

        align-items: flex-start;

        flex-direction: column;
    }

    .form-submit-button {

        width: 100%;

        justify-content: center;
    }

    .admissions-cta-actions {

        flex-direction: column;

        width: 100%;
    }

    .cta-primary-button,
    .cta-secondary-button {

        width: 100%;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #00172f;

    color: #dce5ee;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    display: grid;

    grid-template-columns:
        1.55fr
        1fr
        1fr
        1fr
        .9fr
        1.15fr;

    gap: 20px;

    padding: 25px 0 20px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    padding-right: 18px;

    border-right:
        1px solid rgba(255,255,255,.10);
}

.footer-brand-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 4px;
}

.footer-brand-logo img {

    width: 42px;

    height: 47px;

    object-fit: contain;
}

.footer-brand-text {

    display: inline-flex;

    flex-direction: column;

    vertical-align: top;

    margin: 1px 0 0 5px;
}

.footer-brand-text span {

    color: #dce5ee;

    font-size: 6px;

    line-height: 1.2;
}

.footer-brand-text strong {

    color: #ffffff;

    font-size: 13px;

    line-height: 1.15;
}

.footer-brand-text small {

    margin-top: 2px;

    color: #9eacb9;

    font-size: 6px;
}

.footer-brand > p {

    margin: 8px 0 10px;

    color: #c4d0da;

    font-size: 7px;

    line-height: 1.55;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 6px;
}

.footer-socials a {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    color: #ffffff;

    font-size: 8px;

    transition: .2s ease;
}

.footer-socials a:hover {

    background: var(--orange);

    color: #111111;

    border-color: var(--orange);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    padding-right: 10px;

    border-right:
        1px solid rgba(255,255,255,.10);
}

.footer-column:last-child {

    border-right: 0;
}

.footer-column h3 {

    margin: 0 0 9px;

    color: #ffffff !important;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .02em;
}

.footer-column a {

    display: block;

    margin-bottom: 5px;

    color: #bfcbd5;

    font-size: 7px;

    line-height: 1.35;

    transition: .2s ease;
}

.footer-column a:hover {

    color: var(--orange);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact p {

    margin: 0 0 8px;

    color: #bfcbd5;

    font-size: 7px;

    line-height: 1.55;
}

.footer-contact p span {

    color: var(--orange);

    margin-right: 4px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    min-height: 35px;

    border-top:
        1px solid rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    color: #8f9daa;

    font-size: 7px;
}

.footer-legal {

    display: flex;

    align-items: center;

    gap: 6px;

    flex-wrap: wrap;
}

.footer-legal a {

    color: #aab6c1;

    transition: .2s ease;
}

.footer-legal a:hover {

    color: var(--orange);
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;
    }

    .footer-brand {

        grid-column: 1 / -1;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.10);

        padding-right: 0;

        padding-bottom: 16px;
    }

}


@media (max-width: 600px) {

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 22px 15px;
    }

    .footer-brand {

        grid-column: 1 / -1;
    }

    .footer-column {

        border-right: 0;

        padding-right: 0;
    }

    .footer-bottom {

        padding: 11px 0;

        flex-direction: column;

        align-items: flex-start;

        line-height: 1.5;
    }

}


@media (max-width: 420px) {

    .footer-main {

        grid-template-columns: 1fr;
    }

    .footer-brand {

        grid-column: auto;
    }

}

/* =========================================================
   RKMS HOME — FINAL TEMPLATE TYPOGRAPHY / LAYOUT OVERRIDES
   Poppins only. These rules intentionally override the older
   compact sizing above so the page matches the supplied template.
========================================================= */

:root{
    --container: 1400px;
    --page-gutter: 36px;
}

/* GLOBAL */
html, body{
    font-family:"Poppins",sans-serif !important;
    font-size:14px;
}
body{
    color:#071a35;
}
.site-container{
    width:min(calc(100% - 72px), var(--container));
}

/* TOP BAR */
.top-bar{
    height:auto;
    font-size:11px;
    padding:5px;
}
.top-bar-left,
.top-bar-right{
    gap:11px;
}
.top-bar a{
    gap:6px;
}
.top-icon,
.social-icon{
    font-size:11px;
}

/* MAIN HEADER */
.main-header{
    height:100px;
}
.header-inner{
    min-height:100px;
}

.main-navigation > .nav-dropdown > .nav-link{
 
    padding:0 11px;
    font-size:12px;
    font-weight:600;
}
.main-navigation > .nav-dropdown > .nav-link .nav-arrow{
    font-size:12px;
}
.apply-button{
    height:40px;
    padding:0 17px;
    border-radius:5px;
    font-size:12px;
}
.search-button{
    font-size:20px;
}

/* HERO */
.hero-section{
    height:440px;
}
.hero-container{
    align-items:center;
}
.hero-content{
    max-width:620px;
}
.hero-eyebrow{
    gap:9px;
    margin-bottom:12px;
    font-size:11px;
}
.hero-eyebrow i{
    width:30px;
    height:2px;
}
.hero-content h1{
    margin:0 0 16px;
    font-size:52px;
    font-weight:700;
    line-height:1.08;
    letter-spacing:-.7px;
}
.hero-credentials{
    font-size:13px;
    line-height:1.7;
    font-weight:500;
}
.hero-buttons{
    gap:14px;
    margin-top:22px;
}
.hero-button{
    min-height:42px;
    padding:0 20px;
    border-radius:5px;
    font-size:12px;
}

.hero-slider-dots button{
    width:7px;
    height:7px;
}

/* STATISTICS */
.statistics-section{
    margin-top:-31px;
}
.statistics-card{
    min-height:86px;
    padding:0 20px;
    border-radius:8px;
}
.stat-item{
    gap:16px;
}
.stat-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border:0;
    border-radius:0;
    background:transparent;
    color:var(--orange);
    font-size:29px;
}
.stat-icon svg{
    width:38px;
    height:38px;
    stroke-width:1.5;
}
.stat-content strong{
    font-size:25px;
    line-height:1.08;
    font-weight:700;
}
.stat-content small{
    margin-top:4px;
    font-size:10px;
    line-height:1.25;
}

/* SECTION HEADINGS */
.section-label{
    font-size:10px;
    margin-bottom:6px;
    letter-spacing:.04em;
}
.welcome-content h2,
.programmes-heading h2,
.admission-process-header h2,
.campus-header h2,
.enquiry-heading h2,
.contact-card h2{
    font-family:"Poppins",sans-serif !important;
    font-weight:700;
}

/* WELCOME / ABOUT */
.welcome-section{
    padding:34px 0 30px;
}
.welcome-grid{
    grid-template-columns:290px minmax(0,1fr) 430px;
    gap:28px;
}
.welcome-portrait{
    min-height:280px;
    border-radius:10px;
}

.welcome-content{
    padding:7px 0;
}
.welcome-content h2{
    margin:0 0 13px;
    font-size:25px;
    line-height:1.15;
}
.welcome-content p,
.about-copy-text{
    color:#52606f;
    font-size:11px;
    line-height:1.7;
}
.welcome-highlights{
    gap:10px 18px;
    margin:17px 0;
}
.welcome-highlight{
    gap:9px;
}
.highlight-icon{
    width:27px;
    height:27px;
    flex:0 0 27px;
    font-size:11px;
}
.welcome-highlight strong{
    font-size:10px;
    line-height:1.35;
}
.welcome-highlight small{
    font-size:9px;
}
.dark-button{
    min-height:37px;
    padding:0 16px;
    border-radius:5px;
    font-size:10px;
}
.dark-button span{
    font-size:15px;
}
.mission-card{
    min-height:280px;
    padding:24px 27px;
    border-radius:9px;
}
.mission-mark{
    right:22px;
    top:8px;
    font-size:68px;
}
.mission-label{
    font-size:10px;
    margin-bottom:7px;
}
.mission-card h3{
    margin:0 0 10px;
    font-size:21px;
    line-height:1.2;
}
.mission-card > p{
    font-size:10px;
    line-height:1.6;
}
.mission-features{
    gap:8px 14px;
    margin-top:18px;
}
.mission-features div{
    min-height:33px;
    padding:5px 8px;
    gap:8px;
}
.mission-features span{
    width:23px;
    height:23px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    font-size:10px;
}
.mission-features strong{
    font-size:9.5px;
    line-height:1.25;
}

/* PROGRAMMES */
.programmes-section{
    padding:27px 0 34px;
}
.programmes-header{
    margin-bottom:17px;
}
.programmes-heading h2{
    margin:3px 0 6px;
    font-size:27px;
    line-height:1.12;
}
.programmes-heading p{
    font-size:10px;
    line-height:1.55;
}
.programmes-controls{
    gap:8px;
}
.programmes-controls a{
    margin-right:8px;
    font-size:10px;
}
.programmes-controls button{
    width:34px;
    height:34px;
    font-size:21px;
}
.programmes-slider{
    gap:14px;
    padding:2px 2px 7px;
}
.programme-card{
    flex:0 0 calc((100% - 56px)/5);
    border-radius:9px;
    box-shadow:0 4px 14px rgba(0,25,55,.07);
}
.programme-image{
    height:130px;
}
.programme-image img{
    object-position:center center;
}
.programme-image-placeholder{
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#edf1f4,#dce4ea);
}
.programme-code{
    left:12px;
    bottom:-23px;
    width:47px;
    height:47px;
    padding:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}
span.programme-code img{
    width:31px;
    height:31px;
    object-fit:contain;
}
.programme-content{
    padding:34px 14px 15px;
}
.programme-type{
    font-size:17px;
    line-height:1.25;
    font-weight:700;
    color:var(--navy);
}
.programme-content h3{
    margin:3px 0 7px;
    font-size:11px;
    font-weight:500;
    line-height:1.35;
    min-height:30px;
}
.programme-content p{
    margin:0 0 12px;
    font-size:12px;
    line-height:1.5;
    min-height:42px;
}
.programme-content a{
    font-size:9.5px;
    font-weight:700;
}
.programme-content a span{
    font-size:14px;
}
.programmes-note{
    margin-top:9px;
    font-size:9px;
}

/* ADMISSION PROCESS */
.admission-process-section{
    padding:31px 0 34px;
}
.admission-process-header{
    max-width:720px;
    margin:0 auto 25px;
}
.admission-process-header h2{
    font-size:27px;
}
.admission-process-header p{
    font-size:10px;
    line-height:1.55;
}
.admission-steps{
    gap:24px;
}
.admission-steps::before{
    top:28px;
    left:10%;
    right:10%;
}
.admission-step{
    padding:0 15px;
}
.step-number{
    width:40px;
    height:40px;
    margin:0 auto 8px;
    font-size:10px;
    box-shadow:0 0 0 6px #f7f9fb;
}
.step-icon{
    width:43px;
    height:43px;
    margin:0 auto 10px;
    font-size:18px;
}
.step-icon svg{
    width:21px;
    height:21px;
}
.admission-step h3{
    margin:0 0 6px;
    font-size:11px;
}
.admission-step p{
    max-width:210px;
    font-size:12px;
    line-height:1.5;
}
.admission-process-footer{
    margin-top:22px;
    padding-top:13px;
    font-size:12px;
}

/* CAMPUS */
.campus-facilities-section{
    padding:28px 0 32px;
}
.campus-header{
    margin-bottom:15px;
}
.campus-header h2{
    font-size:27px;
}
.campus-controls{
    gap:8px;
}
.campus-controls a{
    margin-right:8px;
    font-size:10px;
}
.campus-controls button{
    width:34px;
    height:34px;
    font-size:21px;
}
.campus-slider{
    gap:11px;
}
.campus-card{
    flex:0 0 calc((100% - 55px)/6);
    height:120px;
    border-radius:8px;
}
.campus-card-title{
    left:10px;
    right:10px;
    bottom:10px;
    gap:7px;
    font-size:10px;
}
.campus-card-icon{
    font-size:10px;
}
.campus-image-placeholder{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#dfe6eb,#bfcbd4);
}

/* CTA */
.admissions-cta-section{
    padding:25px 0;
}
.cta-label{
    font-size:10px;
}
.admissions-cta-content h2{
    font-size:27px;
}
.admissions-cta-content p{
    font-size:10px;
    line-height:1.55;
}
.admissions-cta-actions{
    gap:12px;
}
.cta-primary-button,
.cta-secondary-button{
    min-width:145px;
    height:43px;
    border-radius:5px;
    font-size:11px;
}

/* ENQUIRY / CONTACT */
.enquiry-section{
    padding:30px 0;
}
.enquiry-grid{
    gap:20px;
}
.enquiry-card,
.contact-card{
    padding:22px;
    border-radius:9px;
}
.enquiry-heading{
    margin-bottom:16px;
}
.enquiry-heading h2{
    font-size:23px;
}
.enquiry-heading p{
    font-size:10px;
    line-height:1.55;
}
.form-row{
    gap:12px;
}
.form-field{
    margin-bottom:11px;
}
.form-field label{
    margin-bottom:5px;
    font-size:9px;
}
.form-field input,
.form-field select,
.form-field textarea{
    padding:10px 11px;
    border-radius:5px;
    font-size:10px;
}
.form-field input,
.form-field select{
    height:39px;
}
.form-field textarea{
    min-height:90px;
}
.form-bottom{
    gap:14px;
}
.robot-check{
    gap:7px;
    font-size:9px;
}
.robot-check input{
    width:15px;
    height:15px;
}
.form-submit-button{
    height:39px;
    padding:0 17px;
    border-radius:5px;
    font-size:10px;
}
.contact-card h2{
    font-size:23px;
}
.contact-item{
    gap:11px;
    margin-bottom:13px;
}
.contact-icon{
    width:30px;
    height:30px;
    flex:0 0 30px;
    font-size:18px;
}
.contact-item strong,
.contact-item p{
    font-size:12px;
}
.contact-item p{
    line-height:1.55;
}
.contact-socials{
    gap:7px;
    padding-top:5px;
}
.contact-socials a{
    width:35px;
    height:35px;
    font-size:15px;
}
.map-card{
    min-height:230px;
}

/* FOOTER */
.footer-main{
    gap:25px;
    padding:31px 0 24px;
}
.footer-brand{
    padding-right:22px;
}
.footer-brand-logo img{
    width:52px;
    height:57px;
}
.footer-brand-text{
    margin-left:7px;
}
.footer-brand-text span{
    font-size:8px;
}
.footer-brand-text strong{
    font-size:16px;
}
.footer-brand-text small{
    font-size:8px;
}
.footer-brand > .footer-brand-description > div{
    margin:5px 0;
    font-size:11px;
    line-height:1.6;
}
.footer-socials{
    gap:7px;
}
.footer-socials a{
    width:28px;
    height:28px;
    font-size:10px;
}
.footer-column{
    padding-right:14px;
}
.footer-column h3{
    margin-bottom:11px;
    font-size:14px;
}
.footer-column a{
    margin-bottom:6px;
    font-size:12px;
    line-height:1.4;
}
.footer-contact p{
    margin-bottom:10px;
    font-size:12px;
    line-height:1.6;
}
.footer-bottom{
    min-height:42px;
    font-size:12px;
    padding-bottom: 10px;
}

/* =========================================================
   DESKTOP 1200–1400: keep the supplied composition stable
========================================================= */
@media (min-width:1200px){
    .programme-card{flex-basis:calc((100% - 56px)/5);}
    .campus-card{flex-basis:calc((100% - 55px)/6);}
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width:1100px){
    .site-container{width:min(calc(100% - 48px),1020px);}
    .site-container.top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }
    .top-bar-left,
    .top-bar-right{
        gap:5px;
    }
    .main-navigation > .nav-dropdown > .nav-link{
        padding:0 7px;
        font-size:11px;
    }
    .site-logo{
        width:auto;
        flex-basis:90px;
    }
    .hero-content h1{font-size:46px;}
    .welcome-grid{grid-template-columns:170px minmax(0,1fr);}
    .mission-card{grid-column:1/-1;}
    .programme-card{flex-basis:calc((100% - 28px)/3);}
    .campus-card{flex-basis:calc((100% - 33px)/4);}
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width:991px){
    .main-navigation{
        z-index:10020;
    }
    .main-navigation > .nav-dropdown > .nav-link{
        font-size:13px;
    }
}
@media (max-width:760px){
    .site-container{width:calc(100% - 30px);}
    .main-header{height:90px; padding-top:10px;}
    .header-inner{min-height:72px;}
    .site-logo{
        width:auto;
        height:64px;
        flex-basis:90px;
    }
    span.site-logo-copy{
        line-height: 1.5;
    }
    .hero-section{height:470px;}
    .hero-content h1{font-size:37px;}
    .hero-credentials{font-size:12px;}
    .hero-button{font-size:12px;min-height:40px;}
    .hero-slider-dots {
        bottom: 60px;
    }
    
    .statistics-card{
        grid-template-columns:repeat(2,1fr);
        min-height:auto;
        padding:7px;
    }
    .stat-item{
        min-height:74px;
        gap:10px;
        justify-content: flex-start;
    }

    .stat-content strong{font-size:21px;}
    .stat-content small{font-size:9px;}
    .welcome-grid{grid-template-columns:200px minmax(0,1fr);}
    .welcome-portrait img {width:auto;}
    .welcome-portrait{height:auto;min-height:0;}
    .mission-card{grid-column:1/-1;}
    .programmes-heading h2,
    .admission-process-header h2,
    .campus-header h2{font-size:24px;}
    .programme-card{flex-basis:49%;}
    .campus-card{flex-basis:calc((100% - 22px)/3);height:115px;}
    .admissions-cta-inner{align-items:flex-start;flex-wrap: wrap;}
    .footer-main{grid-template-columns:repeat(3,1fr);}
    .cta-primary-button, .cta-secondary-button {
        font-size: 20px;
        padding: 7px;
    }
}
@media (max-width:520px){
    .top-bar{display:none;}
    .site-logo{width:auto;flex-basis:80px;}
    .hero-section{height:480px;}
    .hero-content h1{font-size:31px;}
    .hero-buttons{flex-direction:column;align-items:flex-start;}
    .stat-item{border-right:0!important;border-bottom:1px solid #e6e9ed;}
    .welcome-grid{grid-template-columns:1fr;}
    .programme-card{flex-basis:84%;}
    .campus-card{flex-basis:68%;height:115px;}
    .footer-main{grid-template-columns:1fr 1fr;}
}
@media (max-width:420px){
    .footer-main{grid-template-columns:1fr;}
}


/* ============================================================
   RKMSM HOMEPAGE
   LATEST UPDATES + NOTICES + BLOG
   FINAL DESIGN CSS
============================================================ */


/* ============================================================
   1. LATEST UPDATES SECTION
============================================================ */

.latest-updates-section {
    width: 100%;
    padding: 54px 0 58px;
    background: #ffffff;
}

.latest-updates-section .site-container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/* SECTION HEADER */

.latest-updates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 27px;
}

.latest-updates-header > div {
    min-width: 0;
}

.latest-updates-header .section-label {
    display: block;
    margin-bottom: 6px;
    color: #ef9400;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
#hyphen-dark
{
    display:none;
}
.latest-updates-header h2,#contentbodybg h1 {
    margin: 0;
    color: #06244a;
    font-family: "Poppins", sans-serif;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.02em;
}

.latest-updates-header p {
    max-width: 680px;
    margin: 7px 0 0;
    color: #68778a;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
}

.updates-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-bottom: 3px;
    color: #06244a;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.updates-view-all span {
    color: #ef9400;
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease;
}

.updates-view-all:hover {
    color: #ef9400;
}

.updates-view-all:hover span {
    transform: translateX(3px);
}


/* ============================================================
   2. THREE NOTICE CARDS
============================================================ */

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.updates-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8ef;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 31, 67, .055);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.updates-card:hover {
    transform: translateY(-3px);
    border-color: #d6dee8;
    box-shadow: 0 9px 25px rgba(0, 31, 67, .09);
}


/* CARD HEADER */

.updates-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 72px;
    padding: 14px 17px;
    background: #06244a;
}

.updates-card-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
}

.updates-icon {
    display: flex;
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 160, 0, .65);
    border-radius: 50%;
    background: rgba(244, 160, 0, .10);
}

.updates-icon svg {
    width: 17px;
    height: 17px;
    stroke: #f4a000;
    stroke-width: 2;
}

.updates-kicker {
    display: block;
    margin-bottom: 2px;
    color: #f4a000;
    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.updates-card-header h3 {
    overflow: hidden;
    margin: 0;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.updates-card-header > a {
    display: flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    transition: all .2s ease;
}

.updates-card-header > a:hover {
    border-color: #f4a000;
    background: #f4a000;
    color: #06244a;
}


/* ============================================================
   3. NOTICE LIST
============================================================ */

.updates-list {
    flex: 1;
    background: #ffffff;
}

.update-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 70px;
    padding: 9px 14px;
    border-bottom: 1px solid #edf1f5;
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease;
}

.update-row:last-child {
    border-bottom: 0;
}

.update-row:hover {
    background: #fafbfd;
}


/* DATE */

.update-date {
    display: flex;
    width: 43px;
    height: 45px;
    flex: 0 0 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #f6dfb1;
    border-radius: 6px;
    background: #fff8ea;
    text-align: center;
}

.update-date strong {
    display: block;
    color: #06244a;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.update-date small {
    display: block;
    margin-top: 4px;
    color: #df8b00;
    font-size: 7.5px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* NOTICE TEXT */

.update-text {
    display: block;
    min-width: 0;
    flex: 1;
    color: #26384d;
    font-size: 10.5px;
    line-height: 1.5;
    font-weight: 500;
}

.update-row:hover .update-text {
    color: #06244a;
}


/* NEW BADGE */

.update-text em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    margin-left: 5px;
    padding: 0 5px;
    border-radius: 10px;
    background: #ef9400;
    color: #ffffff;
    font-size: 7px;
    line-height: 1;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    vertical-align: 1px;
}


/* ARROW */

.update-arrow {
    display: flex;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    align-items: center;
    justify-content: center;
    color: #b1bac6;
    font-size: 18px;
    line-height: 1;
    transition: all .2s ease;
}

.update-row:hover .update-arrow {
    color: #ef9400;
    transform: translateX(2px);
}


/* EMPTY STATE */

.updates-empty {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    padding: 25px;
    color: #8793a1;
    font-size: 11px;
    text-align: center;
}


/* FOOTER LINK */

.updates-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfd;
    color: #06244a;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
}

.updates-footer-link span {
    color: #ef9400;
    font-size: 15px;
    line-height: 1;
}

.updates-footer-link:hover {
    background: #fff9ed;
    color: #ef9400;
}


/* ============================================================
   4. BLOG SECTION
============================================================ */

.blog-section {
    width: 100%;
    padding: 57px 0 68px;
    background: #f7f9fc;
}

.blog-section .site-container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/* BLOG HEADER */

.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.blog-section-header > div {
    min-width: 0;
}

.blog-section-header .section-label {
    display: block;
    margin-bottom: 6px;
    color: #ef9400;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-section-header h2 {
    margin: 0;
    color: #06244a;
    font-family: "Poppins", sans-serif;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.02em;
}

.blog-section-header p {
    max-width: 690px;
    margin: 7px 0 0;
    color: #68778a;
    font-size: 12px;
    line-height: 1.65;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-bottom: 3px;
    color: #06244a;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.blog-view-all span {
    color: #ef9400;
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease;
}

.blog-view-all:hover {
    color: #ef9400;
}

.blog-view-all:hover span {
    transform: translateX(3px);
}


/* ============================================================
   5. BLOG GRID
============================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8ef;
    border-radius: 11px;
    box-shadow: 0 5px 18px rgba(0, 31, 67, .055);
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #d7dfe9;
    box-shadow: 0 12px 28px rgba(0, 31, 67, .10);
}


/* BLOG IMAGE */

.blog-image-link {
    display: block;
    overflow: hidden;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #e9eef3;
}

.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 65%,
        rgba(0, 0, 0, .08) 100%
    );
    pointer-events: none;
}

.blog-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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


/* ============================================================
   6. BLOG CONTENT
============================================================ */

.blog-content {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: 18px 19px 20px;
    margin:0;
}


/* META */

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 20px;
    margin-bottom: 9px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #8a95a3;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-date svg {
    width: 13px;
    height: 13px;
    color: #ef9400;
    stroke-width: 2;
}

.blog-category {
    display: inline-flex;
    max-width: 48%;
    align-items: center;
    overflow: hidden;
    padding: 4px 8px;
    border-radius: 20px;
    background: #fff4df;
    color: #d78600;
    font-size: 8px;
    line-height: 1.2;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* TITLE */

.blog-content h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-content h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: #06244a;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-content h3 a:hover {
    color: #e28b00;
}


/* EXCERPT */

.blog-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 17px;
    color: #697789;
    font-size: 10.5px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* READ ARTICLE */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #06244a;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}

.blog-read-more span {
    color: #ef9400;
    font-size: 15px;
    line-height: 1;
    transition: transform .2s ease;
}

.blog-read-more:hover {
    color: #ef9400;
}

.blog-read-more:hover span {
    transform: translateX(3px);
}


/* BLOG EMPTY */

.blog-empty {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid #e2e8ef;
    border-radius: 11px;
    background: #ffffff;
    color: #7c8897;
    text-align: center;
}

.blog-empty svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    color: #ef9400;
}

.blog-empty p {
    margin: 0;
    font-size: 12px;
}


/* ============================================================
   7. IMPORTANT NOTICE TICKER
   Use these classes if the ticker exists in front.blade.php
============================================================ */

.home-important-ticker {
    width: 100%;
    overflow: hidden;
    background: #06244a;
}

.home-important-ticker-inner {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: stretch;
}

.home-important-label {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 0 17px;
    background: #ef9400;
    color: #06244a;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-important-label svg {
    width: 14px;
    height: 14px;
}

.home-important-track-wrap {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.home-important-track {
    display: inline-flex;
    min-width: max-content;
    height: 43px;
    align-items: center;
    animation: rkmsmNoticeTicker 32s linear infinite;
}

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

.home-important-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 25px;
    white-space: nowrap;
}

.home-important-item::before {
    content: "";
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #ef9400;
}

.home-important-item a {
    color: #ffffff;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
}

.home-important-item a:hover {
    color: #ef9400;
}

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

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


/* ============================================================
   8. LARGE TABLET
============================================================ */

@media (max-width: 1100px) {

    .latest-updates-section .site-container,
    .blog-section .site-container {
        width: min(100% - 40px, 1000px);
    }

    .updates-grid {
        gap: 16px;
    }

    .blog-grid {
        gap: 18px;
    }

    .blog-image {
        height: 185px;
    }
}


/* ============================================================
   9. TABLET
============================================================ */

@media (max-width: 900px) {

    .updates-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /*.updates-card:last-child {
        grid-column: 1 / -1;
    }*/

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

    /*.blog-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
    }*/
}


/* ============================================================
   10. MOBILE
============================================================ */

@media (max-width: 680px) {

    .latest-updates-section,
    .blog-section {
        padding: 42px 0 48px;
    }

    .latest-updates-section .site-container,
    .blog-section .site-container {
        width: calc(100% - 30px);
    }


    /* SECTION HEADERS */

    .latest-updates-header,
    .blog-section-header {
        display: block;
        margin-bottom: 23px;
    }

    .latest-updates-header h2,
    .blog-section-header h2 {
        font-size: 24px;
    }

    .latest-updates-header p,
    .blog-section-header p {
        font-size: 11px;
    }

    .updates-view-all,
    .blog-view-all {
        margin-top: 12px;
    }


    /* NOTICE CARDS */

    .updates-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .updates-card:last-child {
        grid-column: auto;
    }

    .updates-card-header {
        min-height: 67px;
        padding: 13px 15px;
    }

    .updates-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .updates-card-header h3 {
        font-size: 15px;
    }

    .update-row {
        min-height: 67px;
        padding: 9px 12px;
    }

    .update-date {
        width: 42px;
        height: 44px;
        flex-basis: 42px;
    }

    .update-text {
        font-size: 10px;
    }


    /* BLOG */

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 17px;
    }

    .blog-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .blog-image {
        height: 195px;
    }

    .blog-content {
        padding: 17px 17px 19px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 10.5px;
    }


    /* TICKER */

    .home-important-label {
        padding: 0 11px;
        font-size: 8px;
    }

    .home-important-track {
        height: 41px;
        animation-duration: 25s;
    }

    .home-important-item {
        padding: 0 17px;
    }

    .home-important-item a {
        font-size: 9px;
    }
}


/* ============================================================
   11. SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .latest-updates-section .site-container,
    .blog-section .site-container {
        width: calc(100% - 24px);
    }

    .latest-updates-header h2,
    .blog-section-header h2 {
        font-size: 22px;
    }

    .update-row {
        gap: 9px;
    }

    .update-text {
        font-size: 9.5px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .blog-image {
        height: 180px;
    }
}


/* ============================================================
   12. ACCESSIBILITY / REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .home-important-track {
        animation: none;
    }

    .updates-card,
    .update-row,
    .update-arrow,
    .blog-card,
    .blog-image img,
    .blog-read-more span,
    .updates-view-all span,
    .blog-view-all span {
        transition: none;
    }
}

/* RKMSM NAVIGATION FINAL — independent of SmartMenus */
.nav-toggle,.child-nav-toggle{display:none}
@media (min-width:992px){
 /* Bootstrap's .dropdown-menu normally uses display:none. Override that because
    this navigation is intentionally controlled by CSS hover/focus instead. */
 .main-navigation .sub-menu-1,
 .main-navigation .sub-menu-2{display:block!important;overflow:visible!important}
 .main-navigation>.nav-dropdown{position:relative}
 .main-navigation>.nav-dropdown:hover>.sub-menu-1,
 .main-navigation>.nav-dropdown:focus-within>.sub-menu-1,
 .main-navigation>.nav-dropdown>.sub-menu-1:hover{
   display:block!important;opacity:1!important;visibility:visible!important;
   pointer-events:auto!important;transform:translate(-50%,0)!important;
 }
 .main-navigation .sub-menu-1>li:hover>.sub-menu-2,
 .main-navigation .sub-menu-1>li:focus-within>.sub-menu-2,
 .main-navigation .sub-menu-1>li>.sub-menu-2:hover{
   display:block!important;opacity:1!important;visibility:visible!important;
   pointer-events:auto!important;transform:translateX(0)!important;
 }
}
@media (max-width:991px){
 .mobile-menu-button{display:block!important}
 .main-navigation{display:none!important;position:absolute!important;top:100%!important;left:15px!important;right:15px!important;width:auto!important;height:auto!important;max-height:calc(100vh - 85px)!important;overflow-y:auto!important;flex-direction:column!important;align-items:stretch!important;gap:0!important;padding:10px!important;background:#fff!important;z-index:11000!important}
 .main-navigation.is-open{display:flex!important}
 .main-navigation>.nav-dropdown{width:100%!important;position:relative!important;display:grid!important;grid-template-columns:minmax(0,1fr) 48px!important;align-items:stretch!important}
 .main-navigation>.nav-dropdown>.nav-link{min-width:0!important;width:100%!important;height:auto!important;min-height:46px!important;justify-content:flex-start!important;padding:12px 14px!important;font-size:12px!important;border-bottom:1px solid #e8edf2!important}
 .main-navigation>.nav-dropdown>.nav-link::after{display:none!important}
 .main-navigation>.nav-dropdown>.nav-toggle{display:flex!important;align-items:center!important;justify-content:center!important;border:0!important;border-left:1px solid #e8edf2!important;border-bottom:1px solid #e8edf2!important;background:#f7f9fb!important;color:#003b70!important;cursor:pointer!important;font-size:20px!important;line-height:1!important}
 .main-navigation>.nav-dropdown>.nav-toggle span{transition:transform .2s ease}.main-navigation>.nav-dropdown.is-open>.nav-toggle span{transform:rotate(180deg)}
 .main-navigation .sub-menu-1,.main-navigation .sub-menu-2{position:static!important;grid-column:1/-1!important;width:100%!important;min-width:0!important;margin:0!important;padding:0!important;border:0!important;border-radius:0!important;box-shadow:none!important;transform:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;max-height:0!important;overflow:hidden!important;transition:max-height .25s ease,opacity .18s ease!important}
 .main-navigation .nav-dropdown.is-open>.sub-menu-1,.main-navigation .sub-menu-1.show{display:block!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;max-height:5000px!important;overflow:visible!important}
 .main-navigation .sub-menu-1>li{display:grid!important;grid-template-columns:minmax(0,1fr) 46px!important;align-items:stretch!important}
 .main-navigation .sub-menu-1>li>a{min-width:0!important;min-height:44px!important;padding:11px 24px!important;white-space:normal!important;background:#f6f8fa!important;border-top:1px solid #e7ebef!important}
 .main-navigation .sub-menu-1>li>a::after{display:none!important}
 .main-navigation .sub-menu-1>li>.child-nav-toggle{display:flex!important;align-items:center!important;justify-content:center!important;border:0!important;border-top:1px solid #e7ebef!important;background:#eef3f7!important;color:#003b70!important;cursor:pointer!important;font-size:21px!important}
 .main-navigation .sub-menu-1>li.is-open>.child-nav-toggle span{transform:rotate(90deg)}
 .main-navigation .sub-menu-1>li.is-open>.sub-menu-2,.main-navigation .sub-menu-2.show{display:block!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;max-height:5000px!important;overflow:visible!important}
 .main-navigation .sub-menu-2>li{display:block!important}.main-navigation .sub-menu-2>li>a{min-height:42px!important;padding:10px 38px!important;white-space:normal!important;background:#fff!important;border-top:1px solid #edf0f3!important}
 .main-navigation>.nav-dropdown::after,.main-navigation .sub-menu-1>li::after{display:none!important}
}

/* RKMSM NAVIGATION v3 — one mobile arrow per menu row */
@media (max-width:991px){
    .main-navigation > .nav-dropdown > .nav-link .nav-arrow{
        display:none!important;
    }
    .main-navigation > .nav-dropdown > .nav-toggle{
        display:flex!important;
    }
    .main-navigation .sub-menu-1 > li > a::after{
        display:none!important;
    }
}
.enquiry-alert.success {
    background: green;
    padding: 5px;
    color: #fff;
    margin: 10px 0;
}