/* =============================================================
   GIST Computer Institute — Custom Header Styles
   Accent red : #fd1616
   Body font  : 'Nunito Sans', sans-serif
   Heading    : 'Poppins', sans-serif

   Strategy for the nav:
   - Keep ALL theme .ltn__main-menu submenu rules untouched
     (positioning, show/hide, sub-sub-menu flyouts all still work)
   - Scope colour/font overrides under .gist-navbar so they only
     affect this bar and never leak into the rest of the page
   ============================================================= */


/* ── 1. RESET OLD THEME HEADER PIECES ───────────────────────── */

.ltn__header-top-area {
    display: none !important;
}

.ltn__header-middle-area {
    display: none !important;
}

body.ltn__header-sticky-active {
    padding-top: 0 !important;
}


/* ── 2. ANNOUNCEMENT TICKER ─────────────────────────────────── */

.gist-ticker-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #1a1a2e;
    border-bottom: 2px solid #fd1616;
    height: 36px;
    overflow: hidden;
    position: relative;
    z-index: 10000;
}

.gist-ticker-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background-color: #1a3c6e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 22px 0 16px;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.gist-ticker-label i {
    font-size: 12px;
    -webkit-animation: gist-bell-shake 3s ease infinite;
    animation: gist-bell-shake 3s ease infinite;
}

@-webkit-keyframes gist-bell-shake {

    0%,
    80%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    85% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    90% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    95% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
}

@keyframes gist-bell-shake {

    0%,
    80%,
    100% {
        transform: rotate(0deg);
    }

    85% {
        transform: rotate(-15deg);
    }

    90% {
        transform: rotate(15deg);
    }

    95% {
        transform: rotate(-10deg);
    }
}

.gist-ticker-track-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px 0 14px;
}

.gist-ticker-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    -webkit-animation: gist-ticker-scroll 45s linear infinite;
    animation: gist-ticker-scroll 45s linear infinite;
}

.gist-ticker-track:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes gist-ticker-scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes gist-ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gist-ticker-item {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #d0d8e8;
    padding: 0 28px;
}

.gist-ticker-sep {
    color: #fd1616;
    font-size: 10px;
    padding: 0 4px;
    opacity: 0.7;
}

.gist-ticker-close {
    background: none;
    border: none;
    color: #888caa;
    font-size: 12px;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gist-ticker-close:hover {
    color: #fd1616;
}


/* ── 3. HEADER WRAPPER ───────────────────────────────────────── */

.gist-header {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, 0.13);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.13);
}


/* ── 4. IDENTITY BAR (white zone) ───────────────────────────── */

.gist-identity-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 5px 0;
}

.gist-identity-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

/* ── 4a. Main Logo */
.gist-logo-wrap {
    flex-shrink: 0;
}

.gist-logo-img {
    height: 74px;
    width: auto;
    display: block;
}

/* ── 4b. Affiliation Logos */
.gist-affiliation-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1 1 auto;
    padding: 0 20px;
}

.gist-aff-divider {
    width: 1px;
    height: 44px;
    background-color: #e4e4e4;
    flex-shrink: 0;
    margin: 0 6px;
}

.gist-aff-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    -webkit-transition: border-color 0.2s ease, background 0.2s ease;
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: default;
    margin-top: 0;
}

.gist-aff-item:hover {
    background-color: #fdf5f5;
    border-color: #fddede;
}

/* Dummy logo card — swap the .gist-dummy-logo div for a real <img> later */
.gist-dummy-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid currentColor;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.gist-dummy-logo::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 4px;
    border: 1px solid currentColor;
    opacity: 0.25;
}

.gist-dummy-initials {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    display: block;
    margin-top: 2px;
}

.gist-dummy-name {
    font-family: 'Poppins', sans-serif;
    font-size: 6.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
    display: block;
    opacity: 0.9;
}

.gist-dummy-oscit {
    background-color: #1a3c6e;
    color: #1a3c6e;
}

.gist-dummy-tok {
    background-color: #1a6e3c;
    color: #1a6e3c;
}

.gist-dummy-clud {
    background-color: #7a4d12;
    color: #7a4d12;
}

.gist-dummy-yog {
    background-color: #7a1212;
    color: #7a1212;
}

/* Real logo image class (used when swapping in actual images) */
.gist-aff-logo-img {
    height: 48px;
    width: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.gist-aff-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ── 4c. Contact Info */
.gist-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.gist-contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #071c1f;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
}

.gist-contact-item:hover {
    color: #fd1616;
}

.gist-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #fd1616;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.gist-contact-item:hover .gist-contact-icon {
    background-color: #c70000;
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}

.gist-contact-icon i {
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

.gist-contact-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #071c1f;
    line-height: 1.35;
    white-space: nowrap;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
}

.gist-contact-text small {
    font-size: 10px;
    font-weight: 400;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.gist-contact-item:hover .gist-contact-text {
    color: #fd1616;
}

/* ── 4d. Mobile hamburger */
.gist-mobile-toggle {
    flex-shrink: 0;
    margin-left: auto;
}

.gist-hamburger svg {
    width: 36px;
    height: 28px;
    display: block;
}

.gist-hamburger svg path {
    fill: none;
    stroke: #1a1a2e;
    stroke-width: 40px;
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
}

.gist-hamburger:hover svg path {
    stroke: #fd1616;
}


/* ── 5. NAVIGATION BAR SHELL (red zone) ─────────────────────── */

.gist-navbar {
    background-color: #fd1616;
    -webkit-box-shadow: 0 3px 10px rgba(200, 10, 10, 0.28);
    box-shadow: 0 3px 10px rgba(200, 10, 10, 0.28);
    /* keep the red bg even when theme JS adds its sticky class */
}

.gist-navbar.ltn__sticky-bg-white {
    background-color: #1a3c6e !important;
}

/* Remove bottom border the theme adds to header-menu */
.gist-navbar .header-menu {
    border: none;
    background: transparent;
}


/* ── 6. THEME MENU COLOUR/FONT OVERRIDES (scoped to .gist-navbar) ── */
/*
 * We only touch colours, fonts, padding and the dropdown border-top.
 * ALL positioning / visibility / z-index logic in style.css stays in
 * effect — we never nullify those rules.
 */

/* Top-level link typography + colour */
.gist-navbar .ltn__main-menu>ul>li>a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 15px 20px;
    -webkit-transition: background-color 0.22s ease, color 0.22s ease;
    transition: background-color 0.22s ease, color 0.22s ease;
}

/* Active top-level item */
.gist-navbar .ltn__main-menu>ul>li.active>a {
    background-color: rgba(0, 0, 0, 0.20);
    color: #ffffff;
}

/* Hover state — override theme's orange/secondary colour */
.gist-navbar .ltn__main-menu li:hover>a {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.14);
}

/* Underline indicator on active/hover top-level items */
.gist-navbar .ltn__main-menu>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 2px 2px 0 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.22s ease;
    transition: transform 0.22s ease;
}

