:root {
    --clr-navy-deep: #00133b;
    --clr-navy: #001e5c;
    --clr-blue: #0b3282;
    --clr-blue-primary: #1a4ba8;
    --clr-orange-deep: #c93c0b;
    --clr-orange: #fd5518;
    --clr-orange-light: #ff8a5b;
    --clr-accent: #ff8a5b;
    --clr-text: #14203a;
    --clr-text-muted: #5c6c86;
    --clr-border: #e3eaf3;
    --clr-surface: #f4f8fc;
    --clr-surface-alt: #eaf2fa;
    --clr-white: #fff;
    --clr-orange-dark: #a93008;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-small: 0 1px 2px rgba(0, 30, 92, .06), 0 4px 12px rgba(0, 30, 92, .05);
    --shadow-medium: 0 8px 30px rgba(0, 30, 92, .10);
    --shadow-large: 0 24px 60px rgba(0, 30, 92, .16);
    --container-width: 1180px;
    --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

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



html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--clr-text);
    background: var(--clr-white);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--clr-blue-primary);
    text-decoration: none
}

a:hover {
    color: var(--clr-orange-deep)
}

h1,
h2,
h3,
h4 {
    margin: 0 0 .5em;
    line-height: 1.18;
    letter-spacing: -.02em;
    font-weight: 800;
    color: var(--clr-navy)
}

h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.5rem)
}

h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem)
}

h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem)
}

h4 {
    font-size: 1.05rem
}

p {
    margin: 0 0 1.1em
}

ul,
ol {
    margin: 0 0 1.1em;
    padding-left: 1.25em
}

li {
    margin-bottom: .4em
}

hr {
    border: 0;
    border-top: 1px solid var(--clr-border);
    margin: 2.5rem 0
}

:focus-visible {
    outline: 3px solid var(--clr-orange);
    outline-offset: 3px;
    border-radius: 4px
}

.wrap {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 22px
}

.wrap-narrow {
    max-width: 820px
}

.section {
    padding: 76px 0
}

.section-sm {
    padding: 52px 0
}

.soft {
    background: var(--clr-surface)
}

.dark {
    background: var(--clr-navy);
    color: #d8e4f2
}

.dark h1,
.dark h2,
.dark h3,
.dark h4 {
    color: #fff
}

.dark a {
    color: var(--clr-orange-light)
}

.center {
    text-align: center
}

.lead {
    font-size: 1.12rem;
    color: var(--clr-text-muted)
}

.dark .lead {
    color: #a9c2dd
}

.mono-label {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-orange-deep);
    margin-bottom: .9rem;
}

.mono-label::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--clr-orange);
    border-radius: 2px
}

.dark .mono-label {
    color: var(--clr-orange-light)
}

.dark .mono-label::before {
    background: var(--clr-orange-light)
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--clr-navy);
    color: #fff;
    padding: 12px 18px;
    z-index: 999;
    border-radius: 0 0 8px 0;
}

.skip:focus {
    left: 0
}


/* ==========================================================
   BUTTONS - START
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    padding: .78em 1.5em;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-orange-deep);
    color: #fff;
    box-shadow: 0 6px 18px rgba(253, 85, 24, .30)
}

.btn-primary:hover {
    background: var(--clr-orange-dark);
    color: #fff;
    transform: translateY(-2px)
}

.btn-navy {
    background: var(--clr-navy);
    color: #fff
}

.btn-navy:hover {
    background: var(--clr-blue);
    color: #fff;
    transform: translateY(-2px)
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: var(--clr-border);
}

.card-foot .btn-ghost {
    background: transparent;
    color: var(--clr-navy);
    border-color: var(--line);
}

.cp.btn-ghost {
    background: transparent;
    color: var(--clr-navy) !important;
    border-color: var(--line) !important;
}


.bg .btn-ghost {
    background: transparent;
    color: #001e5c;
    border-color: #e3eaf3;
}

.btn-ghost:hover {
    border-color: var(--clr-navy);
    color: var(--clr-navy);
    background: var(--clr-surface)
}

.dark .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .35)
}

.dark .btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.btn-sm {
    padding: .55em 1.1em;
    font-size: .85rem
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}


/* ==========================================================
   BUTTONS - END
   ========================================================== */


/* ==========================================================
   TOP BAR - START
   ========================================================== */

.topbar {
    background: var(--clr-navy-deep);
    color: #c8dcf2;
    font-size: .82rem
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 42px
}

.ticker {
    overflow: hidden;
    flex: 1;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.ticker-track {
    display: inline-flex;
    gap: 34px;
    white-space: nowrap;
    animation: ticker 26s linear infinite;
    padding-left: 100%
}

.ticker-track span {
    color: var(--clr-accent);
    font-weight: 700;
    letter-spacing: .06em
}

@keyframes ticker {
    to {
        transform: translateX(-100%)
    }
}

@media (prefers-reduced-motion:reduce) {
    .ticker-track {
        animation: none;
        padding-left: 0
    }
}

.topbar nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0
}

