


h1 {
    font-family: 'Poppins-Bold';
}

h2 {
    font-family: 'Poppins-Med';
}

h3 {
    font-family: 'Poppins-Reg';
}

h4 {
    font-family: 'Poppins-Reg';
}

p {
    font-family: 'Poppins-Reg';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sitemap-block {
    border: 0 !important;
    box-shadow: none !important;
    height: unset !important;
}
.globalmenu {
    list-style: none !important;
}

    .globalmenu li {
        display: block;
        border-bottom: 1px solid #B7B7B7;
        padding: 13px 2px;
        text-align: right;
    }

        .globalmenu li a {
            text-decoration: none;
            color: #1D1D1D;
        }

        .globalmenu li .active {
            text-decoration: none;
            color: #0c6f8c !important;
            font-family: 'Cairo-Bold';
        }


        .globalmenu li a:hover {
            color: #0c6f8c !important;
            font-family: 'Cairo-Bold';
            transition: 0.3s ease-out;
        }
.color-black {
    color: #1D1D1D;
    text-decoration: none;
}
html,
body {
    background-color: #ffffff;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins-Reg';
    height: auto;
}



.custom-size-on-responsive1 {
    height: 53px;
    width: auto;
}

.nav-link {
    display: block;
    padding: 0px !important;
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-item a {
    color: #000000;
}

.main-nav-links li a:hover {
    color: #000000;
}

.nav-link:focus,
.nav-link:hover {
    color: #0179DA !important;
}



/* Arrow image */
.dropdown-arrow {
    margin-left: 0px;
    width: 20px;
    transition: transform 0.3s ease;
}

/* Dropdown container */
.nav-item.dropdown {
    position: relative;
}


.btn-close {
    --bs-btn-close-color: #ffffff;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    --bs-btn-close-opacity: 0.6;
    --bs-btn-close-hover-opacity: 1;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em;
    background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: var(--bs-btn-close-opacity);
}

/* Base wrapper */
.nav-item.dropdown {
    position: relative;
}


/* Link/button */
.nav-item.dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
}

/* Remove bootstrap arrow */
.dropdown-toggle::after {
    display: none;
}

/* Arrow rotation */
.nav-item.dropdown .dropdown-arrow {
    transition: transform .25s ease;
    will-change: transform;
}

/* =========================
   DEFAULT: Header dropdowns
   ========================= */
.nav-item.dropdown > .dropdown-menu {
    position: absolute;
    left: 0;
    right: auto;
    top: calc(100%);
    bottom: auto;
    border-radius: 10px;
    padding: 8px;
    min-width: fit-content;
    width: max-content;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .20s ease, visibility .20s ease;
    max-height: 280px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(6px);
    border: 0px;
    margin-top: 10px;
}

/* Items */
.dropdown-menu .dropdown-item {
    font-family: 'Poppins-Reg';
    padding: 10px 14px;
    border-radius: 0px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    color: #023141;
    background: transparent;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

 
.dropdown-menu li {
    padding: 0;
    margin: 0;
}

/* Active language */
.language-active {
    background-color: rgba(238, 193, 121, .15) !important;
    color: #EEC179 !important;
}

/* Wrapper to position badge */
.basket-icon-wrap {
    position: relative;
    display: inline-block;
}

/* Badge */
.basket-count-badge {
    position: absolute;
    top: -6px;
    right: -14px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #EEC179;
    color: #0F0E0F;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show on hover (desktop header) */
@media (hover: hover) and (pointer: fine) {
    .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Show on focus (keyboard/mobile) */
.nav-item.dropdown:focus-within > .dropdown-menu,
.nav-item.dropdown.is-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================================================
   BASKET DROPDOWN (Header) - Clean, Modern, Black
   - Uses your hover dropdown system (nav-item dropdown + .show)
   - Dropdown container class: .basket-dropdown-menu
   - Colors: name #EEC179, rest white
========================================================= */

/* Make parent positioned */
.nav-item.dropdown {
    position: relative;
}


/* Basket dropdown panel */
.basket-dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: calc(100%);
    bottom: auto;
    width: 460px;
    max-width: calc(100vw - 28px);
    background: #0F0E0F;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
    z-index: 3000;
    /* hidden by default - your existing hover JS should add .show */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .20s ease, visibility .20s ease;
    max-height: 420px;
    overflow: auto;
}

    /* Show state */
    .basket-dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Scrollbar (optional) */
    .basket-dropdown-menu::-webkit-scrollbar {
        width: 8px;
    }

    .basket-dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .12);
        border-radius: 999px;
    }

    /* List reset */
    .basket-dropdown-menu,
    .basket-dropdown-menu li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

/* Item spacing */
.basket-item {
    padding: 8px 0;
}

    .basket-item + .basket-item {
        border-top: 1px solid rgba(255, 255, 255, .06);
    }

/* Row layout */
.basket-row {
    display: grid;
    grid-template-columns: 103px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

    .basket-row:hover {
        background: rgba(255, 255, 255, .05);
        border-color: rgba(255, 255, 255, .10);
    }

/* Product image */
.basket-img {
    width: 103px;
    height: 103px;
    border-radius: 350px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
}

/* Mid text */
.basket-mid {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.basket-title {
    font-family: 'Roboto-Regular';
    color: #EEC179;
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    max-width: 150px;
}

.basket-sub {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.basket-title-link {
    text-decoration: none;
    color: #EEC179 !important;
    display: inline-block;
}

    .basket-title-link:hover {
        text-decoration: underline;
    }

/* Controls */
.basket-controls {
    display: flex;
    align-items: center;
    justify-items: end;
    gap: 10px;
}

/* Qty pill */
.basket-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

/* +/- buttons */
.basket-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 16px;
    line-height: 1;
    transition: transform .15s ease, background-color .15s ease;
}

    .basket-btn:hover {
        background: rgba(255, 255, 255, .10);
    }

.basket-count {
    min-width: 18px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* Delete button */
.basket-delete {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .85);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

    .basket-delete:hover {
        background: rgba(255, 60, 60, .12);
        border-color: rgba(255, 60, 60, .25);
    }

.basket-delete-icon {
    width: 16px;
    height: 16px;
    display: block;
    opacity: .92;
}

/* Footer */
.basket-footer {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.basket-summary {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    padding: 12px;
}

.basket-summary-label {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.basket-summary-value {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.basket-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0F0E0F;
    background: #EEC179;
    padding: 12px 14px;
    border-radius: 350px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .15s ease, filter .15s ease;
}

    .basket-checkout-btn:hover {
        filter: brightness(1.05);
    }

/* Mobile safety */
@media (max-width: 420px) {
    .basket-dropdown-menu {
        width: 100vw;
    }

    .basket-row {
        grid-template-columns: 45px 1fr auto;
    }

    .basket-img {
        width: 45px;
        height: 45px;
    }
}


/* ============================= */
/* DIGISKILLS SEARCH POPUP STYLE */
/* ============================= */

.search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

    .search-popup.active {
        opacity: 1;
        pointer-events: auto;
    }

/* Overlay */
.search-popup-overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(6px);
}

/* Panel */
.search-popup-panel {
    position: absolute;
    left: 50%;
    top: 12vh;
    transform: translateX(-50%) translateY(-20px);
    width: min(700px, calc(100vw - 30px));
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    transition: transform .3s ease;
}

.search-popup.active .search-popup-panel {
    transform: translateX(-50%) translateY(0);
}

/* Header */
.search-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.search-popup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    font-family: 'Poppins-Med';
    font-size: 16px;
}

.search-popup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ABD6;
    /* Digiskills accent */
}

/* Body */
.search-popup-body {
    padding: 20px;
}

.search-popup-inputwrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    background: #f5f6f8;
    border: 1px solid rgba(0, 0, 0, .08);
}

.search-popup-input {
    flex: 1;
    height: 42px;
    border: none;
    outline: none;
    background: transparent;
    color: #111111;
    font-size: 14px;
    font-family: 'Poppins-Reg';
}

    .search-popup-input::placeholder {
        color: rgba(0, 0, 0, .45);
    }

/* Search Button */
.search-popup-inputwrap .main-button {
    background: #00c3ff;
    border: none;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Poppins-Med';
    transition: .3s ease;
}

    .search-popup-inputwrap .main-button:hover {
        background: #00a6d8;
    }

/* Chips */
.search-popup-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.search-popup-chip {
    border: 1px solid rgba(0, 0, 0, .08);
    background: #f5f6f8;
    color: #111111;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Poppins-Reg';
    cursor: pointer;
    transition: .3s ease;
}

    .search-popup-chip:hover {
        background: #8F00FF;
        color: #ffffff;
        border-color: #8F00FF;
    }

/* Responsive */
@media (max-width: 640px) {
    .search-popup-panel {
        top: 8vh;
    }

    .search-popup-inputwrap {
        flex-direction: column;
        border-radius: 18px;
    }

        .search-popup-inputwrap .main-button {
            width: 100%;
        }
}




@media (max-width: 1250px) {

    /* Hide main links */
    .main-nav-links {
        display: none !important;
    }

    .hide-searchbar-phone {
        display: none;
    }

    /* Show hamburger menu */
    #hamburgerWrapper {
        display: block !important;
    }

    .Language-icon-size {
        width: 24px;
        height: 24px;
        margin-left: 10px
    }

    .navbar {
        justify-content: space-between !important;
    }
}

/* =========================
   SIDEBAR / MOBILE MODE
*/
.navbar-mobile .nav-item.dropdown > .dropdown-menu,
.mnav .nav-item.dropdown > .dropdown-menu,
.lte-navbar-items.navbar-mobile .nav-item.dropdown > .dropdown-menu {
    left: 0 !important;
    right: 0;
    top: auto;
    bottom: calc(100% + 0px);
}


/* JS-controlled open state */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Small screens safety */
@media (max-width: 480px) {
    .nav-item.dropdown > .dropdown-menu {
        min-width: fit-content;
        max-width: calc(100vw - 40px);
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
    }
}

/* sidebar style */
:root {
    --black: #0F0E0F;
    --white: #023141;
    --gold: #C9A46A;
    /* change to your accent */
}

/* Open button example */
.mnav-open {
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
}

/* Overlay (no dissolve) */
.mnav {
    position: fixed;
    inset: 0;
    background: transparent;
    height: 100vh;
    pointer-events: none;
    z-index: 100000;
}

    /* Open state */
    .mnav.is-open {
        pointer-events: auto;
    }

/* Panel reveal top -> bottom */
.mnav-panel {
    position: absolute;
    inset: 0;
    background: #ffffff;
    color: var(--white);
    display: flex;
    flex-direction: column;
    /* start hidden */
    clip-path: inset(0 0 100% 0);
    transition: clip-path .55s cubic-bezier(.2, .8, .2, 1);
    will-change: clip-path;
}

.mnav.is-open .mnav-panel {
    clip-path: inset(0 0 0 0);
    /* reveal full */
}

/* Optional: make the content slightly slide down like Apple */
.mnav-panel > * {
    opacity: 1;
    /* keep it visible, no fade */
}

/* Top */
.mnav-top {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    padding: 10px 18px;
}

.mnav-logo img {
    height: 35px;
    width: auto;
    display: block;
}


/* Links */
.mnav-links {
    padding: 10px 0 0;
    margin: 0;
    overflow: auto;
}

.mnav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 22px;
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    /* big like screenshot */
    font-weight: 300;
    letter-spacing: .2px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}