.gist-navbar .ltn__main-menu>ul>li:hover>a::after,
.gist-navbar .ltn__main-menu>ul>li.active>a::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* Thin separator line between top-level items */
.gist-navbar .ltn__main-menu>ul>li+li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 28%;
    height: 44%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

/* ── Dropdown panel ─────────────────────────────────────────── */
/*
 * Replace the theme's orange top-border with our red.
 * Keep everything else (shadow, position, opacity transition) as-is.
 */
.gist-navbar .ltn__main-menu li>ul,
.gist-navbar .ltn__main-menu .sub-menu {
    border-top-color: #1a3c6e;
    /* ensure dropdowns clear the red bar */
    margin-top: 0;
}

/* Dropdown item typography */
.gist-navbar .ltn__main-menu li ul li,
.gist-navbar .ltn__main-menu .sub-menu li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    padding: 10px 12px 10px 24px;
}

/* Dropdown link colour */
.gist-navbar .ltn__main-menu li ul li a,
.gist-navbar .ltn__main-menu .sub-menu li a {
    color: #1a1a2e;
    font-weight: 600;
    -webkit-transition: color 0.18s ease, padding-left 0.18s ease;
    transition: color 0.18s ease, padding-left 0.18s ease;
    display: block;
}

/* Dropdown item hover */
.gist-navbar .ltn__main-menu li ul li:hover>a,
.gist-navbar .ltn__main-menu .sub-menu li:hover>a {
    color: #fd1616;
    background-color: transparent;
    padding-left: 30px;
}

/* Sub-submenu (third level) — same treatment */
.gist-navbar .ltn__main-menu .sub-menu li>.sub-menu {
    border-top-color: #fd1616;
}

/* Arrow indicator on dropdown items that have a child */
.gist-navbar .ltn__main-menu .sub-menu li>a[href]::before {
    display: none;
    /* remove theme's default if any */
}

.gist-navbar .ltn__main-menu .sub-menu>li>ul,
.gist-navbar .ltn__main-menu .sub-menu>li>.sub-menu {
    /* flyout already positioned by theme; just keep the red border */
    border-top-color: #fd1616;
}

/* Chevron on items that have sub-submenus */
.gist-navbar .ltn__main-menu .sub-menu li:has(> ul)>a::after,
.gist-navbar .ltn__main-menu .sub-menu li:has(> .sub-menu)>a::after {
    content: '›';
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
    color: #fd1616;
    pointer-events: none;
    height: auto;
    width: auto;
    background: none;
    border-radius: 0;
    /* reset the top-level underline pseudo-element reuse */
    -webkit-transform-origin: unset;
    -ms-transform-origin: unset;
    transform-origin: unset;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
}


/* ── 7. MOBILE MENU PANEL OVERRIDES ─────────────────────────── */

#ltn__utilize-mobile-menu .ltn__utilize-menu-inner {
    background-color: #ffffff;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-head {
    border-bottom: 2px solid #fd1616;
    padding-bottom: 16px;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-head .site-logo img {
    height: 56px;
    width: auto;
}

#ltn__utilize-mobile-menu .ltn__utilize-close {
    color: #071c1f;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

#ltn__utilize-mobile-menu .ltn__utilize-close:hover {
    color: #fd1616;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu ul li {
    margin-top: 0;
    border-bottom: 1px solid #f3f3f3;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu ul li a {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 0;
    display: block;
    -webkit-transition: color 0.2s ease, padding-left 0.2s ease;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu ul li a:hover {
    color: #fd1616;
    padding-left: 10px;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-search-form {
    margin: 16px 0;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-search-form input[type="text"] {
    border: 2px solid #ebebeb;
    height: 44px;
    font-size: 14px;
    margin-bottom: 0;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-search-form input[type="text"]:focus {
    border-color: #fd1616;
}

#ltn__utilize-mobile-menu .ltn__utilize-menu-search-form button {
    background-color: #fd1616;
    color: #ffffff;
    height: 44px;
}

#ltn__utilize-mobile-menu .ltn__social-media-2 {
    margin-top: 24px;
}

#ltn__utilize-mobile-menu .ltn__social-media-2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#ltn__utilize-mobile-menu .ltn__social-media-2 ul li {
    margin-top: 0;
}

#ltn__utilize-mobile-menu .ltn__social-media-2 ul li a {
    background-color: #fd1616;
    color: #ffffff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

#ltn__utilize-mobile-menu .ltn__social-media-2 ul li a:hover {
    background-color: #c70000;
}


/* ── 8. RESPONSIVE BREAKPOINTS ───────────────────────────────── */

@media (min-width: 1200px) {
    .gist-identity-inner {
        flex-wrap: nowrap;
    }

    .gist-affiliation-logos {
        flex-wrap: nowrap;
    }
}

/* Laptop 992–1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .gist-logo-img {
        height: 62px;
    }

    .gist-affiliation-logos {
        padding: 0 10px;
        gap: 2px;
    }

    .gist-dummy-logo {
        width: 42px;
        height: 42px;
    }

    .gist-dummy-initials {
        font-size: 15px;
    }

    .gist-aff-label {
        font-size: 9.5px;
    }

    .gist-contact-info {
        gap: 14px;
    }

    .gist-contact-text {
        font-size: 12px;
    }

    .gist-contact-icon {
        width: 36px;
        height: 36px;
    }

    .gist-contact-icon i {
        font-size: 13px;
    }

    .gist-navbar .ltn__main-menu>ul>li>a {
        padding: 14px 14px;
        font-size: 12px;
    }

    .gist-navbar .ltn__main-menu>ul>li>a::after {
        left: 14px;
        right: 14px;
    }

    .gist-ticker-item {
        font-size: 12px;
    }
}

/* Tablet 768–991px */
@media (min-width: 768px) and (max-width: 991px) {
    .gist-identity-bar {
        padding: 8px 0;
    }

    .gist-identity-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .gist-logo-wrap {
        order: 1;
        flex: 0 0 auto;
    }

    .gist-mobile-toggle {
        order: 2;
        margin-left: auto;
    }

    .gist-affiliation-logos {
        order: 3;
        flex: 0 0 100%;
        padding: 6px 0 2px;
        border-top: 1px solid #f0f0f0;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
    }

    .gist-contact-info {
        display: none;
    }

    .gist-dummy-logo {
        width: 40px;
        height: 40px;
    }

    .gist-dummy-initials {
        font-size: 14px;
    }

    /* Hide desktop nav on tablet */
    .gist-navbar .header-menu {
        display: none !important;
    }

    .gist-ticker-item {
        font-size: 11.5px;
        padding: 0 20px;
    }
}