.topbar nav a {
    color: #c8dcf2
}

.topbar nav a:hover {
    color: #fff
}

@media(max-width:860px) {
    .topbar nav {
        display: none
    }
}


/* ==========================================================
   TOP BAR - END
   ========================================================== */


/* ==========================================================
   HEADER - START
   ========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--clr-border);
}

.site-header.scrolled {
    box-shadow: var(--shadow-small)
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 76px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.brand svg {
    flex-shrink: 0
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand-name {
    font-weight: 900;
    font-size: 1.18rem;
    color: var(--clr-navy);
    letter-spacing: -.02em
}

.brand-sub {
    font-size: .63rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    font-weight: 700
}

.main-nav {
    margin-left: auto
}

.main-nav ul {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    display: block;
    padding: .55em .85em;
    border-radius: 9px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--clr-text);
}

.main-nav a:hover {
    background: var(--clr-surface);
    color: var(--clr-blue)
}

.main-nav a.active {
    color: var(--clr-orange-deep);
    background: rgba(253, 85, 24, .10)
}

.nav-cta {
    flex-shrink: 0
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--clr-border);
    background: #fff;
    border-radius: 11px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-navy);
    position: relative
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--clr-navy)
}

.nav-toggle span::before {
    top: -6px
}

.nav-toggle span::after {
    top: 6px
}

@media(max-width:1000px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--clr-border);
        padding: 10px 22px 20px;
        display: none;
        box-shadow: var(--shadow-medium);
    }

    .main-nav.open {
        display: block
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2px
    }

    .main-nav a {
        padding: .8em .6em;
        border-bottom: 1px solid var(--clr-border)
    }

    .nav-toggle {
        display: flex;
        margin-left: auto
    }

    .nav-cta {
        display: none
    }
}


/* ==========================================================
   HEADER - END
   ========================================================== */


/* ==========================================================
   HERO - START
   ========================================================== */

.hero {
    /*position: relative;*/
    /*color: #fff;*/
    /*overflow: hidden;*/
    /*background: linear-gradient(135deg, var(--clr-navy-deep) 0%, var(--clr-navy) 45%, #0b3282 100*/
    
    
        position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: #062a5c  center / cover no-repeat;
    color: #fff;
    isolation: isolate;
}

/*.hero::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    opacity: .5;*/
/*    background:*/
/*        radial-gradient(700px 380px at 78% 12%, rgba(253, 85, 24, .30), transparent 65%),*/
/*        radial-gradient(560px 380px at 8% 88%, rgba(26, 75, 168, .55), transparent 62%);*/
/*}*/

/*.hero::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    opacity: 0;*/
/*    background-image: linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);*/
/*    background-size: 64px 64px;*/
/*    mask-image: radial-gradient(circle at 65% 40%, #000, transparent 72%);*/
/*}*/


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(4,29,64,.96) 0%,rgba(6,42,92,.86) 48%,rgba(11,78,162,.30) 100%);
    z-index: -1;
}

.hero .wrap {
    position: relative;
    z-index: 2
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 52px;
    align-items: center;
    padding: 88px 0 74px
}

.hero h1 {
    color: #fff;
    margin-bottom: .35em
}

.hero .eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clr-orange-light);
    margin-bottom: 1.1rem;
}

.hero p {
    color: #c5d8ec;
    font-size: 1.1rem;
    max-width: 56ch
}

.hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-lg);
    padding: 30px;
    backdrop-filter: blur(8px);
}

.hero-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.hero-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #d5e5f5;
    font-size: .95rem
}

.hero-list li:last-child {
    border-bottom: 0
}

.tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--clr-orange);
    color: #04242a;
    display: grid;
    place-items: center;
    font-size: .7rem;
    font-weight: 900;
    margin-top: 2px
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 0 54px
    }
}

.page-head {
    background: linear-gradient(135deg, var(--clr-navy-deep), var(--clr-blue));
    color: #fff;
    padding: 66px 0 58px;
    position: relative;
    overflow: hidden;
}

.page-head::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background: radial-gradient(620px 300px at 85% 20%, rgba(253, 85, 24, .32), transparent 65%);
}

.page-head .wrap {
    position: relative;
    z-index: 2
}

.page-head h1 {
    color: #fff;
    margin-bottom: .25em
}

.page-head p {
    color: #bed3ea;
    max-width: 70ch;
    margin: 0
}

.crumbs {
    font-size: .82rem;
    color: #93b3d3;
    margin-bottom: 1rem
}

.crumbs a {
    color: #bcd5ee
}

.crumbs span {
    opacity: .6;
    padding: 0 .4em
}


/* ==========================================================
   HERO - END
   ========================================================== */