.mnav-link {
    transform: translateY(-10px);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.mnav.is-open .mnav-link {
    transform: translateY(0);
}

/* small stagger */
.mnav-link:nth-child(1) {
    transition-delay: .04s;
}

.mnav-link:nth-child(2) {
    transition-delay: .08s;
}

.mnav-link:nth-child(3) {
    transition-delay: .12s;
}

.mnav-link:nth-child(4) {
    transition-delay: .16s;
}

.mnav-link:nth-child(5) {
    transition-delay: .20s;
}

.mnav-link:nth-child(6) {
    transition-delay: .24s;
}

.mnav-link:nth-child(7) {
    transition-delay: .28s;
}

.mnav-link.active {
    font-family: 'Poppins-Bold';
    color: #023141;
}

.mnav-item {
    width: 100%;
}

.mnav-plus img {
    width: 15px;
    line-height: 1;
    transform: translateY(2px);
}

/* Submenu (collapsed by default) */
.mnav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding-left: 22px;
}

.mnav-item.is-open .mnav-sub {
    max-height: 400px;
    /* enough for items */
}

.mnav-sub a {
    display: block;
    padding: 10px 22px 10px 0;
    color: rgba(2, 49, 65, 0.8);
    text-decoration: none;
    font-size: 16px;
}

    .mnav-sub a:hover {
        color: var(--white);
    }

/* Bottom area (icons + search pill) */
.mnav-bottom {
    margin-top: auto;
    padding: 18px 18px 22px;
    display: grid;
    gap: 14px;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.15);
}

.sidebar-basket {
    position: relative;
}

    /* Open inside viewport instead of off-screen */
    .sidebar-basket .basket-dropdown-menu {
        left: 0 !important;
        right: auto !important;
        top: auto;
        bottom: calc(100% + 12px);
        transform-origin: bottom left;
    }

.mnav-icons {
    display: flex;
    align-items: center;
    justify-content: end;
}

.mnav-icon {
    color: var(--gold);
    text-decoration: none;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .mnav-icon .basket-count-badge {
        top: -6px;
        right: -12px;
    }

.mnav-badge {
    color: var(--white);
    font-size: 16px;
    transform: translateY(2px);
}

.basket-icon-wrap {
    position: relative;
}

.basket-count-badge {
    /* badge styling */
}

.basket-dropdown-menu {
    /* dropdown panel */
}

.basket-row,
.basket-img,
.basket-controls,
.basket-qty,
.basket-btn,
.basket-delete {
    /* layout */
}


/* Search pill */
.mnav-search {
    background: #fff;
    border-radius: 4px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(2, 49, 65, 0.4);
}

    .mnav-search input {
        border: 0;
        outline: 0;
        width: 100%;
        font-size: 16px;
    }

    .mnav-search button {
        border: 0;
        background: transparent;
        cursor: pointer;
        font-size: 18px;
    }

/* Language dropdown wrapper */
.mnav-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
}