/* Mobile ≤767px */
@media (max-width: 767px) {
    .gist-identity-bar {
        padding: 8px 0;
    }

    .gist-identity-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .gist-logo-img {
        height: 54px;
    }

    .gist-logo-wrap {
        order: 1;
        flex: 1 1 auto;
    }

    .gist-mobile-toggle {
        order: 2;
        margin-left: 0;
    }

    .gist-affiliation-logos {
        order: 3;
        flex: 0 0 100%;
        padding: 5px 0 0;
        border-top: 1px solid #f0f0f0;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
    }

    .gist-aff-item {
        padding: 3px 7px;
        gap: 6px;
    }

    .gist-dummy-logo {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }

    .gist-dummy-initials {
        font-size: 13px;
    }

    .gist-dummy-name {
        font-size: 5.5px;
    }

    .gist-aff-divider {
        height: 34px;
        margin: 0 3px;
    }

    .gist-aff-label {
        font-size: 9px;
    }

    .gist-contact-info {
        display: none;
    }

    /* Hide desktop nav on mobile */
    .gist-navbar .header-menu {
        display: none !important;
    }

    .gist-ticker-bar {
        height: 32px;
    }

    .gist-ticker-label {
        font-size: 9.5px;
        padding: 0 18px 0 10px;
    }

    .gist-ticker-label span {
        display: none;
    }

    .gist-ticker-item {
        font-size: 11px;
        padding: 0 16px;
    }
}


/* ── 9. MISC RESETS ──────────────────────────────────────────── */

.gist-aff-item,
.gist-navbar .ltn__main-menu li {
    margin-top: 0;
}


/* =============================================================
   GIST — WELCOME SECTION
   ============================================================= */

.gist-welcome-section {
    background-color: #f8fafd;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

/* subtle background pattern */
.gist-welcome-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 60, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.gist-welcome-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 22, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Section heading shared styles ── */
.gist-section-head {
    margin-bottom: 44px;
}

.gist-section-tag {
    display: inline-block;
    background-color: rgba(26, 60, 110, 0.10);
    color: #1a3c6e;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.gist-section-tag--white {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.gist-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f1f40;
    line-height: 1.25;
    margin-bottom: 18px;
}

.gist-section-title span {
    color: #1a3c6e;
}

.gist-section-title--white,
.gist-section-title--white span {
    color: #ffffff;
}

/* Decorative rule */
.gist-title-rule {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.gist-rule-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #1a3c6e;
    border-radius: 2px;
}

.gist-rule-line--white {
    background-color: rgba(255, 255, 255, 0.55);
}

.gist-rule-diamond {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fd1616;
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.gist-rule-diamond--white {
    background-color: #ffffff;
}

/* ── Welcome image block ── */
.gist-welcome-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.gist-welcome-img-main {
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 20px 60px rgba(26, 60, 110, 0.18);
    box-shadow: 0 20px 60px rgba(26, 60, 110, 0.18);
    position: relative;
}

.gist-welcome-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 4px solid #1a3c6e;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.gist-welcome-img-main img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.gist-welcome-img-wrap:hover .gist-welcome-img-main img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

/* Floating stat badges */
.gist-welcome-badge {
    position: absolute;
    background-color: #1a3c6e;
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 18px;
    text-align: center;
    -webkit-box-shadow: 0 8px 24px rgba(26, 60, 110, 0.30);
    box-shadow: 0 8px 24px rgba(26, 60, 110, 0.30);
    min-width: 120px;
    -webkit-animation: gist-float 4s ease-in-out infinite;
    animation: gist-float 4s ease-in-out infinite;
}

.gist-badge-students {
    bottom: 30px;
    left: -24px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.gist-badge-years {
    top: 30px;
    right: -24px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    background-color: #fd1616;
}

@-webkit-keyframes gist-float {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes gist-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.gist-badge-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.gist-badge-number sup {
    font-size: 14px;
    font-weight: 700;
    top: -6px;
}

.gist-badge-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* ── Welcome text block ── */
.gist-welcome-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #0f1f40;
    line-height: 1.7;
    margin-bottom: 18px;
    border-left: 4px solid #1a3c6e;
    padding-left: 18px;
}

.gist-welcome-body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #5c727d;
    line-height: 1.85;
    margin-bottom: 0;
}

/* Feature highlight items */
.gist-welcome-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 14px;
    background-color: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 14px 16px;
    -webkit-transition: -webkit-box-shadow 0.25s ease, border-color 0.25s ease;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.gist-welcome-feature:hover {
    -webkit-box-shadow: 0 6px 20px rgba(26, 60, 110, 0.10);
    box-shadow: 0 6px 20px rgba(26, 60, 110, 0.10);
    border-color: #1a3c6e;
}

.gist-wf-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(26, 60, 110, 0.10);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a3c6e;
    font-size: 16px;
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

.gist-welcome-feature:hover .gist-wf-icon {
    background-color: #1a3c6e;
    color: #ffffff;
}

.gist-wf-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.gist-wf-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f1f40;
    line-height: 1.3;
}

.gist-wf-text span {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #7a8fa0;
    line-height: 1.3;
}

/* CTA buttons */
.gist-welcome-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gist-btn-primary {
    display: inline-block;
    background-color: #1a3c6e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 6px;
    text-decoration: none;
    -webkit-transition: background-color 0.25s ease, -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.25s ease;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    -webkit-box-shadow: 0 6px 18px rgba(26, 60, 110, 0.28);
    box-shadow: 0 6px 18px rgba(26, 60, 110, 0.28);
}

.gist-btn-primary:hover {
    background-color: #142d55;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 24px rgba(26, 60, 110, 0.36);
    box-shadow: 0 10px 24px rgba(26, 60, 110, 0.36);
}

.gist-btn-primary--light {
    background-color: #ffffff;
    color: #1a3c6e;
    -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gist-btn-primary--light:hover {
    background-color: #f0f4fb;
    color: #1a3c6e;
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.gist-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1a3c6e;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 6px;
    border: 2px solid #1a3c6e;
    text-decoration: none;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.gist-btn-outline:hover {
    background-color: #1a3c6e;
    color: #ffffff;
}

/* ── Stats bar ── */
.gist-stats-bar {
    background-color: #1a3c6e;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 12px 36px rgba(26, 60, 110, 0.22);
    box-shadow: 0 12px 36px rgba(26, 60, 110, 0.22);
}

.gist-stat-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
}

.gist-stat-item--last {
    border-right: none;
}

.gist-stat-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.gist-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.gist-stat-num sup {
    font-size: 20px;
    font-weight: 700;
    color: #fd1616;
    top: -8px;
}

.gist-stat-lbl {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
}


/* =============================================================
   GIST — COURSES SECTION SHELL
   ============================================================= */

.gist-courses-section {
    background-color: #1a3c6e;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.gist-courses-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.gist-courses-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 22, 22, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.gist-courses-intro {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =============================================================
   GC-CARD — Course card with image
   ============================================================= */

.gc-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    border: 2px solid transparent;
    -webkit-transition: -webkit-transform 0.32s ease, -webkit-box-shadow 0.32s ease, border-color 0.32s ease;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.09);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.09);
    position: relative;
}

.gc-card:hover {
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
    -webkit-box-shadow: 0 22px 50px rgba(26, 60, 110, 0.22);
    box-shadow: 0 22px 50px rgba(26, 60, 110, 0.22);
    border-color: #1a3c6e;
}

.gc-card--featured {
    border-color: #1a3c6e;
    -webkit-box-shadow: 0 8px 32px rgba(26, 60, 110, 0.20);
    box-shadow: 0 8px 32px rgba(26, 60, 110, 0.20);
}