/* ==========================================================
   STAT STRIP - START
   ========================================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden
}

.stat {
    background: #fff;
    padding: 26px 22px;
    text-align: center
}

.stat b {
    display: block;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--clr-navy);
    letter-spacing: -.03em;
    line-height: 1
}

.stat span {
    display: block;
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: .45em;
    font-weight: 600
}

@media(max-width:760px) {
    .stats {
        grid-template-columns: repeat(2, 1fr)
    }
}


/* ==========================================================
   STAT STRIP - END
   ========================================================== */


/* ==========================================================
   GRID + CARDS - START
   ========================================================== */

.grid {
    display: grid;
    gap: 24px
}

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

.g3 {
    grid-template-columns: repeat(3, 1fr)
}

.g4 {
    grid-template-columns: repeat(4, 1fr)
}

@media(max-width:980px) {
    .g4 {
        grid-template-columns: repeat(2, 1fr)
    }

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

@media(max-width:700px) {

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr
    }
}

.card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: .22s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: #cfe0ef
}

.card h3 {
    margin-bottom: .45em
}

.card p {
    color: var(--clr-text-muted);
    font-size: .95rem;
    margin-bottom: 1em
}

.card .card-foot {
    margin-top: auto;
    padding-top: 6px
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(253, 85, 24, .16), rgba(26, 75, 168, .14));
    color: var(--clr-orange-deep);
}

.icon svg {
    width: 24px;
    height: 24px
}

.dark .card {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .13)
}

.dark .card p {
    color: #a9c2dd
}

.tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .32em .75em;
    border-radius: 999px;
    background: var(--clr-surface-alt);
    color: var(--clr-blue);
    margin-bottom: .9rem;
}

.tag-teal {
    background: rgba(253, 85, 24, .13);
    color: var(--clr-orange-deep)
}

.tag-gold {
    background: rgba(253, 85, 24, .14);
    color: #b5360c
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-bottom: 1em
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: .4em
}


/* ==========================================================
   GRID + CARDS - END
   ========================================================== */


/* ==========================================================
   SPLIT FEATURE - START
   ========================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

@media(max-width:900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 34px
    }
}

.figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-blue), var(--clr-orange-deep));
    aspect-ratio: 4/3;
    display: grid;
    place-items: center;
    color: #fff;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.figure .big {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1
}

.figure p {
    color: rgba(255, 255, 255, .85);
    margin: .6em 0 0;
    font-size: .95rem
}


/* ==========================================================
   SPLIT FEATURE - END
   ========================================================== */


/* ==========================================================
   NUMBERED STEPS - START
   ========================================================== */

.steps {
    counter-reset: s;
    display: grid;
    gap: 18px
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 26px 24px 84px;
}

.step::before {
    counter-increment: s;
    content: counter(s);
    position: absolute;
    left: 24px;
    top: 22px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--clr-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.05rem;
}

.step h4 {
    margin-bottom: .3em
}

.step p {
    margin: 0;
    color: var(--clr-text-muted);
    font-size: .95rem
}


/* ==========================================================
   NUMBERED STEPS - END
   ========================================================== */


/* ==========================================================
   FILTERS - START
   ========================================================== */

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 28px;
    position: sticky;
    top: 78px;
    z-index: 20;
    box-shadow: var(--shadow-small);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.chip {
    border: 1px solid var(--clr-border);
    background: #fff;
    color: var(--clr-text);
    border-radius: 999px;
    padding: .42em 1em;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: .18s;
    font-family: inherit;
}

.chip:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange-deep)
}

.chip.active {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    color: #fff
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 300px
}

.search-box input {
    width: 100%;
    padding: .62em 1em .62em 2.4em;
    border: 1px solid var(--clr-border);
    border-radius: 999px;
    font-family: inherit;
    font-size: .9rem;
    color: var(--clr-text);
    background: var(--clr-surface);
}

.search-box input:focus {
    background: #fff;
    border-color: var(--clr-orange);
    outline: none
}

.search-box svg {
    position: absolute;
    left: .85em;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--clr-text-muted)
}

.result-count {
    font-size: .87rem;
    color: var(--clr-text-muted);
    margin-bottom: 18px
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--clr-text-muted)
}


/* ==========================================================
   FILTERS - END
   ========================================================== */


/* ==========================================================
   ACCORDION - START
   ========================================================== */

.acc {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff
}

.acc+.acc {
    margin-top: 12px
}

.acc summary {
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-weight: 700;
    color: var(--clr-navy);
    position: relative;
    list-style: none;
    font-size: 1.02rem;
}

.acc summary::-webkit-details-marker {
    display: none
}

.acc summary::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--clr-orange-deep);
    border-bottom: 2px solid var(--clr-orange-deep);
    transform: translateY(-70%) rotate(45deg);
    transition: .2s;
}