/* Button */
.mnav-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 12px;
}

    .mnav-lang-btn img {
        width: 18px;
        height: 18px;
        display: block;
    }

.mnav-lang-arrow {
    width: 8px !important;
    height: 8px !important;
    transition: transform .25s ease;
}

/* Menu: open UP so it never goes outside the page */
.mnav-lang-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    /* opens upward */
    min-width: 160px;
    background: #121112;
    /* slightly lighter than --black */
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 10px;
    display: none;
    z-index: 20;
    /* prevent overflow */
    max-height: 220px;
    overflow: auto;
}

/* Items */
.mnav-lang-item {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    white-space: nowrap;
}

    .mnav-lang-item:hover {
        background: rgba(255, 255, 255, .06);
        color: var(--white);
    }

    .mnav-lang-item.is-active {
        color: var(--gold);
        background: rgba(201, 164, 106, .12);
    }

/* Open state */
.mnav-lang.is-open .mnav-lang-menu {
    display: block;
}

.mnav-lang.is-open .mnav-lang-arrow {
    transform: rotate(180deg);
}

#hamburgerWrapper {
    display: none !important;
}

@media (max-width: 1250px) {
    #hamburgerWrapper {
        display: block !important;
    }
}

/* ==============================
   HERO WRAPPER
============================== */
.Hero-slider-container {
    width: 100%;
    /* height: 100vh; */
    height: auto;
    position: relative;
    padding-top: 100px;
    /* header space */
    background-image: url(./App_Themes/ThemeEn/Assets/images/Hero-section-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    overflow: visible;
    padding: 100px clamp(15px, 7vw, 95px) 45px clamp(15px, 7vw, 95px);
    z-index: 1;
    /* make it lower than header */
}

@media (max-width: 540px) {
    .Hero-slider-container {
        background-position: calc(100% + 50px) center;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: visible;
}






/* Hero Section Social media Icons */
/* Floating container */

.Hero-SociaMedia-wrapper {
    position: absolute;
    left: clamp(-70px,-4.5vw,-80px);
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 999;
}

/* Vertical text */

.Hero-SociaMedia-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    color: #023141;
}

/* Icons container */

.Hero-SociaMedia-icons {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Icon button */

.Hero-SociaMedia-icon {
    font-family: 'Poppins-Med';
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    transition: all .25s ease;
}

    /* SVG */

    .Hero-SociaMedia-icon svg {
        width: 24px;
        height: 24px;
        transition: all .25s ease;
    }

    /* Hover background */

    .Hero-SociaMedia-icon:hover {
        background: #023141;
    }

        /* SVG hover color */

        .Hero-SociaMedia-icon:hover svg path {
            fill: #ffffff;
        }

    /* ================= TOOLTIP ================= */

    .Hero-SociaMedia-icon::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 45px;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff;
        color: #023141;
        padding: 10px 16px;
        font-family: 'Poppins-Reg';
        font-size: 12px;
        border-radius: 8px;
        white-space: nowrap;
        box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
        opacity: 0;
        pointer-events: none;
        transition: all .25s ease;
    }

    /* Tooltip arrow */

    .Hero-SociaMedia-icon::before {
        content: "";
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 7px;
        border-style: solid;
        border-color: transparent #ffffff transparent transparent;
        opacity: 0;
        transition: all .25s ease;
        z-index: 9999999;
    }

    /* Show tooltip */

    .Hero-SociaMedia-icon:hover::after,
    .Hero-SociaMedia-icon:hover::before {
        opacity: 1;
    }

/* Hide on mobile */

@media (max-width:768px) {

    .Hero-SociaMedia-wrapper {
        display: none;
    }
}


.contentbdody {
    min-height: 400px;
    padding-bottom: 30px !important;
    margin-top: 40px;
}

/*Rating*/
/*.rate {
    border-top: 1px solid #dbdbdb;
    padding: 15px 0px 0px 0px;
}
.hb-ratingbar {
    position: relative;
    width: 114px;
    height: 23px;
    overflow: hidden;
    cursor: pointer;
    top: 0px !important;
}

    .hb-ratingbar:hover .filled {
        background: #ffb628;
    }

    .hb-ratingbar .unfilled {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #ccc;
        z-index: 1;
    }

    .hb-ratingbar .filled {
        position: absolute;
        transition: 0.2s width ease;
        top: 0;
        left: 0;
        height: 100%;
        background: #f4a100;
        z-index: 2;
    }

    .hb-ratingbar .cover {
        color: #fff;
        z-index: 3;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .hb-ratingbar[data-rated="0"] .filled {
        width: 0%;
    }

    .hb-ratingbar[data-rated="0.5"] .filled {
        width: 10%;
    }

    .hb-ratingbar[data-rated="1"] .filled {
        width: 20%;
    }

    .hb-ratingbar[data-rated="1.5"] .filled {
        width: 30%;
    }

    .hb-ratingbar[data-rated="2"] .filled {
        width: 40%;
    }

    .hb-ratingbar[data-rated="2.5"] .filled {
        width: 50%;
    }

    .hb-ratingbar[data-rated="3"] .filled {
        width: 60%;
    }

    .hb-ratingbar[data-rated="3.5"] .filled {
        width: 70%;
    }

    .hb-ratingbar[data-rated="4"] .filled {
        width: 80%;
    }

    .hb-ratingbar[data-rated="4.5"] .filled {
        width: 90%;
    }

    .hb-ratingbar[data-rated="5"] .filled {
        width: 100%;
    }

.hb-ratingbar {
    transform: scaleX(-1);
}*/



/* ==============================
   SLIDES
============================== */
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ==============================
   TEXT
============================== */
.hero-center-text {
    position: absolute;
    top: 48%;
    left: 30px;
    transform: translateY(-50%);
    width: clamp(260px, 50vw, 760px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    padding: clamp(25px, 3vw, 45px) clamp(0px, 2.5vw, 50px);
}

@media(max-width:626px) {
    .hero-center-text {
        left: clamp(15px, 6vw, 40px);
    }
}

.hero-center-text h1 {
    font-family: 'Poppins-Bold';
    font-size: clamp(22px, 3vw, 48px);
    color: #0b2b33;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .hero-center-text h1 span {
        color: #00ABD6;
        margin: 0;
    }

.hero-center-text p {
    font-size: clamp(14px, 1.6vw, 18px);
    color: #2f2f2f;
    max-width: fit-content;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-btn {
    border: 0px;
    font-family: 'Poppins-Bold';
    height: 40px;
    width: fit-content;
    padding: 12px 16px;
    border-radius: 4px;
    background: #0179DA;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-out;
    text-wrap: nowrap;
    font-size: 16px;
    letter-spacing: 0px;
}

    .hero-btn:hover {
        background: #8F00FF;
    }

    .hero-btn img {
        width: 19.09px;
        height: 19.09px;
    }

/* ==============================
   DOTS (RIGHT OUTSIDE)
============================== */
.hero-carousel {
    position: relative;
}


    /* ===== OWL DOTS RIGHT MIDDLE (LIKE ORIGINAL) ===== */
    .hero-carousel .owl-dots {
        position: absolute;
        top: 50%;
        right: -40px;
        /* space from arrows */
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 5.5px;
        z-index: 10;
    }

@media (max-width: 1200px) {
    .hero-carousel .owl-dots {
        position: absolute;
        top: 50%;
        right: -25px;
        /* space from arrows */
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 5.5px;
        z-index: 10;
    }
}

@media (max-width: 500px) {
    .hero-carousel .owl-dots {
        position: absolute;
        top: 50%;
        right: -16px;
        /* space from arrows */
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 5.5px;
        z-index: 10;
    }
}

/* remove default owl margin */
.hero-carousel .owl-dot {
    margin: 0 !important;
    width: 11px;
    height: 11px;
}

    /* dot style */
    .hero-carousel .owl-dot span {
        display: block !important;
        width: 11px !important;
        height: 11px !important;
        border-radius: 50% !important;
        border: 1px solid #ffffff5f !important;
        background: transparent !important;
    }


    .hero-carousel .owl-dot.active span {
        background: #fff !important;
    }

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

    .hero-carousel .owl-nav button {
        width: 55px;
        height: 55px;
        background: #fff !important;
        border-radius: 12px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-carousel .owl-nav button span {
            font-size: 26px;
            color: #000;
        }

.social-rail {
    position: absolute;
    left: 16px;
    top: 55%;
    transform: translateY(-45%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9998;
    /* just below header */
}

.margin-top2 .readmore {
    margin-top: 32px;
    /*height: 35px;*/
    padding: 5px 0px;
    width: unset;
}

/* Statistics Section */
/* ===== Statistics Section ===== */
/* ===== Statistics Section ===== */
.stats-section {
    background: #023141;
    padding: 35px clamp(20px, 6vw, 120px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

/* ===== Desktop Items ===== */
.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px 10px;
}



/* Typography */
.stat-number {
    font-family: 'Poppins-Bold';
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.2;
}

.stat-label {
    font-family: 'Poppins-Reg';
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.4;
}

/* ================= MOBILE */
@media (max-width: 856px) {

    .stats-section {
        padding: 0px; /* cleaner mobile padding */
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch; /* IMPORTANT: equal height per row */
        padding: 30px clamp(15px, 7vw, 95px);
    }

    .stat-item {
        /* equal-size cards */
        min-height: 120px;
        padding: 16px 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.06);
        box-shadow: 0 12px 30px rgba(0,0,0,.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

        /* Remove desktop dividers */
        .stat-item::after {
            display: none !important;
        }

    .stat-number {
        font-size: 28px; /* consistent */
        line-height: 1.1;
        letter-spacing: .2px;
    }

    .stat-label {
        font-size: 13px;
        font-family: 'Poppins-Reg';
    }
}



/* ============================= */
/* Programs Section */
/* ============================= */

.programs-section {
    padding: clamp(40px,6vw,80px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    /* Prevent accidental horizontal scroll */
}

    .programs-section .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0px clamp(15px, 7vw, 96px);
    }

.programs-carousel .owl-stage-outer {
    overflow: hidden;
}

.programs-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

/* ================= HEADER ================= */

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.programs-title-wrap {
    display: flex;
    flex-direction: column;
}

    /* Top row (accent + title) */
    .programs-title-wrap > div {
        display: flex;
        align-items: center;
        gap: 18px;
    }

/* Blue Accent */
.title-accent {
    width: 12px;
    height: 45px;
    /* match title height */
    background: #0179DA;
}

/* Title */
.programs-title {
    font-size: 48px;
    font-family: 'Poppins-Bold';
    color: #023141;
    margin: 0;
    line-height: 34px;
}

/* Subtitle */
.programs-subtitle {
    font-size: 18px;
    color: #474747;
    margin: 16px 0 0 0px;
    line-height: 24px;
    font-family: 'Poppins-Reg';
}

/* VIEW ALL BUTTON */

.btn-view-all {
    background: #1e73be;
    color: #fff;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

    .btn-view-all:hover {
        background: #155fa0;
    }

/* ================= TABS ================= */

.program-tabs {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #d6dde2;
    margin-bottom: 55px;
    gap: 0;
    overflow-x: auto;
}

    .program-tabs .tab {
        background: transparent;
        border: none;
        font-size: clamp(16px,1.8vw,20px);
        font-family: 'Poppins-Med';
        color: rgba(2, 49, 65, 0.65);
        padding: 10px 16px 10px 16px;
        cursor: pointer;
        position: relative;
        border-bottom: 5px solid transparent;
        transition: all 0.25s ease;
    }

        .program-tabs .tab:hover {
            border-bottom: 5px solid rgba(2, 49, 65, 0.15);
        }

        .program-tabs .tab.active {
            background: #ffffff;
            color: #023141;
            border-bottom: 5px solid #023141;
            box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
            z-index: 2;
        }

            /* Remove divider from active tab */
            .program-tabs .tab.active::after {
                display: none;
            }

.programs-carousel .owl-nav button {
    transition: opacity 0.3s ease;
}

/* ================= CAROUSEL ================= */

.programs-carousel {
    position: relative;
    padding: 0 clamp(5px,1.2vw,20px);
}

    /* When slider is disabled */
    .programs-carousel.no-slider {
        display: flex;
        gap: 24px;
        justify-content: flex-start;
        align-items: stretch;
        /* ✅ important: prevent 1–2 cards from stretching */
        flex-wrap: wrap;
    }

        /* ✅ important: keep “normal” card width on desktop when no-slider */
        .programs-carousel.no-slider .program-card {
            width: clamp(280px, 30vw, 420px);
            flex: 0 0 clamp(280px, 30vw, 420px);
        }

    /* Owl fix */
    .programs-carousel .owl-stage {
        display: flex;
    }

    .programs-carousel .owl-item {
        display: flex;
    }

/* ================= CARD ================= */

.program-card {
    width: 100%;
    height: 100%;
    /* Prevent stretching */
    background: #ffffff;
    border: 1px solid rgba(195, 195, 195, 0.40);
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

    .program-card:hover {
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    }

/* IMAGE */
.program-image {
    padding: 25px 24px 0px 24px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: unset !important;
}

    .program-image::after {
        display: none !important;
    }

    .program-image img {
        border-radius: 4px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: unset !important;
        object-position: unset !important;
        position: unset !important;
        top: unset !important;
        left: unset !important;
    }

/* CONTENT */

.program-content {
    min-height: 220px;
    padding: clamp(18px,6vw,24px) clamp(20px,6vw,37px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* BADGE */

.badge {
    font-family: 'Poppins-Bold';
    width: fit-content;
    display: inline-block;
    font-size: 14px;
    padding: 10px 9.5px;
    border-radius: 4px;
    margin: 0;
}

.badge-open {
    background: rgb(1, 121, 218, 0.20);
    color: #0179DA;
}

.badge-soon {
    background: rgb(143, 0, 255, 0.15);
    color: #8F00FF;
}

/* TITLE – MAX 2 LINES */

.program-content h3 {
    font-family: 'Poppins-Bold';
    font-size: 20px;
    color: #023141;
    margin: 0;
    line-height: 29px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* DESCRIPTION – MAX 2 LINES */

.program-content p {
    font-size: 16px;
    color: #212121;
    margin: 0px;
    line-height: 20px;
    font-family: 'Poppins-Reg';
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* READ MORE BUTTON */

.btn-read {
    background: #1e73be;
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

    .btn-read:hover {
        background: #155fa0;
    }

/* ================= NAV ARROW ================= */

.programs-carousel .owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    pointer-events: none;
}

    .programs-carousel .owl-nav button {
        width: 48px;
        height: 48px;
        border-radius: 50% !important;
        background: #ffffff !important;
        box-shadow: 0 0px 4.8px 0 rgba(0, 0, 0, 0.25);
        font-size: 22px !important;
        color: #1e73be !important;
        transition: 0.25s ease;
        pointer-events: all;
    }

        .programs-carousel .owl-nav button img {
            height: 19.2px;
        }

    .programs-carousel .owl-nav .owl-next {
        position: absolute;
        left: 10px;
    }

    .programs-carousel .owl-nav .owl-prev {
        position: absolute;
        right: -30px;
    }


    .programs-carousel .owl-nav button {
        transition: opacity 0.3s ease;
    }

        .programs-carousel .owl-nav button.hidden-arrow {
            opacity: 0;
            pointer-events: none;
        }

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .programs-title {
        font-size: 36px;
    }

    .program-image img {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .programs-title {
        font-size: 30px;
    }

    .program-image img {
        height: 220px;
    }

    /* ✅ keep no-slider cards from growing on medium screens too */
    .programs-carousel.no-slider .program-card {
        width: clamp(260px, 42vw, 420px);
        flex: 0 0 clamp(260px, 42vw, 420px);
    }
}

@media (max-width: 768px) {

    .programs-section {
        padding: clamp(50px,9vw,100px) 0;
    }

    .programs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-card {
        width: 100%;
    }

    .program-image img {
        height: 200px;
    }

    .programs-carousel .owl-nav .owl-next {
        position: absolute;
        right: -10px;
    }

    .programs-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        background: #ffffff !important;
        box-shadow: 0 0px 4.8px 0 rgba(0, 0, 0, 0.25);
        font-size: 22px !important;
        color: #1e73be !important;
        transition: 0.25s ease;
        pointer-events: all;
    }

        .programs-carousel .owl-nav button:hover {
            box-shadow: 0 0px 4.8px 0 rgba(0,0,0,.45);
            color: #ffffff00 !important;
        }

    .programs-carousel .owl-nav .owl-prev {
        position: absolute;
        left: -20px;
    }
    /* ✅ on mobile: allow 1–2 cards to stretch full width */
    .programs-carousel.no-slider {
        flex-wrap: nowrap;
        flex-direction: column;
    }

        .programs-carousel.no-slider .program-card {
            width: 100%;
            flex: 0 0 100%;
        }
}




/* Training Domains */
/* =========================
   FILE: training-domains.css  (FULL / FLEX WHEEL VERSION)
   ========================= */

/* --- Base Section --- */
.td {
    --td-accent: #00A7D8;
    --td-btn: #1678E0;
    --td-glass: rgba(255, 255, 255, 0.08);
    --td-glassB: rgba(255, 255, 255, 0.22);
    width: 100%;
    /* height: 130vh; */
    height: auto;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

    .td * {
        box-sizing: border-box;
    }

/* background layers */
.td__bg {
    position: absolute;
    inset: 0;
    background: var(--td-bg) center/cover no-repeat;
    transform: scale(1.01);
    z-index: 0;
}

.td__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 30% 60%, rgba(0, 180, 216, 0.15) 0%, rgba(0, 180, 216, 0.00) 65%), linear-gradient(135deg, var(--td-overlayA) 0%, var(--td-overlayB) 72%);
    z-index: 1;
}

/* wrapper = FULL WIDTH (no side padding) */
.td__wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    /* ✅ stick to section */
    display: flex;
    flex-direction: column;
}

    .td__wrap .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0px clamp(15px, 7vw, 96px);
    }

/* --- Header --- */
.td__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 95px;
    padding-left: 95px;
    padding-right: 95px;
    gap: 20px;
}

.td__titleBlock {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.td__accent {
    width: 8px;
    height: 56px;
    background: var(--td-accent);
    border-radius: 2px;
    margin-top: 6px;
    flex: 0 0 auto;
}

.td__title {
    margin: 0;
    font-size: clamp(34px, 3.2vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.td__sub {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 740px;
}

.td__viewAll {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--td-btn);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    margin-top: 6px;
    white-space: nowrap;
}

.td__ext {
    font-weight: 900;
    transform: translateY(-1px);
}

/* --- Mobile Tabs (hidden desktop) --- */
.td__tabs {
    display: none;
}

/* --- Content Layout (Wheel | Arrows | List) --- */
.td__content {
    flex: 1;
    display: grid;
    grid-template-columns: 50% 90px 43%;
    align-items: stretch;
    gap: 0;
    /* ✅ no gaps */
    padding-top: 0px;
}

/* =======================
   WHEEL (NO ABSOLUTE)
   ======================= */
.td__wheelCol {
    position: relative;
    display: flex;
    align-items: flex-end;
    /* bottom-left feel */
    justify-content: flex-start;
    overflow: hidden;
    /* natural crop */
    padding: 0;
    margin: 0;
}

/* crop container */
.td__wheelCrop {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    pointer-events: none;
}

/* svg wrapper */
.td__wheelHolder {
    width: min(685px, 56vw);
    aspect-ratio: 673 / 638;
    pointer-events: auto;
    margin-left: -8%;
    margin-bottom: 0%;
    /* push down like reference */
}

    /* svg always visible */
    .td__wheelHolder svg {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }


/* segment state */
.td__seg {
    cursor: pointer;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 260ms cubic-bezier(.22,.9,.2,1);
}

    .td__seg.is-dim {
        opacity: .55;
    }

    .td__seg.is-active {
        opacity: 1;
        filter: drop-shadow(0px 18px 18px rgba(0, 0, 0, .28));
    }

/* PNG icons overlay (update paths later) */
.td__wheelPng {
    position: absolute;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
    z-index: 3;
}

    .td__wheelPng.is-loaded {
        opacity: .35;
    }

        .td__wheelPng.is-loaded.is-active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.45);
        }

    /* approximate positions (tweak later to match your png placement) */
    .td__wheelPng[data-td="software"] {
        left: 20%;
        top: 44%;
    }

    .td__wheelPng[data-td="data"] {
        left: 31%;
        top: 34%;
    }

    .td__wheelPng[data-td="automation"] {
        left: 43%;
        top: 41%;
    }

    .td__wheelPng[data-td="cyber"] {
        left: 47%;
        top: 58%;
    }

    .td__wheelPng[data-td="cloud"] {
        left: 33%;
        top: 71%;
    }

/* wheel headline + button */
.td__wheelInner {
    position: absolute;
    left: 10%;
    bottom: 15%;
    width: fit-content;
    z-index: 4;
    pointer-events: auto;
}

.td__wheelHeadline {
    margin: 0;
    font-size: 30px;
    font-family: 'Poppins-Bold';
    line-height: 43px;
}

.td__explore {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--td-btn);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

/* --- Arrows Column (for list) --- */
.td__arrowsCol {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    z-index: 5;
}

.td__arrowBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(42 72 86);
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.11);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .18s ease, transform .12s ease, opacity .18s ease;
}

    .td__arrowBtn img {
        height: 10px;
    }



    .td__arrowBtn:active {
        transform: scale(0.96);
    }

    .td__arrowBtn.is-disabled {
        opacity: .35;
        pointer-events: none;
    }

/* --- Right Panel --- */
.td__rightCol {
    margin-top: 80px;
    width: min(860px, 92%);
    margin-left: auto;
    margin-right: 70px;
}

.td__selectedCard {
    background: #fff;
    color: #0B2B37;
    border-radius: 4px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.td__selectedIcon {
    width: 52px;
    height: 52px;
}

.td__selectedTitle {
    font-size: 20px;
    line-height: 32px;
    font-family: 'Poppins-Bold';
    color: #023141;
}

.td__listViewport {
    margin-top: 18px;
    height: 430px;
    overflow: hidden;
    position: relative;
}

.td__listInner {
    display: grid;
    gap: 16px;
    transition: transform .22s ease;
    will-change: transform;
}

.td__item {
    background: var(--td-glass);
    border: 1px solid var(--td-glassB);
    border-radius: 4px;
    padding: 8px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .td__item:hover {
        background: var(--td-glass);
        border: 1px solid var(--td-glassB);
        border-radius: 4px;
        padding: 8px 0px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 16px;
        backdrop-filter: blur(22px);
    }

.td__itemIcon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.td__itemText {
    font-family: 'Poppins-light';
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
}

/* =========================
   RESPONSIVE (MOBILE)
   ========================= */
@media (max-width: 1024px) {
    .td {
        height: auto;
        min-height: auto;
    }

    .td__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 55px 20px 0;
    }

    .td__titleBlock {
        justify-content: center;
    }

    .td__viewAll {
        margin-top: 10px;
    }

    /* Tabs wrapper */
    .td__tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0 22px;
        padding: 10px clamp(15px, 7vw, 95px);
    }


    /* 3 columns when screen is a bit wider */
    @media (min-width: 520px) {
        .td__tabs {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    /* Each tab fills its cell */
    .td__tab {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 10px;
        border-radius: 12px; /* modern pill-ish */
        font-weight: 700;
        font-size: 14px;
        letter-spacing: .2px;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(255,255,255,.08);
        color: #fff;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

        .td__tab:active {
            transform: scale(.98);
        }

        .td__tab.is-active {
            background: rgba(22, 120, 224, 0.95);
            border-color: rgba(22, 120, 224, 1);
        }

    /* stack */

    .td__content {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 0 0 60px;
    }

        /* flip the 2 items */
        .td__content > :nth-child(1) {
            order: 2;
        }

        .td__content > :nth-child(2) {
            order: 1;
        }


    /* hide wheel */
    .td__wheelCol {
        display: none;
    }

    /* list center */
    .td__rightCol {
        margin: 0 auto;
        width: 100%;
        padding: 10px clamp(15px, 7vw, 95px);
    }

    /* arrows row */
    .td__arrowsCol {
        margin-top: 14px;
        margin-bottom: 14px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .td__selectedCard {
        justify-content: start;
    }

    .td__item {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .td__wheelHeadline {
        font-size: 34px;
    }

    .td__selectedTitle {
        font-size: 20px;
    }

    .td__itemText {
        font-size: 16px;
    }
}


/* show only active title/icon */
#tdSelectedTitle .td__selTitle {
    display: none;
}

    #tdSelectedTitle .td__selTitle.is-active {
        display: inline;
    }

#tdSelectedIcon .td__selIcon {
    display: none;
}

    #tdSelectedIcon .td__selIcon.is-active {
        display: block;
    }

/* show only active list group */
.td__listGroup {
    display: none;
    will-change: transform;
}


    .td__listGroup.is-active {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: stretch;
        gap: 16px;
    }

/* bullet */
.td__item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.td__bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    flex: 0 0 auto;
}

/* color for selected icon */
.td__selectedIcon {
    color: #0B2B37;
}






/* =========================
   OUR PUBLICATIONS (OWL)
========================= */

.pub {
    background: #fff;
    padding: clamp(40px,6vw,80px) 0 clamp(40px,6vw,80px);
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

    .pub .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0px clamp(15px, 7vw, 96px);
    }

.pub__container {
    width: min(1320px, calc(100% - 00px));
    margin: 0 auto;
}

/* Header */
.pub__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.pub__titleWrap {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.pub__bar {
    width: 10px;
    height: 54px;
    background: #0D7DE2;
    border-radius: 2px;
    margin-top: 2px;
}

.pub__title {
    margin: 0;
    font-size: clamp(28px, 3.1vw, 52px);
    line-height: 1.05;
    color: #0A2B3A;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pub__sub {
    margin: 10px 0 0;
    color: #36515D;
    font-size: 16px;
    line-height: 1.45;
}

/* View all button */
.pub__viewAll {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: #0D7DE2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(13,125,226,.18);
    white-space: nowrap;
}

    .pub__viewAll .pub__ext {
        font-size: 16px;
        line-height: 1;
    }

/* Slider wrapper */
.pub__sliderWrap {
    position: relative;
}

/* Hide default owl dots/nav */
.pub__owl .owl-dots,
.pub__owl .owl-nav {
    display: none !important;
}

/* Item layout */
.pub__item {
    padding: 18px 5px;
}

.pub__frame {
    position: relative;
    width: 100%;
    height: clamp(330px, 36vw, 430px);
    border-radius: 10px;
    overflow: visible;
}

/* Big image */
.pub__img {
    width: 63% !important;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}


.pub__cardStripe {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    border-radius: 4px 0 0 4px;
    background: linear-gradient(180deg, #84D8EF 0%, #2D7BEF 55%, #7A3BF2 100%);
}

.pub__cardTitle {
    margin: 0 0 16px;
    color: #023141;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 25px;
    font-family: 'Poppins-Bold';
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.pub__cardText {
    max-width: 100%;
    font-family: 'Poppins-Reg';
    margin: 0 0 24px;
    color: #023141;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Read more button */
.pub__cardBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: #0D7DE2;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(13,125,226,.22);
}

    .pub__cardBtn .pub__ext {
        font-size: 16px;
        line-height: 1;
    }

/* Custom arrows bottom-right */
.pub__nav {
    position: absolute;
    right: 0px;
    bottom: -30px;
    display: flex;
    gap: 12px;
    z-index: 5;
    transform: translateX(0);
}

.pub__navBtn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0px 4.8px 0 rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}


    .pub__navBtn.disabled {
        opacity: 0.4;
        pointer-events: none;
        cursor: not-allowed;
    }
/* Responsive */
@media (max-width: 992px) {
    .pub__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .pub__viewAll {
        align-self: flex-end;
    }

    .pub__frame {
        height: auto;
        padding: 0px 5px;
    }

    .pub__item {
        padding: 5px 0;
    }

    .pub__img {
        height: 320px;
    }

    .pub__img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }

    .pub__card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 14px;
        border-radius: 10px;
    }

    .pub__cardStripe {
        width: 8px;
        border-radius: 4px 0 0 4px;
    }

    .pub__nav {
        position: static;
        justify-content: flex-end;
        margin-top: 14px;
    }
}

@media (max-width: 520px) {
    .pub__container {
        width: calc(100% - 28px);
    }

    .pub__img {
        height: 260px;
    }

    .pub__card {
        padding: 22px 18px 18px;
    }
}




/* =======================
   OUR GRANTS
======================= */

.grants {
    padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    overflow: hidden;
}

    .grants .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0 clamp(20px, 6vw, 95px);
    }

/* ================= OWL LAYOUT ================= */

.grants__grid {
    display: block;
    position: relative;
}

    .grants__grid .owl-stage-outer {
        overflow: visible;
        overflow-x: hidden;
        padding-bottom: 38px;
    }

    .grants__grid .owl-stage {
        display: flex;
    }

    .grants__grid .owl-item {
        display: flex;
        height: auto;
    }

        .grants__grid .owl-item .grantCard {
            width: 100%;
            height: 100%;
        }

/* ================= CARD ================= */

.grantCard {
    position: relative;
    border-radius: 4px;
    overflow: visible;
    border: 1px solid rgba(0, 49, 65, 0.15);
    box-shadow: 0 0 42.4px 0 rgba(2, 2, 2, 0.07);
    min-height: 330px;
    background: #eef1f7;
    margin-bottom: 30px;
}

.grantCard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    box-shadow: 0 0 42.4px 0 rgba(0, 0, 0, 0.07);
    border-radius: 4px 4px 0px 0px;
    clip-path: inset(0 round 0px);
}

.grantCard__body {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -25px;
    height: 190px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 8px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.grantCard__title {
    color: #023141;
    font-family: 'Poppins-Bold';
    font-size: 20px;
    line-height: 27.2px;
    margin: 0 0 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ================= SLIDER ARROWS ================= */

.grants__grid .owl-nav {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    pointer-events: none;
}

    .grants__grid .owl-nav button {
        width: 56px;
        height: 56px;
        border-radius: 50% !important;
        background: #ffffff !important;
        box-shadow: 0 0px 4.8px 0 rgba(0,0,0,.25);
        transition: 0.25s ease;
        pointer-events: all;
    }

    .grants__grid .owl-nav .owl-prev {
        position: absolute;
        left: -12px;
    }

    .grants__grid .owl-nav .owl-next {
        position: absolute;
        right: -12px;
    }

    .grants__grid .owl-nav button:hover {
        box-shadow: 0 0px 4.8px 0 rgba(0,0,0,.45);
    }

    .grants__grid .owl-nav button.hidden-arrow {
        opacity: 0;
        pointer-events: none;
    }

    .grants__grid .owl-nav button img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .grantCard {
        min-height: 320px;
    }

    .grantCard__body {
        height: 185px;
    }
}

@media (max-width: 991px) {
    .grants .container {
        padding: 0 24px;
    }

    .grantCard {
        min-height: 315px;
    }

    .grantCard__body {
        left: 16px;
        right: 16px;
        bottom: -22px;
        height: 180px;
        padding: 20px 20px;
    }

    .grantCard__title {
        font-size: 19px;
        line-height: 25px;
    }

    .grants__grid .owl-nav {
        top: 40%;
    }

        .grants__grid .owl-nav .owl-prev {
            left: -6px;
        }

        .grants__grid .owl-nav .owl-next {
            right: -6px;
        }
}

@media (max-width: 767px) {
    .grants {
        padding: 50px 0 80px;
    }

        .grants .container {
            padding: 0 16px;
        }

    .grants__grid .owl-stage-outer {
        padding-bottom: 32px;
    }

    .grantCard {
        min-height: 320px;
        margin-bottom: 24px;
    }

    .grantCard__body {
        left: 14px;
        right: 14px;
        bottom: -20px;
        height: 172px;
        padding: 18px 18px;
    }

    .grantCard__title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .grants__grid .owl-nav {
        top: 38%;
    }

        .grants__grid .owl-nav .owl-prev {
            left: -12px;
        }

        .grants__grid .owl-nav .owl-next {
            right: -12px;
        }

        .grants__grid .owl-nav button {
            width: 40px;
            height: 40px;
            background: #fff !important;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

            .grants__grid .owl-nav button img {
                width: 18px;
                height: 18px;
            }
}

@media (max-width: 575px) {
    .grantCard {
        min-height: 300px;
    }

    .grantCard__body {
        height: 165px;
    }

    .grantCard__title {
        font-size: 17px;
        line-height: 23px;
        -webkit-line-clamp: 3;
    }
}




/* =======================
   LATEST NEWS (FULL CSS)
======================== */

.news {
    position: relative;
    padding: 80px 0 80px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 10px;
}

    .news::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: clamp(260px, 28vw, 290px);
        background: #023141;
        z-index: 0;
    }

    .news .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        padding: 0 clamp(15px,7vw,95px);
    }

    .news .programs-title {
        color: #ffffff;
    }

    .news .programs-subtitle {
        color: rgba(255,255,255,0.75);
        margin-top: 16px;
    }

.news__header {
    margin-bottom: 55px;
}

.news__viewAll {
    box-shadow: 0 10px 22px rgba(1,121,218,.22);
}

.news__content {
    background: transparent;
}

.news__grid {
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.newsMeta {
    font-family: 'Poppins-Reg';
    font-size: 14px;
    color: #0179DA;
    margin-bottom: 10px;
}

.newsActions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

/* =======================
   Featured card
======================== */
.newsFeature {
    background: #ffffff;
    border: 1px solid rgba(195,195,195,0.40);
    border-radius: 0px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.18);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.newsFeature__media {
    display: block;
    padding: 18px 18px 0 18px;
}

.newsFeature__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    border: 1px solid rgba(2, 49, 65, 0.15);
}

.newsFeature__body {
    padding: 18px 22px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsFeature__title {
    margin: 0 0 12px 0;
    color: #023141;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsFeature__text {
    margin: 0;
    color: #2b2b2b;
    font-family: 'Poppins-Reg';
    font-size: 16px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsFeature .newsActions {
    margin-top: auto;
    padding-top: 18px;
}

/* =======================
   Right list cards
======================== */
.newsList {
    height: 100%;
    display: grid;
    gap: 18px;
    grid-template-rows: repeat(3, 1fr);
}

.newsItem {
    background: #ffffff;
    border: 1px solid rgba(195,195,195,0.40);
    border-radius: 0px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.18);
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: stretch;
    height: 100%;
}

.newsItem__thumb {
    flex: 0 0 160px;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f6f9;
    border: 1px solid rgba(2,49,65,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .newsItem__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.newsItem__thumb--logo img {
    width: 78%;
    height: auto;
    object-fit: contain;
}

.newsItem__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.newsItem__title {
    margin: 0;
    color: #023141;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsItem .newsActions {
    margin-top: auto;
}

/* =======================
   Mobile slider
======================== */
.newsMobileSliderWrap {
    display: none;
}

.newsMobileSlider .owl-stage {
    display: flex;
}

.newsMobileSlider .owl-item {
    display: flex;
    height: auto;
}

    .newsMobileSlider .owl-item .newsFeature {
        width: 100%;
    }

.newsMobileSlider .owl-nav {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .newsMobileSlider .owl-nav button.owl-prev,
    .newsMobileSlider .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
        border-radius: 50% !important;
        background: #023141 !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        margin: 0 !important;
    }

        .newsMobileSlider .owl-nav button.owl-prev:hover,
        .newsMobileSlider .owl-nav button.owl-next:hover {
            background: #0179DA !important;
        }

        .newsMobileSlider .owl-nav button.owl-prev.disabled,
        .newsMobileSlider .owl-nav button.owl-next.disabled {
            opacity: .35;
            cursor: not-allowed;
        }

    .newsMobileSlider .owl-nav span {
        display: none;
    }

    .newsMobileSlider .owl-nav button.owl-prev::before,
    .newsMobileSlider .owl-nav button.owl-next::before {
        content: "";
        width: 18px;
        height: 18px;
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .newsMobileSlider .owl-nav button.owl-prev::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M11.25 3.75L6 9L11.25 14.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .newsMobileSlider .owl-nav button.owl-next::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 3.75L12 9L6.75 14.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

.newsMobileSlider .owl-nav {
    display: none !important;
}

.newsCustomNav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}



    .newsCustomNav .pub__navBtn.disabled {
        opacity: .35;
        pointer-events: none;
    }


/* =======================
   Responsive
======================== */
@media (max-width: 992px) {
    .news {
        padding: clamp(40px,5vw,70px) 0 90px;
    }

    .news__grid {
        display: none;
    }

    .newsMobileSliderWrap {
        display: block;
    }

    .newsFeature__img {
        height: 280px;
    }
}

@media (max-width: 620px) {
    .news__header {
        margin-bottom: 35px;
    }

    .newsFeature__media {
        padding: 14px 14px 0 14px;
    }

    .newsFeature__body {
        padding: 14px 16px 16px 16px;
    }

    .newsFeature__img {
        height: 220px;
    }

    .newsMobileSlider .owl-nav {
        justify-content: center;
    }
}










/* =======================
   FOOTER (FULL CSS)
======================== */

.site-footer {
    background: #fff;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.25);
}

    .site-footer .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0px 100px;
    }

@media(max-width:1100px) {
    .site-footer .container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0px clamp(35px,6.5vw,100px);
    }
}

/* ---------- TOP ---------- */
.site-footer__top {
    padding: 32px 0;
}

.footerGrid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: clamp(18px,3vw,70px);
    align-items: start;
}

/* LEFT */
.footerBrand__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .footerBrand__logo img {
        height: clamp(44px,4vw,60px);
        width: auto;
        display: block;
    }

.footerBrand__sub {
    margin: 6px 0 0;
    font-family: 'Poppins-Reg';
    color: rgba(2,49,65,0.55);
    font-size: 18px;
    line-height: 22px;
}

/* MIDDLE NAV */
.footerNav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
}

.footerNav__link {
    width: fit-content;
    text-decoration: none;
    font-family: 'Poppins-Reg';
    color: #023141;
    font-size: 16px;
    transition: color .2s ease, transform .2s ease;
}

    .footerNav__link:hover {
        color: #0179DA;
        transform: translateX(2px);
    }

/* RIGHT CONTACT */
.footerContact {
    padding-top: 0px;
}

.footerContact__title {
    margin: 0 0 16px 0;
    font-family: 'Poppins-Bold';
    color: #2491DC;
    font-size: clamp(16px,2.1vw,24px);
}

.footerContact__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footerContact__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footerContact__icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #2491DC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footerContact__text {
    font-family: 'Poppins-Reg';
    color: #023141;
    font-size: 16px;
    text-decoration: none;
}

    .footerContact__text:hover {
        color: #0179DA;
    }

/* ---------- BOTTOM BAR ---------- */
.site-footer__bottom {
    background: #023141;
    padding: 18px 0;
}

.footerBottomRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
    font-family: 'Poppins-Reg';
    font-size: 14px;
}

.footerBottomRow__right {
    text-align: right;
}

.footerBottomRow__link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

    .footerBottomRow__link:hover {
        color: #00ABD6;
    }

/* =======================
   RESPONSIVE
======================== */

/* 2 columns on tablet */
@media (max-width: 992px) {
    .footerGrid {
        grid-template-columns: 1fr 1fr;
    }

    .footerBrand {
        grid-column: 1 / -1; /* logo full row */
    }

    .footerBrand__sub {
        font-size: 16px;
    }

    .footerNav__link,
    .footerContact__text {
        font-size: 18px;
        line-height: 26px;
    }
}

/* stack everything on mobile */
@media (max-width: 640px) {
    .footerGrid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footerNav {
        gap: 10px;
    }

    .footerContact__icon {
        width: 46px;
        height: 46px;
    }

    .footerBottomRow {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footerBottomRow__right {
        text-align: left;
    }
}
#scroll-top {
    display: none;
    width: 41px;
    height: 36px;
    position: fixed;
    bottom: 65px;
    right: 15px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    text-align: center;
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
    transition: all 0.5s;
    background-color: white;
    box-shadow: 2px 3px 5px rgba(0, 0, 0,0.2);
}

#accessibility {
    position: fixed;
    bottom: 50px;
    left: 0px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    text-align: center;
}