.gc-card--featured:hover {
    border-color: #fd1616;
    -webkit-box-shadow: 0 22px 50px rgba(253, 22, 22, 0.18);
    box-shadow: 0 22px 50px rgba(253, 22, 22, 0.18);
}

/* ── Image area ── */
.gc-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.gc-card__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.45s ease;
    transition: transform 0.45s ease;
}

.gc-card:hover .gc-card__img-wrap img {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}

/* Dark gradient overlay on image */
.gc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 64, 0.72) 0%, rgba(15, 31, 64, 0.08) 55%, transparent 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    padding: 14px 16px;
}

.gc-card__category {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 3px 10px;
    border-radius: 20px;
}

/* Badge (top-right ribbon) */
.gc-card__badge {
    position: absolute;
    top: 14px;
    right: 0;
    background-color: #1a3c6e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px 4px 10px;
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: -3px 3px 10px rgba(26, 60, 110, 0.35);
    box-shadow: -3px 3px 10px rgba(26, 60, 110, 0.35);
}

.gc-card__badge--red {
    background-color: #fd1616;
    -webkit-box-shadow: -3px 3px 10px rgba(253, 22, 22, 0.35);
    box-shadow: -3px 3px 10px rgba(253, 22, 22, 0.35);
}

/* ── Card body ── */
.gc-card__body {
    padding: 22px 24px 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.gc-card__icon-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.gc-card__icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(26, 60, 110, 0.10);
    border: 1.5px solid rgba(26, 60, 110, 0.15);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #1a3c6e;
    font-size: 18px;
    flex-shrink: 0;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.gc-card:hover .gc-card__icon-circle {
    background-color: #1a3c6e;
    color: #ffffff;
    border-color: #1a3c6e;
}

.gc-card__icon-circle--red {
    background-color: rgba(253, 22, 22, 0.08);
    color: #fd1616;
    border-color: rgba(253, 22, 22, 0.18);
}

.gc-card:hover .gc-card__icon-circle--red {
    background-color: #fd1616;
    color: #ffffff;
    border-color: #fd1616;
}

.gc-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f1f40;
    margin-bottom: 2px;
    line-height: 1.2;
}

.gc-card__subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #1a3c6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.gc-card__desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #5c727d;
    line-height: 1.72;
    margin-bottom: 14px;
}

.gc-card__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-card__tags li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #1a3c6e;
    background-color: rgba(26, 60, 110, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 0;
    letter-spacing: 0.3px;
}

/* ── Card footer (Enroll button) ── */
.gc-card__footer {
    padding: 14px 24px 22px;
    border-top: 1px solid #f0f4f8;
}
.gc-enroll-btn-outline{background: #ffffff !important; color: #1a3c6e !important;}
.gc-enroll-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 11px 24px;
    background-color: #1a3c6e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #1a3c6e;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: background-color 0.22s ease, -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.22s ease;
    transition: background-color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
    -webkit-box-shadow: 0 4px 14px rgba(26, 60, 110, 0.22);
    box-shadow: 0 4px 14px rgba(26, 60, 110, 0.22);
}

.gc-enroll-btn:hover {
    background-color: #142d55;
    border-color: #142d55;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 22px rgba(26, 60, 110, 0.32);
    box-shadow: 0 8px 22px rgba(26, 60, 110, 0.32);
}

.gc-enroll-btn--red {
    background-color: #fd1616;
    border-color: #fd1616;
    -webkit-box-shadow: 0 4px 14px rgba(253, 22, 22, 0.28);
    box-shadow: 0 4px 14px rgba(253, 22, 22, 0.28);
}

.gc-enroll-btn--red:hover {
    background-color: #c70000;
    border-color: #c70000;
    -webkit-box-shadow: 0 8px 22px rgba(253, 22, 22, 0.38);
    box-shadow: 0 8px 22px rgba(253, 22, 22, 0.38);
}

/* ── CTA strip ── */
.gist-courses-cta {
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 28px 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gist-courses-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    margin: 0;
}


/* =============================================================
   GC-MODAL — Enrollment modal
   ============================================================= */

.gc-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

/* Header */
.gc-modal__header {
    background: linear-gradient(135deg, #1a3c6e 0%, #1e4d8c 100%);
    border-bottom: none;
    padding: 24px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
}

.gc-modal__header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.gc-modal__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
}

.gc-modal__title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.gc-modal__subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.3;
}

.gc-modal__subtitle strong {
    color: #ffd580;
    font-weight: 700;
}

/* Body */
.gc-modal__body {
    padding: 30px 28px 28px;
    background-color: #f8fafd;
}

/* Form labels */
.gc-form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #1a3c6e;
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.2px;
}

.gc-form-label i {
    margin-right: 5px;
    font-size: 11px;
    opacity: 0.75;
}

.gc-required {
    color: #fd1616;
}

/* Inputs */
.gc-form-input {
    border: 1.5px solid #d8e4f0;
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #0f1f40;
    background-color: #ffffff;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: auto;
    margin-bottom: 0;
}

.gc-form-input:focus {
    border-color: #1a3c6e;
    -webkit-box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.12);
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.12);
    outline: none;
    background-color: #ffffff;
}

.gc-form-input.is-valid {
    border-color: #1a7a4a;
}

.gc-form-input.is-invalid {
    border-color: #fd1616;
}

.gc-form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Privacy note */
.gc-form-note {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #8a9bac;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.gc-form-note i {
    color: #1a3c6e;
}

/* Submit button */
.gc-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #1a3c6e;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    -webkit-transition: background-color 0.22s ease, -webkit-transform 0.18s ease;
    transition: background-color 0.22s ease, transform 0.18s ease;
    -webkit-box-shadow: 0 6px 18px rgba(26, 60, 110, 0.28);
    box-shadow: 0 6px 18px rgba(26, 60, 110, 0.28);
}

.gc-submit-btn:hover:not(:disabled) {
    background-color: #142d55;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

.gc-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* Success state */
.gc-form-success {
    text-align: center;
    padding: 20px 10px 10px;
}

.gc-success-icon {
    font-size: 56px;
    color: #1a7a4a;
    margin-bottom: 14px;
    line-height: 1;
}

.gc-form-success h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f1f40;
    margin-bottom: 10px;
}

.gc-form-success p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #5c727d;
    margin-bottom: 0;
}

/* Bootstrap validation colour overrides */
.was-validated .gc-form-input:valid {
    border-color: #1a7a4a;
}

.was-validated .gc-form-input:invalid {
    border-color: #fd1616;
}

.was-validated .gc-form-input:valid:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.15);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.15);
}

.was-validated .gc-form-input:invalid:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(253, 22, 22, 0.15);
    box-shadow: 0 0 0 3px rgba(253, 22, 22, 0.15);
}

.invalid-feedback {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    color: #fd1616;
}


/* =============================================================
   WELCOME & COURSES — RESPONSIVE
   ============================================================= */