.acc[open] summary::after {
    transform: translateY(-30%) rotate(-135deg)
}

.acc summary:hover {
    background: var(--clr-surface)
}

.acc .acc-body {
    padding: 0 24px 22px;
    color: var(--clr-text-muted);
    font-size: .96rem
}

.acc .acc-body>*:last-child {
    margin-bottom: 0
}


/* ==========================================================
   ACCORDION - END
   ========================================================== */


/* ==========================================================
   TABLES - START
   ========================================================== */

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: #fff
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .94rem;
    min-width: 520px
}

th,
td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border)
}

th {
    background: var(--clr-surface);
    font-weight: 800;
    color: var(--clr-navy);
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase
}

tr:last-child td {
    border-bottom: 0
}

tbody tr:hover {
    background: var(--clr-surface)
}


/* ==========================================================
   TABLES - END
   ========================================================== */


/* ==========================================================
   PEOPLE - START
   ========================================================== */

.person {
    text-align: center
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--clr-blue), var(--clr-orange-deep));
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: .02em;
}

.person h4 {
    margin-bottom: .2em
}

.person .role {
    font-size: .87rem;
    color: var(--clr-orange-deep);
    font-weight: 700;
    margin-bottom: .6em
}

.person p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin: 0
}


/* ==========================================================
   PEOPLE - END
   ========================================================== */


/* ==========================================================
   QUOTE - START
   ========================================================== */

.quote {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-orange);
    border-radius: var(--radius-md);
    padding: 28px;
}

.quote blockquote {
    margin: 0 0 1em;
    font-family: var(--font-serif);
    font-size: 1.12rem;
    color: var(--clr-navy);
    line-height: 1.55
}

.quote cite {
    font-style: normal;
    font-size: .88rem;
    color: var(--clr-text-muted);
    font-weight: 700
}


/* ==========================================================
   QUOTE - END
   ========================================================== */


/* ==========================================================
   NEWS - START
   ========================================================== */

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.news-thumb {
    aspect-ratio: 16/9;
    border-radius: 12px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: -.02em;
    text-align: center;
    padding: 18px;
}