.rate {
    border-top: 1px solid #dbdbdb;
    padding: 15px 0px 0px 0px;
}

.hb-ratingbar {
    position: relative;
    width: 114px;
    height: 23px;
    overflow: hidden;
    cursor: pointer;
    top: 5px;
}

    .hb-ratingbar:hover .filled {
        background: #ffb628;
    }

    .hb-ratingbar .unfilled {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #ccc;
        z-index: 1;
    }

    .hb-ratingbar .filled {
        position: absolute;
        transition: 0.2s width ease;
        top: 0;
        left: 0;
        height: 100%;
        background: #f4a100;
        z-index: 2;
    }

    .hb-ratingbar .cover {
        color: #fff;
        z-index: 3;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .hb-ratingbar[data-rated="0"] .filled {
        width: 0%;
    }

    .hb-ratingbar[data-rated="0.5"] .filled {
        width: 10%;
    }

    .hb-ratingbar[data-rated="1"] .filled {
        width: 20%;
    }

    .hb-ratingbar[data-rated="1.5"] .filled {
        width: 30%;
    }

    .hb-ratingbar[data-rated="2"] .filled {
        width: 40%;
    }

    .hb-ratingbar[data-rated="2.5"] .filled {
        width: 50%;
    }

    .hb-ratingbar[data-rated="3"] .filled {
        width: 60%;
    }

    .hb-ratingbar[data-rated="3.5"] .filled {
        width: 70%;
    }

    .hb-ratingbar[data-rated="4"] .filled {
        width: 80%;
    }

    .hb-ratingbar[data-rated="4.5"] .filled {
        width: 90%;
    }

    .hb-ratingbar[data-rated="5"] .filled {
        width: 100%;
    }

.breadcrumb-item a {
    margin-bottom: 0.5rem;
}

.breadcrumb-item a, .breadcrumb-item span {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins-Reg';
    font-size: 14px;

    opacity: 1 !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    transform:scaleX(-1);
    content: url(/App_Themes/ThemeEn/Assets/images/breadcrumbs-icon.png) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 0.8rem;
    color: #474747;
    content: url(/App_Themes/ThemeEn/Assets/images/breadcrumbs-icon.png);
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: 0 !important;
}

.contentbdody {
    min-height: 400px;
    padding-bottom: 30px !important;
    margin-top: 40px;
}

#st-1{
    z-index:10 !important;
}