/* Laptop 992–1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .gist-section-title {
        font-size: 30px;
    }

    .gist-welcome-img-main img {
        height: 360px;
    }

    .gist-stat-num {
        font-size: 30px;
    }

    .gc-card__img-wrap {
        height: 180px;
    }
}

/* Tablet 768–991px */
@media (min-width: 768px) and (max-width: 991px) {

    .gist-welcome-section,
    .gist-courses-section {
        padding: 70px 0 60px;
    }

    .gist-section-title {
        font-size: 28px;
    }

    .gist-welcome-img-main img {
        height: 320px;
    }

    .gist-welcome-badge {
        display: none;
    }

    .gist-stat-num {
        font-size: 28px;
    }

    .gist-stat-item {
        padding: 22px 14px;
    }

    .gist-courses-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .gc-card__img-wrap {
        height: 175px;
    }

    .gc-modal__body {
        padding: 22px 18px 20px;
    }
}

/* Mobile ≤767px */
@media (max-width: 767px) {

    .gist-welcome-section,
    .gist-courses-section {
        padding: 56px 0 48px;
    }

    .gist-section-title {
        font-size: 24px;
    }

    .gist-section-head {
        margin-bottom: 32px;
    }

    .gist-welcome-img-main img {
        height: 240px;
    }

    .gist-welcome-img-wrap {
        margin-bottom: 40px;
    }

    .gist-welcome-badge {
        display: none;
    }

    .gist-welcome-lead {
        font-size: 15px;
    }

    .gist-welcome-body {
        font-size: 14px;
    }

    .gist-stat-num {
        font-size: 26px;
    }

    .gist-stat-item {
        padding: 18px 10px;
    }

    .gist-stat-lbl {
        font-size: 11px;
    }

    /* Course cards */
    .gc-card__img-wrap {
        height: 190px;
    }

    .gc-card__body {
        padding: 18px 18px 12px;
    }

    .gc-card__footer {
        padding: 12px 18px 18px;
    }

    .gist-courses-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }

    .gist-welcome-actions {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gist-btn-primary,
    .gist-btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Modal */
    .gc-modal__header {
        padding: 18px 20px;
    }

    .gc-modal__body {
        padding: 20px 16px 18px;
    }

    .gc-modal__title {
        font-size: 16px;
    }

    .gc-modal__icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}


/* =============================================================
   GIST FOOTER
   Primary: #1a3c6e  |  Accent: #fd1616
   ============================================================= */

/* ── Variables (local) ── */
.gist-footer {
    --gf-bg-top: #0d2145;
    /* darkest navy  — top band      */
    --gf-bg-body: #112952;
    /* mid navy      — main columns  */
    --gf-bg-copy: #0a1a38;
    /* deepest navy  — copyright bar */
    --gf-accent: #fd1616;
    --gf-primary: #1a3c6e;
    --gf-text: rgba(255, 255, 255, 0.70);
    --gf-text-light: rgba(255, 255, 255, 0.45);
    --gf-border: rgba(255, 255, 255, 0.08);
    --gf-link-hover: #fd1616;
    font-family: 'Nunito Sans', sans-serif;
}


/* ── TOP BAND ─────────────────────────────────────────────── */

.gist-footer__top {
    /* background-color: var(--gf-bg-top); */
    border-bottom: 1px solid var(--gf-border);
    padding: 28px 0;
}

.gist-footer__brand {
    display: inline-block;
}

.gist-footer__logo {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    /* slight brightness so logo reads on dark bg */
    -webkit-filter: brightness(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.30));
    filter: brightness(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.30));
}

.gist-footer__tagline {
    font-size: 13.5px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 440px;
}

/* Social row */
.gist-footer__social-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.gist-footer__social-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
}

.gist-footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gist-footer__social-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid #000;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: background-color 0.22s ease, border-color 0.22s ease,
        color 0.22s ease, -webkit-transform 0.22s ease;
    transition: background-color 0.22s ease, border-color 0.22s ease,
        color 0.22s ease, transform 0.22s ease;
}

.gist-footer__social-link:hover {
    background-color: var(--gf-accent);
    border-color: var(--gf-accent);
    color: #ffffff;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}


/* ── MAIN BODY ────────────────────────────────────────────── */

.gist-footer__body {
    background-color: var(--gf-bg-body);
    padding: 60px 0 50px;
}

/* Widget heading */
.gist-footer__widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

.gist-footer__widget-title span {
    position: relative;
    z-index: 1;
}

/* Underline rule with accent dot */
.gist-footer__widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background-color: var(--gf-accent);
    border-radius: 2px;
}

/* About text */
.gist-footer__about-text {
    font-size: 13.5px;
    color: var(--gf-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact mini list */
.gist-footer__contact-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.gist-footer__contact-mini li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0;
}

.gist-footer__ci-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(253, 22, 22, 0.15);
    border: 1px solid rgba(253, 22, 22, 0.22);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fd6060;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gist-footer__ci-text {
    font-size: 13px;
    color: var(--gf-text);
    line-height: 1.55;
}

.gist-footer__ci-text a {
    color: var(--gf-text);
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.gist-footer__ci-text a:hover {
    color: var(--gf-accent);
}

/* Nav link columns */
.gist-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.gist-footer__links li {
    margin-top: 0;
}

.gist-footer__links li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--gf-text);
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: color 0.2s ease, gap 0.2s ease, padding-left 0.2s ease;
    transition: color 0.2s ease, gap 0.2s ease, padding-left 0.2s ease;
}

.gist-footer__links li a i {
    font-size: 9px;
    color: var(--gf-accent);
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
}

.gist-footer__links li a:hover {
    color: #ffffff;
    padding-left: 6px;
    gap: 12px;
}