.nt1 {
    background: linear-gradient(135deg, #001e5c, #1a4ba8)
}

.nt2 {
    background: linear-gradient(135deg, #c93c0b, #fd5518)
}

.nt3 {
    background: linear-gradient(135deg, #0b3282, #c93c0b)
}

.nt4 {
    background: linear-gradient(135deg, #1a4ba8, #5b86d6)
}

.nt5 {
    background: linear-gradient(135deg, #001e5c, #fd5518)
}

.nt6 {
    background: linear-gradient(135deg, #00133b, #1a4ba8)
}

.news-date {
    font-size: .8rem;
    color: var(--clr-text-muted);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .5em
}


/* ==========================================================
   NEWS - END
   ========================================================== */


/* ==========================================================
   FORMS - START
   ========================================================== */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: .4em
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-navy)
}

.field input,
.field select,
.field textarea {
    padding: .78em .95em;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    background: #fff;
    color: var(--clr-text);
    width: 100%;
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--clr-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 85, 24, .13)
}

.field .err {
    font-size: .8rem;
    color: #c0392b;
    display: none
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: #c0392b
}

.field.invalid .err {
    display: block
}

.form-note {
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.form-msg {
    display: none;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(253, 85, 24, .12);
    color: var(--clr-orange-deep);
    font-weight: 700;
    font-size: .92rem;
    margin-top: 14px;
    border: 1px solid rgba(253, 85, 24, .35);
}

.form-msg.show {
    display: block
}

@media(max-width:700px) {
    .form-grid {
        grid-template-columns: 1fr
    }
}


/* ==========================================================
   FORMS - END
   ========================================================== */


/* ==========================================================
   CTA BAND - START
   ========================================================== */

.cta-band {
    background: linear-gradient(120deg, var(--clr-navy), var(--clr-orange-deep));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 52px;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.cta-band h2 {
    color: #fff
}

.cta-band p {
    color: rgba(255, 255, 255, .88);
    max-width: 60ch;
    margin-inline: auto
}

.cta-band .btn-row {
    justify-content: center;
    margin-top: 1.6em
}

@media(max-width:700px) {
    .cta-band {
        padding: 36px 24px
    }
}


/* ==========================================================
   CTA BAND - END
   ========================================================== */


/* ==========================================================
   FOOTER - START
   ========================================================== */

.site-footer {
    background: var(--clr-navy-deep);
    color: #a8c1da;
    padding: 64px 0 0;
    font-size: .93rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 34px
}

@media(max-width:1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(max-width:640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

.site-footer h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.1em
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer li {
    margin-bottom: .6em
}

.site-footer a {
    color: #a8c1da
}

.site-footer a:hover {
    color: #fff
}

.footer-brand p {
    color: #89a6c4;
    font-size: .92rem;
    max-width: 34ch
}

.footer-brand .brand-name {
    color: #fff
}

.footer-brand .brand-sub {
    color: #7f9cbc
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    place-items: center;
    color: #a8c1da;
}

.socials a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.socials svg {
    width: 17px;
    height: 17px
}

.footer-bottom {
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
}

.footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-bottom li {
    margin: 0
}


/* ==========================================================
   FOOTER - END
   ========================================================== */


/* ==========================================================
   MISC - START
   ========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-navy);
    color: #fff;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 90;
    box-shadow: var(--shadow-medium);
}

.to-top.show {
    opacity: 1;
    pointer-events: auto
}

.to-top:hover {
    background: var(--clr-orange-deep)
}

.notice {
    background: rgba(0, 30, 92, .045);
    border: 1px solid rgba(0, 30, 92, .16);
    color: #26406e;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: .9rem;
}

.notice strong {
    color: #001e5c
}

.contact-line {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px
}

.contact-line .icon {
    width: 40px;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 11px
}

.contact-line b {
    display: block;
    color: var(--clr-navy);
    font-size: .92rem
}

.contact-line span {
    color: var(--clr-text-muted);
    font-size: .92rem
}

.prose h2 {
    margin-top: 2.2em
}

.prose h3 {
    margin-top: 1.6em
}

.prose>*:first-child {
    margin-top: 0
}

.toc {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 36px
}

.toc h4 {
    margin-bottom: .7em
}

.toc ul {
    columns: 2;
    column-gap: 30px;
    margin: 0;
    padding-left: 1.1em
}

@media(max-width:640px) {
    .toc ul {
        columns: 1
    }
}


/* ==========================================================
   MISC - END
   ========================================================== */


/* ==========================================================
   BRAND LOCKUP (REAL LOGO ARTWORK) - START
   ========================================================== */

.brand img {
    height: 42px;
    width: auto;
    display: block
}

.site-header .brand img {
    height: 55px
}

.site-footer .brand img {
    height: 55px;
}

@media(max-width:520px) {
    .site-header .brand img {
        height: 40px;
    }
}

.brand {
    text-decoration: none
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 46px;
    align-items: center;
    justify-content: center
}

/* Height cap is generous so that near-square marks (Tuition, Skill Academy) are not
   crushed next to the wide IIHSR lockup - each logo is capped on width AND height,
   which balances their optical size rather than their line height. */
/*.logo-strip img {*/
/*    max-height: 82px ;*/
/*    max-width: 230px ; */
/*    width: auto;*/
/*    height: auto;*/
/*}*/

@media(max-width:600px) {
    /*.logo-strip img {*/
    /*    max-height: 62px;*/
    /*    max-width: 170px*/
    /*}*/
}

/* Institution card logo tile — normalises very different logo aspect ratios */
.card-logo {
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 20px;
}

.card-logo img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
    height: auto
}

/* School navigation on the courses page */
.school-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px
}

@media(max-width:820px) {
    .school-nav {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .school-nav {
        grid-template-columns: 1fr
    }
}

.school-nav a {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--clr-navy);
    font-weight: 700;
    font-size: .95rem;
    transition: .2s;
}

.school-nav a:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small)
}

.school-nav a small {
    display: block;
    font-weight: 600;
    color: var(--clr-text-muted);
    font-size: .8rem;
    margin-top: .25em
}

.school-head {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    justify-content: space-between;
    border-top: 3px solid var(--clr-orange);
    padding-top: 18px;
    margin: 56px 0 26px;
}

.school-head:first-of-type {
    margin-top: 0
}

.school-head h2 {
    margin: 0
}

.school-head span {
    font-size: .85rem;
    color: var(--clr-text-muted);
    font-weight: 700
}


/* ==========================================================
   BRAND LOCKUP (REAL LOGO ARTWORK) - END
   ========================================================== */


/* ==========================================================
   WORDPRESS MENU INTEGRATION - START
   ========================================================== */

.main-nav li.current-menu-item>a,
.main-nav li.current_page_item>a,
.main-nav li.is-current>a,
.main-nav li.current-menu-ancestor>a {
    color: var(--clr-orange-deep);
    background: rgba(253, 85, 24, .10)
}

.main-nav .sub-menu {
    display: none
}

.topbar nav li {
    margin: 0
}

.site-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.page-links {
    margin-top: 1.5em;
    font-weight: 700
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    font-weight: 700;
    color: var(--clr-navy);
    background: #fff;
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange-deep)
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    color: #fff
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

.wp-block-image img {
    border-radius: 12px
}

.admin-bar .site-header {
    top: 32px
}

.rbs {
    max-width:70ch;
    margin:0 auto 44px;
}


.rcxx{
    margin-top:1.4em
}

.bcv{
    max-width:64ch;
    margin:0 auto 40px
}

.vcx {
    max-width:64ch;
    margin:0 auto 40px;
}

.ncxz {
    margin-top:24px;
}

.cxzss{
    justify-content:center
}

.cxzs {
    max-width:60ch;margin:0 auto 30px
}
.casper {
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:32px;
}

.pbo{
    margin-top:26px
}


/*logo*/

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

.dsks-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}


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

.dsks-logo-section {
    padding: 65px 0;
    background: #f7f5f1;
    display: none;
}

.dsks-partners {
    background: #fff;
}


/* =========================================
   SECTION HEADING
========================================= */

.dsks-section-heading {
    max-width: 650px;
    margin: 0 auto 32px;
    text-align: center;
}

.dsks-section-heading span {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9b7a4b;
}

.dsks-section-heading h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    color: #202020;
}

.dsks-section-heading p {
    margin: 0 auto;
    max-width: 550px;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}


/* =========================================
   LOGO CARD
========================================= */

.dsks-logo-card {
    padding: 4px 8px 10px;
    text-align: center;
}

.dsks-logo-box {
    height: 125px;
    padding: 20px 25px;

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

    background: #fff;
    border: 1px solid #e8e4dc;

    transition: all 0.3s ease;
}

.dsks-partners .dsks-logo-box {
    background: #f8f7f4;
}

.dsks-logo-box img {
    display: block;
    max-width: 90%;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;

    transition: transform 0.3s ease;
}

.dsks-logo-card h4 {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    color: #252525;
}


/* =========================================
   HOVER
========================================= */

.dsks-logo-card:hover .dsks-logo-box {
    transform: translateY(-4px);
    border-color: #b39a63;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.dsks-logo-card:hover .dsks-logo-box img {
    transform: scale(1.04);
}


/* =========================================
   OWL NAVIGATION
========================================= */

.dsks-logo-section .owl-nav {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.dsks-logo-section .owl-nav button.owl-prev,
.dsks-logo-section .owl-nav button.owl-next {
    width: 36px;
    height: 36px;

    margin: 0;
    padding: 0 !important;

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

    border: 1px solid #ddd8cf !important;
    border-radius: 50%;

    background: transparent !important;
    color: #333 !important;

    font-size: 18px !important;

    transition: all 0.3s ease;
}

.dsks-logo-section .owl-nav button.owl-prev:hover,
.dsks-logo-section .owl-nav button.owl-next:hover {
    background: #222 !important;
    border-color: #222 !important;
    color: #fff !important;
}


/* =========================================
   OWL DOTS
========================================= */

.dsks-logo-section .owl-dots {
    margin-top: 16px;
    text-align: center;
}

.dsks-logo-section .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 3px;

    background: #d2cec6;

    transition: all 0.3s ease;
}

.dsks-logo-section .owl-dots .owl-dot.active span {
    width: 20px;
    border-radius: 10px;
    background: #9b7a4b;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .dsks-logo-section {
        padding: 55px 0;
    }

    .dsks-section-heading {
        margin-bottom: 28px;
    }

    .dsks-section-heading h2 {
        font-size: 30px;
    }

    .dsks-logo-box {
        height: 115px;
        padding: 18px;
    }

    .dsks-logo-box img {
        max-height: 62px;
    }
}


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