.gist-footer__links li a:hover i {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

/* Newsletter col */
.gist-footer__newsletter-text {
    font-size: 13.5px;
    color: var(--gf-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.gist-footer__newsletter-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}

.gist-footer__newsletter-row:focus-within {
    border-color: rgba(255, 255, 255, 0.45);
}

.gist-footer__nl-input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: rgba(255, 255, 255, 0.07);
    border: none;
    padding: 11px 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #ffffff;
    outline: none;
    min-width: 0;
    /* reset theme input styles */
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gist-footer__nl-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.gist-footer__nl-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.gist-footer__nl-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.gist-footer__nl-input--error {
    border-color: var(--gf-accent) !important;
}

.gist-footer__nl-btn {
    background-color: var(--gf-accent);
    border: none;
    padding: 0 18px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gist-footer__nl-btn:hover {
    background-color: #c70000;
}

/* Enroll CTA block */
.gist-footer__enroll-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 14px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.gist-footer__enroll-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.gist-footer__enroll-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.gist-footer__enroll-text span {
    font-size: 12px;
    color: var(--gf-text);
}

.gist-footer__enroll-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background-color: var(--gf-accent);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: background-color 0.22s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.22s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.gist-footer__enroll-btn:hover {
    background-color: #c70000;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Affiliation badges */
.gist-footer__affil {
    margin-top: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gist-footer__affil-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gf-text-light);
    white-space: nowrap;
}

.gist-footer__affil-badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.gist-footer__affil-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    padding: 3px 9px;
    border-radius: 4px;
}


/* ── COPYRIGHT BAR ─────────────────────────────────────────── */

.gist-footer__copyright {
    background-color: var(--gf-bg-copy);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
}

.gist-footer__copy-text {
    font-size: 13px;
    color: var(--gf-text-light);
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.gist-footer__copy-links {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.gist-footer__copy-links li {
    margin-top: 0;
}

.gist-footer__copy-links li+li::before {
    content: '·';
    padding: 0 8px;
    color: var(--gf-text-light);
}

.gist-footer__copy-links li a {
    font-size: 12.5px;
    color: var(--gf-text-light);
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.gist-footer__copy-links li a:hover {
    color: #ffffff;
}


/* ── FOOTER RESPONSIVE ─────────────────────────────────────── */

/* Tablet 768–991px */
@media (min-width: 768px) and (max-width: 991px) {
    .gist-footer__body {
        padding: 48px 0 40px;
    }

    .gist-footer__top {
        padding: 22px 0;
    }

    .gist-footer__social-row {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .gist-footer__logo {
        height: 54px;
    }

    .gist-footer__enroll-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

/* Mobile ≤767px */
@media (max-width: 767px) {
    .gist-footer__top {
        padding: 20px 0;
    }

    .gist-footer__body {
        padding: 40px 0 32px;
    }

    .gist-footer__logo {
        height: 48px;
    }

    .gist-footer__tagline {
        font-size: 13px;
        max-width: 100%;
    }

    .gist-footer__social-row {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .gist-footer__social-label {
        display: none;
    }

    .gist-footer__widget-title {
        font-size: 13px;
    }

    .gist-footer__enroll-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .gist-footer__enroll-btn {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gist-footer__copy-links {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .gist-footer__copy-text {
        text-align: center;
    }

    .gist-footer__affil {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}


/* =============================================================
   GIST — CALL TO ACTION SECTION
   ============================================================= */

.gist-cta-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    /* Deep navy base identical to stats bar, ties section to site palette */
    background-color: #0f1f40;
    /* Subtle diagonal texture */
    background-image:
        linear-gradient(135deg, #1a3c6e 0%, #0f1f40 55%, #0a1830 100%);
}

/* ── Decorative blurred shapes ── */
.gist-cta__bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.gist-cta__bg-shape--left {
    width: 520px;
    height: 520px;
    top: -180px;
    left: -160px;
    background: radial-gradient(circle,
            rgba(26, 60, 110, 0.55) 0%,
            transparent 70%);
}

.gist-cta__bg-shape--right {
    width: 420px;
    height: 420px;
    bottom: -140px;
    right: -100px;
    background: radial-gradient(circle,
            rgba(253, 22, 22, 0.18) 0%,
            transparent 70%);
}

/* ── Left text block ── */
.gist-cta__text-block {
    padding-right: 24px;
}

.gist-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    background-color: rgba(253, 22, 22, 0.18);
    border: 1px solid rgba(253, 22, 22, 0.35);
    color: #ff8080;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    -webkit-animation: gist-cta-pulse 2.8s ease-in-out infinite;
    animation: gist-cta-pulse 2.8s ease-in-out infinite;
}

@-webkit-keyframes gist-cta-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.70;
    }
}

@keyframes gist-cta-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.70;
    }
}

.gist-cta__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    /* Gradient text highlight on key word */
    background: linear-gradient(90deg, #ffffff 40%, #ffd580 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gist-cta__sub {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Trust signal list */
.gist-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gist-cta__trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}

.gist-cta__trust li i {
    color: #4cd97b;
    /* green tick — trust/positive signal */
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Right CTA card ── */
.gist-cta__card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 36px 32px 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    -webkit-box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    position: relative;
    /* Subtle top accent bar */
    border-top: 4px solid #1a3c6e;
}

.gist-cta__card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, #1a3c6e 0%, #fd1616 100%);
    border-radius: 0 0 4px 4px;
}

.gist-cta__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a3c6e 0%, #1e4d8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 16px;
    -webkit-box-shadow: 0 8px 24px rgba(26, 60, 110, 0.35);
    box-shadow: 0 8px 24px rgba(26, 60, 110, 0.35);
    /* gentle spin-in on scroll (CSS only) */
    -webkit-animation: gist-cta-icon-float 4s ease-in-out infinite;
    animation: gist-cta-icon-float 4s ease-in-out infinite;
}

@-webkit-keyframes gist-cta-icon-float {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes gist-cta-icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.gist-cta__card-prompt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a3c6e;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* Primary button — "Join Today" */
.gist-cta__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1a3c6e 0%, #1e4d8c 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease,
        background 0.22s ease;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    -webkit-box-shadow: 0 8px 24px rgba(26, 60, 110, 0.35);
    box-shadow: 0 8px 24px rgba(26, 60, 110, 0.35);
    margin-bottom: 10px;
    text-decoration: none;
}

.gist-cta__btn-primary:hover {
    background: linear-gradient(135deg, #142d55 0%, #1a3c6e 100%);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 14px 32px rgba(26, 60, 110, 0.45);
    box-shadow: 0 14px 32px rgba(26, 60, 110, 0.45);
    color: #ffffff;
}

/* Secondary button — phone CTA */
.gist-cta__btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 28px;
    background-color: transparent;
    color: #1a3c6e;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 2px solid #1a3c6e;
    border-radius: 10px;
    text-decoration: none;
    -webkit-transition: background-color 0.22s ease, color 0.22s ease,
        -webkit-transform 0.22s ease;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    margin-bottom: 16px;
}

.gist-cta__btn-secondary:hover {
    background-color: #1a3c6e;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Disclaimer note */
.gist-cta__card-note {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11.5px;
    color: #8a9bac;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gist-cta__card-note i {
    font-size: 10px;
}


/* ── CTA RESPONSIVE ─────────────────────────────────────────── */

/* Laptop 992–1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .gist-cta__heading {
        font-size: 38px;
    }

    .gist-cta-section {
        padding: 72px 0;
    }
}

/* Tablet 768–991px */
@media (min-width: 768px) and (max-width: 991px) {
    .gist-cta-section {
        padding: 64px 0;
    }

    .gist-cta__heading {
        font-size: 34px;
    }

    .gist-cta__text-block {
        padding-right: 0;
        margin-bottom: 8px;
    }

    .gist-cta__card {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Mobile ≤767px */
@media screen and (max-width: 590px) {
    .gist-affiliation-logos {
        display: none;
    }
}

@media (max-width: 767px) {
    .gist-cta-section {
        padding: 52px 0;
    }

    .gist-cta__heading {
        font-size: 28px;
    }

    .gist-cta__sub {
        font-size: 14px;
    }

    .gist-cta__text-block {
        padding-right: 0;
    }

    .gist-cta__trust {
        gap: 8px 16px;
    }

    .gist-cta__trust li {
        font-size: 12px;
    }

    .gist-cta__card {
        max-width: 100%;
        padding: 28px 22px 22px;
    }

    .gist-cta__card-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}


/* =============================================================
   GIST — GALLERY SECTION
   Primary #1a3c6e · Accent #fd1616
   ============================================================= */

.gist-gallery-section {
    background-color: #f8fafd;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Same soft radial blobs used in the welcome section for consistency */
.gist-gallery-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 60, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.gist-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 22, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gist-gallery-intro {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #5c727d;
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 0;
}

.gcat-card__thumb img {
    height: 200px;
    width: 100%;
}

/* Category Card Label */
.gcat-card__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
}

/* Category Name */
.gcat-card__name {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.2px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Arrow */
.gcat-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #2563eb;
    font-size: 13px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.gcat-card:hover .gcat-card__name {
    color: #2563eb;
    transform: translateX(3px);
}

.gcat-card:hover .gcat-card__arrow {
    background: #2563eb;
    color: #ffffff;
    transform: translateX(4px);
}

.gcat-card:hover .gcat-card__label {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}




/* =============================================================
   GIST — FACILITIES SECTION
   Clean white section — breathing space between dark sections.
   ============================================================= */

.gist-facilities-section {
    background-color: #ffffff;
    padding: 80px 0 88px;
    border-top: 1px solid #edf2f9;
    border-bottom: 1px solid #edf2f9;
}


/* ── Facility card ───────────────────────────────────────────── */

.gist-fac-card {
    background-color: #ffffff;
    border: 1.5px solid #e4edf8;
    border-left: 4px solid #e4edf8;
    border-radius: 12px;
    padding: 32px 26px 28px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    -webkit-box-shadow: 0 2px 12px rgba(26,60,110,0.06);
            box-shadow: 0 2px 12px rgba(26,60,110,0.06);
    -webkit-transition: border-color 0.24s ease,
                        -webkit-box-shadow 0.24s ease,
                        -webkit-transform 0.24s ease;
            transition: border-color 0.24s ease,
                        box-shadow 0.24s ease,
                        transform 0.24s ease;
}

.gist-fac-card:hover {
    border-color: #1a3c6e;
    border-left-color: #1a3c6e;
    -webkit-box-shadow: 0 8px 28px rgba(26,60,110,0.13);
            box-shadow: 0 8px 28px rgba(26,60,110,0.13);
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
}


/* ── Icon square ── */

.gist-fac-card__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background-color: #edf2f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #1a3c6e;
    font-size: 24px;
    flex-shrink: 0;
    margin-bottom: 20px;
    -webkit-transition: background-color 0.24s ease, color 0.24s ease;
            transition: background-color 0.24s ease, color 0.24s ease;
}

.gist-fac-card:hover .gist-fac-card__icon-wrap {
    background-color: #1a3c6e;
    color: #ffffff;
}


/* ── Card body ── */

.gist-fac-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    width: 100%;
}

.gist-fac-card__badge {
    display: inline-block;
    background-color: rgba(253,22,22,0.08);
    border: 1px solid rgba(253,22,22,0.22);
    color: #c70000;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 4px;
}

.gist-fac-card__badge--blue {
    background-color: rgba(26,60,110,0.08);
    border-color: rgba(26,60,110,0.22);
    color: #1a3c6e;
}

.gist-fac-card__badge--gold {
    background-color: rgba(160,110,0,0.08);
    border-color: rgba(160,110,0,0.22);
    color: #8a6000;
}

.gist-fac-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f1f40;
    line-height: 1.3;
    margin-bottom: 8px;
    -webkit-transition: color 0.24s ease;
            transition: color 0.24s ease;
}

.gist-fac-card:hover .gist-fac-card__title {
    color: #1a3c6e;
}

.gist-fac-card__desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13.5px;
    color: #5c727d;
    line-height: 1.75;
    margin-bottom: 0;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (min-width: 992px) and (max-width: 1199px) {
    .gist-fac-card          { padding: 28px 22px 24px; }
    .gist-fac-card__title   { font-size: 16px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gist-facilities-section { padding: 64px 0 70px; }
    .gist-fac-card            { padding: 26px 20px 22px; }
    .gist-fac-card__icon-wrap { width: 52px; height: 52px; font-size: 21px; }
}

@media (max-width: 767px) {
    .gist-facilities-section { padding: 52px 0 58px; }
    .gist-fac-card            { padding: 24px 18px 20px; }
    .gist-fac-card__icon-wrap { width: 50px; height: 50px; font-size: 20px; margin-bottom: 18px; }
    .gist-fac-card__title     { font-size: 15.5px; }
    .gist-fac-card__desc      { font-size: 13px; }
}

@media (max-width: 479px) {
    .gist-facilities-section { padding: 42px 0 48px; }
    .gist-fac-card__icon-wrap { width: 46px; height: 46px; font-size: 18px; border-radius: 10px; }
}

/* =============================================================
   GIST — TESTIMONIALS SECTION
   Light section — sits after Facilities (white) and before
   the dark CTA, providing a natural rhythm.
   ============================================================= */

.gist-testi-section {
    background-color: #f4f7fc;      /* same tint used in Welcome section */
    padding: 88px 0 96px;
    border-top: 1px solid #edf2f9;
}

.gist-testi-intro {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #5c727d;
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 0;
}


/* ── Testimonial card ───────────────────────────────────────── */

.gist-testi-card {
    background-color: #ffffff;
    border: 1.5px solid #e4edf8;
    border-radius: 14px;
    padding: 30px 28px 26px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0 2px 14px rgba(26,60,110,0.06);
            box-shadow: 0 2px 14px rgba(26,60,110,0.06);
    -webkit-transition: border-color 0.24s ease,
                        -webkit-box-shadow 0.24s ease,
                        -webkit-transform 0.24s ease;
            transition: border-color 0.24s ease,
                        box-shadow 0.24s ease,
                        transform 0.24s ease;
    position: relative;
}

/* Featured / highlighted card */
.gist-testi-card--featured {
    border-color: #1a3c6e;
    -webkit-box-shadow: 0 6px 24px rgba(26,60,110,0.12);
            box-shadow: 0 6px 24px rgba(26,60,110,0.12);
}

.gist-testi-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background-color: #1a3c6e;
    border-radius: 0 0 4px 4px;
}

/* Hover — all cards get a lift and navy border */
.gist-testi-card:hover {
    border-color: #1a3c6e;
    -webkit-box-shadow: 0 10px 32px rgba(26,60,110,0.13);
            box-shadow: 0 10px 32px rgba(26,60,110,0.13);
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
}


/* ── Card top row: quote icon + stars ── */

.gist-testi-card__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 18px;
}

.gist-testi-card__quote {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #edf2f9;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #1a3c6e;
    font-size: 14px;
    flex-shrink: 0;
    -webkit-transition: background-color 0.22s ease, color 0.22s ease;
            transition: background-color 0.22s ease, color 0.22s ease;
}

.gist-testi-card:hover .gist-testi-card__quote {
    background-color: #1a3c6e;
    color: #ffffff;
}

/* Featured card quote always filled */
.gist-testi-card--featured .gist-testi-card__quote {
    background-color: #1a3c6e;
    color: #ffffff;
}

.gist-testi-card__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}

.gist-testi-card__stars i {
    color: #f5a623;         /* warm amber — distinct from any brand colour */
    font-size: 13px;
}


/* ── Review text ── */

.gist-testi-card__text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #5c727d;
    line-height: 1.80;
    margin-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;        /* pushes author row to the bottom */
}


/* ── Author row ── */

.gist-testi-card__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf2f9;
}

.gist-testi-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #edf2f9;
    -webkit-transition: border-color 0.22s ease;
            transition: border-color 0.22s ease;
}

.gist-testi-card:hover .gist-testi-card__avatar {
    border-color: #1a3c6e;
}

.gist-testi-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
}

.gist-testi-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f1f40;
    line-height: 1.2;
    display: block;
}

.gist-testi-card__role {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a3c6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}
.sticky-icon {
     z-index: 1;
     position: fixed;
     top: 30%;
     right: 0%;
     width: 220px;
     display: flex;
     flex-direction: column;
 }

 .sticky-icon a {
     transform: translate(160px, 0px);
     border-radius: 50px 0px 0px 50px;
     text-align: left;
     margin: 2px;
     text-decoration: none;
     text-transform: uppercase;
     padding: 10px;
     font-size: 16px;
     transition: all 0.8s;
     font-family: var(--font__manrope) !important;
 }

 .sticky-icon a:hover {
     color: #FFF;
     transform: translate(0px, 0px);
 }

 .sticky-icon a:hover i {
     transform: rotate(360deg);
 }

 /*.search_icon a:hover i  {
	    transform:rotate(360deg);}*/
 .Facebook {
     background-color: #2C80D3;
     color: #FFF;
 }

 .Youtube {
     background-color: #fa0910;
     color: #FFF;
 }

 .Twitter {
     background-color: #53c5ff;
     color: #FFF;
 }

 .Instagram {
     background-color: #FD1D1D;
     color: #FFF;
 }
 .linkedin{
     background-color:#0a66c2;
     color:#fff;
 }

 .Google {
     background-color: #d34836;
     color: #FFF;
 }

 .sticky-icon a i {
     background-color: #FFF;
     height: 40px;
     width: 40px;
     color: #000;
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     margin-right: 20px;
     transition: all 0.5s;
 }

 .sticky-icon a i.fa-facebook-f {
     background-color: #FFF;
     color: #2C80D3;
 }

 .sticky-icon a i.fa-linkedin {
     background-color: #FFF;
     color: #d34836;
 }

 .sticky-icon a i.fa-instagram {
     background-color: #FFF;
     color: #FD1D1D;
 }

 .sticky-icon a i.fa-youtube {
     background-color: #FFF;
     color: #fa0910;
 }

 .sticky-icon a i.fa-twitter {
     background-color: #FFF;
     color: #53c5ff;
 }