@media (max-width: 767px) {

    .dsks-container {
        width: 92%;
    }

    .dsks-logo-section {
        padding: 45px 0;
    }

    .dsks-section-heading {
        margin-bottom: 25px;
    }

    .dsks-section-heading span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .dsks-section-heading h2 {
        font-size: 27px;
        margin-bottom: 7px;
    }

    .dsks-section-heading p {
        font-size: 13px;
    }

    .dsks-logo-card {
        padding: 4px 7px 8px;
    }

    .dsks-logo-box {
        height: 115px;
        padding: 18px;
    }

    .dsks-logo-box img {
        max-height: 60px;
    }

    .dsks-logo-card h4 {
        margin-top: 10px;
        font-size: 13px;
    }

    .dsks-logo-section .owl-nav {
        margin-top: 18px;
    }

    .dsks-logo-section .owl-dots {
        margin-top: 12px;
    }
}


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

@media (max-width: 480px) {

    .dsks-logo-section {
        padding: 38px 0;
    }

    .dsks-section-heading h2 {
        font-size: 25px;
    }

    .dsks-section-heading p {
        font-size: 12px;
    }

    .dsks-logo-box {
        height: 105px;
    }

    .dsks-logo-box img {
        max-height: 55px;
    }
}


.course-image img{
    height: 178px !important;
}








   /* =========================================================
           UPCOMING SECTION
        ========================================================= */
        .ihsr-upcoming-section {
            --ihsr-navy: #06245c;
            --ihsr-navy-dark: #041d4b;
            --ihsr-orange: #001e5c;
            /* kept as in original (deep blue) */
            --ihsr-orange-light: #fff0ea;
            --ihsr-text: #173567;
            --ihsr-muted: #697c9d;
            --ihsr-border: #e1e8f2;

            width: 100%;
            padding: 105px 20px 95px;
            background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
            position: relative;
            overflow: hidden;
        }

        /* background blobs */
        .ihsr-upcoming-section::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            top: -280px;
            right: -180px;
            border-radius: 50%;
            background: rgba(241, 90, 41, 0.035);
            pointer-events: none;
        }

        .ihsr-upcoming-section::after {
            content: "";
            position: absolute;
            width: 450px;
            height: 450px;
            bottom: -300px;
            left: -200px;
            border-radius: 50%;
            background: rgba(6, 36, 92, 0.025);
            pointer-events: none;
        }

        .ihsr-upcoming-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
        }

        /* ---- HEADER ---- */
        .ihsr-upcoming-header {
            max-width: 760px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .ihsr-section-kicker {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            margin-bottom: 15px;
            color: var(--ihsr-orange);
            font-size: 12px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .ihsr-kicker-line {
            display: block;
            width: 27px;
            height: 2px;
            background: var(--ihsr-orange);
        }

        .ihsr-upcoming-header h2 {
            margin: 0 0 17px;
            color: var(--ihsr-navy);
            font-size: 44px;
            line-height: 1.12;
            font-weight: 750;
            letter-spacing: -1.2px;
        }

        .ihsr-upcoming-header h2 span {
            color: var(--ihsr-orange);
        }

        .ihsr-upcoming-header p {
            max-width: 680px;
            margin: 0 auto;
            color: var(--ihsr-muted);
            font-size: 15px;
            line-height: 1.75;
            font-weight: 400;
        }

        /* ---- CAROUSEL BASE ---- */
        .ihsr-upcoming-carousel {
            position: relative;
        }

        .ihsr-upcoming-carousel .owl-stage {
            display: flex;
        }

        .ihsr-upcoming-carousel .owl-item {
            display: flex;
            height: auto;
        }

        .ihsr-upcoming-carousel .owl-item>article {
            width: 100%;
        }

        /* ---- CARD ---- */
        .ihsr-course-card {
            position: relative;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid var(--ihsr-border);
            border-radius: 14px;
            box-shadow: 0 5px 20px rgba(6, 36, 92, 0.035);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .ihsr-course-card:hover {
            transform: translateY(-7px);
            border-color: #d4deeb;
            box-shadow: 0 20px 45px rgba(6, 36, 92, 0.10);
        }

        .ihsr-course-image {
            position: relative;
            width: 100%;
            height: 210px;
            overflow: hidden;
            background: #edf1f6;
        }

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

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

        .ihsr-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(4, 29, 75, 0.00) 45%, rgba(4, 29, 75, 0.30) 100%);
            pointer-events: none;
        }

        .ihsr-course-badge {
            position: absolute;
            left: 15px;
            bottom: 15px;
            padding: 7px 12px;
            background: #ffffff;
            color: var(--ihsr-orange);
            border-radius: 4px;
            font-size: 10px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
        }

        .ihsr-course-content {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 25px 24px 23px;
        }

        .ihsr-course-school {
            margin-bottom: 11px;
            color: var(--ihsr-orange);
            font-size: 10px;
            line-height: 1.4;
            font-weight: 800;
            letter-spacing: 0.9px;
        }

        .ihsr-course-card h3 {
            margin: 0 0 13px;
            color: var(--ihsr-navy);
            font-size: 21px;
            line-height: 1.28;
            font-weight: 750;
            letter-spacing: -0.25px;
        }

        .ihsr-course-card h3 small {
            color: #71819d;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .ihsr-course-card p {
            margin: 0;
            color: #6c7d9b;
            font-size: 13.5px;
            line-height: 1.72;
        }

        .ihsr-course-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-top: 25px;
            padding-top: 17px;
            border-top: 1px solid #e8edf4;
        }

        .ihsr-course-date {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .ihsr-course-date span {
            color: #8997ad;
            font-size: 9px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.8px;
        }

        .ihsr-course-date strong {
            color: var(--ihsr-navy);
            font-size: 12px;
            line-height: 1.3;
            font-weight: 750;
        }

        .ihsr-apply-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 112px;
            padding: 11px 14px;
            border-radius: 5px;
            background: var(--ihsr-orange);
            border: 1px solid var(--ihsr-orange);
            color: #ffffff !important;
            text-decoration: none !important;
            font-size: 11px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: 0.2px;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .ihsr-apply-btn b {
            font-size: 16px;
            line-height: 10px;
            font-weight: 400;
            transition: transform 0.25s ease;
        }

        .ihsr-apply-btn:hover {
            background: var(--ihsr-navy);
            border-color: var(--ihsr-navy);
            color: #ffffff !important;
            text-decoration: none !important;
        }

        .ihsr-apply-btn:hover b {
            transform: translateX(3px);
        }

        /* ---- OWL NAV ---- */
        .ihsr-upcoming-carousel .owl-nav {
            margin: 0;
        }

        .ihsr-upcoming-carousel .owl-nav button {
            position: absolute;
            top: 43%;
            width: 46px;
            height: 46px;
            margin: 0 !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            background: #ffffff !important;
            border: 1px solid #dce4ee !important;
            border-radius: 50% !important;
            color: var(--ihsr-navy) !important;
            font-size: 22px !important;
            line-height: 1 !important;
            box-shadow: 0 7px 22px rgba(6, 36, 92, 0.09);
            outline: none !important;
            transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }

        .ihsr-upcoming-carousel .owl-nav button:hover {
            background: var(--ihsr-orange) !important;
            border-color: var(--ihsr-orange) !important;
            color: #ffffff !important;
            transform: scale(1.04);
        }

        .ihsr-upcoming-carousel .owl-nav .owl-prev {
            left: -23px;
        }

        .ihsr-upcoming-carousel .owl-nav .owl-next {
            right: -23px;
        }

        /* ---- DOTS ---- */
        .ihsr-upcoming-carousel .owl-dots {
            margin-top: 30px;
            text-align: center;
        }

        .ihsr-upcoming-carousel .owl-dots .owl-dot {
            margin: 0;
            padding: 0;
            background: transparent;
            border: 0;
            outline: none;
        }

        .ihsr-upcoming-carousel .owl-dots .owl-dot span {
            display: block;
            width: 6px;
            height: 6px;
            margin: 5px;
            border-radius: 10px;
            background: #c9d2df;
            transition: width 0.25s ease, background 0.25s ease;
        }

        .ihsr-upcoming-carousel .owl-dots .owl-dot.active span {
            width: 24px;
            background: var(--ihsr-orange);
        }

        /* ---- FOOTER NOTE ---- */
        .ihsr-carousel-footer {
            display: flex;
            justify-content: center;
            margin-top: 18px;
        }

        .ihsr-carousel-note {
            display: flex;
            align-items: center;
            gap: 7px;
            color: #8794aa;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.4px;
        }

        .ihsr-note-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #45a98e;
        }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 1199px) {
            .ihsr-upcoming-container {
                max-width: 1000px;
            }

            .ihsr-upcoming-carousel .owl-nav .owl-prev {
                left: -14px;
            }

            .ihsr-upcoming-carousel .owl-nav .owl-next {
                right: -14px;
            }
        }

        @media (max-width: 991px) {
            .ihsr-upcoming-section {
                padding: 80px 20px;
            }

            .ihsr-upcoming-header h2 {
                font-size: 38px;
            }

            .ihsr-upcoming-carousel .owl-nav {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .ihsr-upcoming-section {
                padding: 65px 16px 60px;
            }

            .ihsr-upcoming-header {
                margin-bottom: 32px;
            }

            .ihsr-upcoming-header h2 {
                font-size: 31px;
                letter-spacing: -0.7px;
            }

            .ihsr-upcoming-header p {
                font-size: 13.5px;
                line-height: 1.7;
            }

            .ihsr-course-image {
                height: 200px;
            }

            .ihsr-course-content {
                padding: 22px 20px;
            }

            .ihsr-course-card h3 {
                font-size: 20px;
            }

            .ihsr-course-bottom {
                align-items: flex-end;
            }
        }

        @media (max-width: 390px) {
            .ihsr-upcoming-header h2 {
                font-size: 28px;
            }

            .ihsr-course-bottom {
                flex-direction: column;
                align-items: stretch;
            }

            .ihsr-apply-btn {
                width: 100%;
            }
        }
        
        
        .leds img {
            width:  100% !important;
            height: 100% !important;
        }
        
        
        
        
        /************* */
        
        
            

        
        .topbar {
         
     
            display: flex;
            align-items: center;
            justify-content: flex-end;
          
        }

        .site-country {
            position: relative;
            display: inline-block;
        }

        .site-country-btn {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0;
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
        }

        .site-country-btn i:last-child {
            font-size: 9px;
            transition: .2s ease;
        }

        .site-country-btn.active i:last-child {
            transform: rotate(180deg);
        }

        .site-country-list {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 130px;
            padding: 5px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-5px);
            transition: .2s ease;
            z-index: 9999;
        }

        .site-country-list.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .site-country-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 9px;
            color: #222;
            font-size: 13px;
            text-decoration: none;
            border-radius: 3px;
        }

        .site-country-option:hover {
            background: #f4f4f4;
            color: #222;
        }

        .site-country-option.active {
            background: #17191a;
            color: #fff;
        }

        @media (max-width: 576px) {
            .topbar {
                padding: 0 15px;
            }
        }