p{
			font-family: 'Poppins', sans-serif !important;
		}
		li{
			font-family: 'Poppins', sans-serif !important;
		}
		table{
		    font-family: 'Poppins', sans-serif !important;
		}
		.course-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 0 0 15px 15px;
    padding: 11px 12px 12px;
    box-shadow: 0 8px 22px rgba(30, 70, 110, 0.10);
    overflow: hidden;
}
       .career-card {
            background: #ffffff;
            border: 1px solid #e6e6e6;
            border-radius: 9px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            padding: 30px 26px;
            margin-bottom: 15px;
        }

        .career-title {
            font-size: 36px;
            line-height: 1.2;
            font-weight: 500;
            color: #062c4d;
            margin-bottom: 26px;
        }

        .career-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .career-list li {
            display: flex;
            align-items: center;
            gap: 13px;
            font-size: 16px;
            color: #00366d;
            margin-bottom: 18px;
        }

        .career-list li:last-child {
            margin-bottom: 0;
        }

        .check {
            color: #ff8a00;
            font-size: 19px;
            font-weight: 700;
            line-height: 1;
        }

        @media (max-width: 576px) {
            .career-card {
                padding: 24px 20px;
            }

            .career-title {
                font-size: 30px;
            }
        }
        
/********FAQ STYLE************/        
.faq-section {
    padding: 30px 0;
    background: #fff;
}


/* Intro */

.faq-intro {
    padding-right: 40px;
}

.faq-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    color: #151515;
    margin: 0 0 22px;
}

.faq-description {
    font-size: 15px;
    line-height: 1.7;
    color: #3f3f3f;
    max-width: 480px;
}


/* Zigzag */

.zigzag {
    width: 100px;
    height: 18px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.zigzag::before {
    content: "";
    position: absolute;
    width: 105px;
    height: 15px;

    background:
        linear-gradient(
            135deg,
            transparent 0 35%,
            #08245e 36% 50%,
            transparent 51%
        );

    background-size: 18px 18px;
}


/* FAQ Wrapper */

.faq-wrapper {
    background: #f7f7f7;
    border-radius: 25px;
    padding: 15px;
}


/* FAQ Item */

.faq-item {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}


/* Question */

.faq-question {
    width: 100%;
    border: 0;
    background: #fff;

    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    font-size: 16px;
    font-weight: 700;
    color: #151515;

    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #062465;
}


/* Icon */

.faq-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #062465;
    color: #fff;

    font-size: 22px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* Change + to − when open */

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
}


/* Answer */

.faq-answer {
    padding: 0 25px 22px;
}

.faq-answer p {
    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #555;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .faq-intro {
        padding-right: 0;
    }

    .faq-title {
        font-size: 36px;
    }

}


@media (max-width: 575px) {

    .faq-section {
        padding: 45px 15px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-description {
        font-size: 14px;
    }

    .faq-wrapper {
        border-radius: 20px;
        padding: 10px;
    }

    .faq-question {
        padding: 18px;
        font-size: 14px;
        gap: 15px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 19px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }

}



/* ── Responsive ─────────────────────────────────────────────── */

@media (min-width: 992px) and (max-width: 1199px) {
    .gist-testi-section   { padding: 72px 0 80px; }
    .gist-testi-card      { padding: 26px 24px 22px; }
    .gist-testi-card__text{ font-size: 13.5px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gist-testi-section   { padding: 64px 0 70px; }
    .gist-testi-card      { padding: 24px 22px 20px; }
    .gist-testi-card__text{ font-size: 13.5px; }
}

@media (max-width: 767px) {
    .gist-testi-section      { padding: 52px 0 58px; }
    .gist-testi-card         { padding: 22px 18px 18px; }
    .gist-testi-card__text   { font-size: 13.5px; }
    .gist-testi-card__author { margin-top: 20px; padding-top: 16px; }
}

@media (max-width: 479px) {
    .gist-testi-section      { padding: 42px 0 48px; }
    .gist-testi-card         { padding: 20px 16px 16px; }
    .gist-testi-card__text   { font-size: 13px; }
    .gist-testi-card__name   { font-size: 13px; }
    .gist-testi-card__avatar { width: 40px; height: 40px; }
}
