/* =========================================================
   ONOS — Design Tokens
   Primary/Secondary (brief): #123265
   Accent (saffron-gold, echoes Indian tricolour & CTAs): #E8A33D
========================================================= */
:root {
    --primary: #123265;
    --primary-dark: #0b2247;
    --primary-light: #1e4a8a;
    --primary-tint: #eaf0fa;
    --accent: #00227f;
    --accent-dark: #001e72;
    --accent-tint: #fcf1de;
    --ink: #142238;
    --ink-muted: #5b6478;
    --bg: #f6f8fc;
    --bg-alt: #eef2f9;
    --white: #ffffff;
    --border: #e2e8f3;

    --font-display: "Sora", sans-serif;
    --font-body: "Inter", sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(18, 50, 101, 0.06);
    --shadow-md: 0 10px 30px rgba(18, 50, 101, 0.1);
    --shadow-lg: 0 20px 50px rgba(18, 50, 101, 0.16);
    --gap: 24px;
    --header-h: 90px;
    --nav-h: 48px;
    --ease: ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--nav-h) + 10px);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
#mainContent {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--primary);
    margin: 0;
}

a {
    text-decoration: none !important;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 10px 18px;
    z-index: 2000;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}

/* =========== Utility bar =========== */
.utility-bar {
    background: #0b2247;
    color: #ffffff;
    font-size: 0.78rem;
    padding: 8px 0;
    font-weight: 600;
}
.utility-bar a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: color 0.2s;
}
.utility-bar a:hover {
    color: var(--accent);
}
.utility-bar .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 12px;
    font-weight: 300;
}

/* Custom Header Styling Variable Configurations */
:root {
    --onos-primary: #123265;
    --onos-dark: #091c3a;
    --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Base Top Utility Blue Strip */
.top-utility-bar {
    background-color: var(--onos-primary);
    font-family: var(--font-stack);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fs-7 {
    font-size: 0.825rem;
}
.accessibility-links a,
.utility-links a {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.accessibility-links a:hover,
.utility-links a:hover {
    opacity: 1;
    text-decoration: underline !important;
}

/* Middle Identity Bar Alignment */
.brand-title {
    color: var(--onos-primary);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.brand-subtitle {
    font-size: 0.85rem;
    color: var(--onos-primary);
    letter-spacing: 0.02em;
}
.viksit-bharat-box {
    border-color: #dee2e6 !important;
    background-color: #f8f9fa;
}
.align-sub-text {
    font-size: 0.65rem;
    letter-spacing: 0.22em !important;
}

/* Bottom Navigation Component Blocks */
.main-navigation-layer {
    background-color: var(--onos-primary);
    font-family: var(--font-stack);
}
.main-navigation-layer .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.015em;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    border-bottom: 3px solid transparent;
}
.main-navigation-layer .nav-link:hover,
.main-navigation-layer .nav-link.active {
    color: #ffffff !important;
    background-color: var(--onos-dark);
    border-bottom-color: var(
        --white
        ); /* Dynamic subtle accent baseline indicator */
}
.main-navigation-layer .dropdown-menu {
    background-color: #ffffff;
    border-radius: 4px;
    margin-top: 0px !important;
}
.main-navigation-layer .dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
    padding: 0.5rem 1.25rem;
}
.main-navigation-layer .dropdown-item:hover,
.main-navigation-layer .dropdown-item:active {
    background-color: #f4f6f9;
    color: var(--onos-primary);
}
.logo {
    display: block;
    width: auto;
    height: 80px;
}
.logo img {
    height: 100%;
    width: 100%;
}
.navbar-nav > .nav-item a {
    margin-right: 10px;
    padding: 14px 0;
}
.navbar-nav > .nav-item a i {
    margin-right: 3px;
}
.navbar-nav > .nav-item:last-child {
    margin-right: 0;
}
.navbar-nav .nav-item .dropdown-item {
    padding: 10px;
}
/* Mobile Responsive System Handling Overrides */
@media (max-width: 1600px) {
    .navbar-nav > .nav-item a {
    margin-right: 0;
  }
  .navbar-nav > .nav-item a i {
    margin-right: 0;
  }
}
@media (max-width: 1399px) {
  .main-navigation-layer .nav-link {
    font-size: 14px;
  }

}
@media (max-width: 1199.98px) {
    .logo {
        height: 75px;
    }
    .navbar-nav > .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }
    .navbar-nav > .nav-item a {
        padding: 5px 15px !important;
    }
    .main-navigation-layer .navbar-collapse {
        background-color: var(--onos-primary);
        padding-bottom: 1rem;
    }
    .main-navigation-layer .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: none !important;
    }
    .main-navigation-layer .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .main-navigation-layer .nav-link {
        font-size: 14px;
        width: 100%;
    }
    .main-navigation-layer .nav-link {
        background-color: var(--onos-secondary);
        width: 100%;
    }
    .main-navigation-layer .nav-link.active {
        background-color: var(--white);
        color: var(--onos-primary) !important;
    }
}
@media (max-width: 991px) {
    .logo {
        height: 70px;
    }
    .accessibility-links {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .logo {
        height: 65px;
    }
}
@media (max-width: 575px) {
    .logo {
        height: 55px;
    }
    .utility-links {
        padding-left: 0;
        margin-top: 0 !important;
    }
}
@media (max-width: 400px) {
    .logo {
        height: 45px;
    }
}

/* =========== Hero =========== */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slides {
    position: relative;
    width: 100%;
    z-index: 2;
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s;
}
.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.hero-inner {
    width: 100%;
    height: 100%;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 18px;
    background: rgba(232, 163, 61, 0.14);
    padding: 7px 16px;
    border-radius: 30px;
}
.hero-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--accent);
}
.hero-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 8px 22px rgba(232, 163, 61, 0.35);
}
.btn-hero-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.btn-hero-ghost {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    transition: all 0.25s;
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--ink);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--accent);
    color: #fff;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}
.hero-arrow:hover {
    background: var(--primary-dark);
    color: var(--primary-tint);
    border-color: var(--primary-tint);
}
.hero-arrow-prev {
    left: 24px;
}
.hero-arrow-next {
    right: 24px;
}
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
    z-index: 3;
}
.hero-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--onos-dark);
    cursor: pointer;
    transition: all 0.25s;
}
.hero-dots .dot.active {
    background: var(--accent);
    width: 26px;
    border-radius: 5px;
}

.banner {
    width: 100%;
    height: auto;
    z-index: 10;
}


@media (max-width: 575px) {
    .hero {
        display: none;
    }
    .hero-arrow {
        width: 36px;
        height: 36px;
    }
    .hero-arrow-prev {
        left: 15px;
    }
    .hero-arrow-next {
        right: 15px;
    }
}
/* =========== News Ticker =========== */
.news-ticker-section {
    background: var(--primary-dark);
    display: flex;
    align-items: stretch;
    border-bottom: 3px solid var(--accent);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.news-label {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    padding-right: 40px;
}
.news-ticker-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.news-ticker-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    max-width: 100%;
}
.news-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.88rem;
    padding: 12px 40px 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 40px;
}
.news-item i {
    color: var(--accent-tint);
}

/* =========== Section generic =========== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.78rem;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 600;
    margin-bottom: 5px;
}
.section-sub {
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto 10px;
}
.section-head {
    margin-bottom: 20px;
}
.section-head.text-center .section-eyebrow {
    justify-content: center;
}

/* =========== Search Section =========== */
.search-section {
    padding: 40px 0;
    position: relative;
    z-index: 5;
}
.search-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px 40px;
    border-top: 5px solid var(--accent);
}
.search-title {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-title .section-eyebrow {
    margin-bottom: 0;
    line-height: 1;
}
.search-title .section-title {
    font-size: 26px;
    margin-bottom: 0;
}
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    margin-top: 22px;
    transition: border-color 0.2s;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.search-box:focus-within {
    border-color: var(--primary-light);
}
.search-icon {
    color: var(--ink-muted);
    flex-shrink: 0;
}
.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    padding: 12px 6px;
    outline: none;
    font-family: var(--font-body);
    min-width: 0;
}
.btn-search {
    background: var(--primary);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 13px 34px;
    border-radius: 60px;
    transition:
        background 0.2s,
        transform 0.2s;
}
.btn-search:hover {
    background: var(--accent);
    color: var(--primary-tint);
}
.search-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--ink-muted);
}
.search-meta i.fa-circle-check {
    color: #1f8a5c;
    margin-right: 5px;
}
.access-link {
    margin-left: auto;
    color: var(--primary);
    font-weight: 700;
}
.access-link:hover {
    color: var(--accent-dark);
}
@media (max-width: 1600px) {
    .search-card {
        padding: 25px 35px;
    }
    .search-title .section-title {
        font-size: 25px;
    }
}
@media (max-width: 1199px) {
    .search-card {
        padding: 25px 30px;
    }
    .search-title .section-title {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .search-card {
        padding: 20px 30px;
    }
    .search-title {
        gap: 15px;
    }
    .search-title .section-title {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .search-title .section-title {
        font-size: 21px;
    }
}
@media (max-width: 575px) {
    .search-title {
        gap: 10px;
    }
    .search-title .section-title {
        font-size: 20px;
    }
}

/* =========== Stats =========== */
.stats-section {
    padding: 40px 0;
    background: var(--bg-alt);
}
.stat-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
    font-size: 1.4rem;
}
.stat-icon-blue {
    --c1: #123265;
    --c2: #1e4a8a;
}
.stat-icon-green {
    --c1: #1f8a5c;
    --c2: #2fae79;
}
.stat-icon-red {
    --c1: #b5442e;
    --c2: #d46a4e;
}
.stat-icon-gold {
    --c1: #e8a33d;
    --c2: #f0be6e;
}
.stat-delay-0 {
    transition-delay: 0s;
}
.stat-delay-1 {
    transition-delay: 0.1s;
}
.stat-delay-2 {
    transition-delay: 0.2s;
}
.stat-delay-3 {
    transition-delay: 0.3s;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}
.stat-number span {
    font-size: 20px;
}
.stat-label {
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 4px;
}

@media (max-width: 1600px) {
    .stats-section {
        padding: 35px 0;
    }
}
@media (max-width: 1199px) {
    .stats-section {
        padding: 50px 0;
    }
}
@media (max-width: 991px) {
    .stats-section {
        padding: 45px 0;
    }
}
@media (max-width: 767px) {
    .stats-section {
        padding: 30px 0;
    }
    .stat-card {
        padding: 22px 14px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.45;
    }
    .stats-section {
        padding: 45px 0 30px;
    }
    .section-head {
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .section-head {
        margin-bottom: 20px;
    }
}

@media (max-width: 420px) {
    .stats-section {
        padding: 25px 0;
    }
    .stat-card {
        padding: 18px 10px;
    }
    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 12px;
    }
    .stat-number {
        font-size: 1.28rem;
    }
    .stat-label {
        font-size: 0.74rem;
    }
}

/* =========== About =========== */
.about-section {
    padding: 40px 0;
}
.about-text {
    color: var(--ink-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text strong {
    color: var(--primary);
}
.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
}
.about-point i {
    color: #1f8a5c;
}
.btn-primary-onos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.25s;
}
.btn-primary-onos:hover {
    background: var(--accent);
    color: var(--primary-tint);
    transform: translateY(-2px);
}
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
}
.about-visual-card {
    width: 100%;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-visual-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(232, 163, 61, 0.25),
        transparent 70%
        );
    top: -60px;
    right: -60px;
}
.quote-icon {
    color: var(--accent-tint);
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.about-visual-card p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.about-visual-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}
.about-visual-flags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .about-section {
        padding: 55px 0;
    }
    .about-visual-card {
        padding: 35px;
    }
}
@media (max-width: 1199px) {
    .about-section {
        padding: 50px 0;
    }
    .about-visual-card {
        padding: 30px;
    }
}
@media (max-width: 991.98px) {
    .about-section {
        padding: 45px 0;
    }
    .about-text {
        max-width: 100%;
        font-size: 0.98rem;
    }
    .about-visual {
        margin-top: 10px;
    }
    .about-visual-card {
        max-width: 100%;
    }
    .about-visual-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 40px 0;
    }
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .about-points {
        gap: 10px;
        margin: 18px 0 22px;
    }
    .about-point {
        font-size: 0.9rem;
    }
    .about-visual-card p {
        font-size: 1rem;
    }
    .about-visual-flags {
        gap: 10px;
        margin-top: 20px;
    }
    .about-visual-flags span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .about-visual-card {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 30px 0;
    }
    .about-point {
        align-items: flex-start;
    }
    .about-point i {
        margin-top: 2px;
    }
    .about-visual-card {
        padding: 15px;
        border-radius: var(--radius-md);
    }
    .about-visual-card p {
        font-size: 0.95rem;
    }
    .about-visual-flags span {
        font-size: 0.8rem;
    }
}

/* =========== Info Cards =========== */
.info-cards-section {
    padding: 40px 0;
    background: var(--bg-alt);
}
.info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 26px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition:
        background 0.3s,
        color 0.3s;
}
.info-card:hover .info-card-icon {
    background: var(--primary);
    color: #fff;
}
.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.info-card p {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.info-card-link {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 0.85rem;
}
.info-card-link:hover {
    color: var(--primary);
}

/* =========== Testimonials =========== */
.testimonials-section {
    padding: 40px 0;
    background: var(--bg-alt);
    max-width: 100%;
    width: 100%;
}
.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    width: 100%;
}
.testimonial-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.testimonial-viewport::-webkit-scrollbar {
    display: none;
}
.testimonial-track {
    display: flex;
    width: 100%;
    max-width: 100%;
}
.testimonial-page {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    gap: 24px;
    align-items: stretch;
    box-sizing: border-box;
    scroll-snap-align: start;
}
.testimonial-page--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-page--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.testimonial-page--1 {
    grid-template-columns: 1fr;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    min-width: 0;
}
.testimonial-card:hover {
    transform: translateY(1px);
    box-shadow: var(--shadow-md);
}
.test-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    border: 2px solid var(--primary-dark);
    background: #f5f7fb;
    flex-shrink: 0;
}
.test-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.test-stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.test-text {
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-clamp: 3;
}
.test-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: auto;
}
.test-role {
    color: var(--ink-muted);
    font-size: 0.82rem;
}
.test-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.test-arrow:hover {
    background: var(--primary);
    color: #fff;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}
.testimonial-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ink-muted);
    cursor: pointer;
    transition: all 0.25s;
}
.testimonial-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .testimonial-card {
        padding: 15px;
    }
}
/* =========== Video Testimonials =========== */
.ot-section {
    max-width: 100%;
    width: 100%;
    background:
        radial-gradient(
        1200px 480px at 50% -120px,
        var(--primary-tint) 0%,
        transparent 60%
        ),
        var(--bg);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.ot-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* ---------- Header ---------- */
.ot-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
    padding: 0 8px;
}

.ot-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--primary-tint);
    color: var(--primary);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid rgba(18, 50, 101, 0.1);
    max-width: 100%;
    text-align: center;
}
.ot-eyebrow svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.ot-title {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    letter-spacing: -0.02em;
    color: var(--heading);
    margin: 0 0 10px;
    line-height: 1.15;
}
.ot-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2.2vw, 16.5px);
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}
/* ---------- Carousel shell ---------- */
.ot-carousel-shell {
    position: relative;
    padding: 0 76px;
}
.ot-viewport {
    overflow: hidden;
    border-radius: calc(var(--radius) + 8px);
    outline: none;
}
.ot-viewport:focus-visible {
    box-shadow:
        0 0 0 3px var(--primary-light),
        0 0 0 6px rgba(30, 74, 138, 0.18);
}
.ot-track {
    display: flex;
    gap: var(--gap, 24px);
    list-style: none;
    margin: 0;
    padding: 6px 2px 18px;
    will-change: transform;
}
.ot-track.no-transition {
    transition: none !important;
}
.ot-track.animate {
    transition: transform 0.55s var(--ease);
}

/* ---------- Card ---------- */
.ot-card {
    flex: 0 0 calc((100% - (var(--cpv, 3) - 1) * var(--gap)) / var(--cpv, 3));
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition:
        transform 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease);
}

.ot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* ---- video frame ---- */
.ot-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    overflow: hidden;
}

.ot-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0b2247;
    transition: transform 0.6s var(--ease);
}

.ot-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(11, 34, 71, 0.08) 0%,
        rgba(11, 34, 71, 0.55) 100%
        );
    transition: opacity 0.4s var(--ease);
    cursor: pointer;
    border: none;
    padding: 0;
}
.ot-video-frame iframe {
    width: 100%;
    height: 100%;
}
.ot-card.is-playing .ot-thumb-overlay,
.ot-card.is-playing .ot-badge-duration {
    opacity: 0;
    pointer-events: none;
}

.ot-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(11, 34, 71, 0.35);
    transition:
        transform 0.4s var(--ease),
        background 0.3s var(--ease);
    position: relative;
}

.ot-play-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    opacity: 0;
    transition:
        opacity 0.4s var(--ease),
        inset 0.4s var(--ease);
}

.ot-card:hover .ot-play-btn {
    transform: scale(1.12);
    background: var(--white);
}
.ot-card:hover .ot-play-btn::after {
    opacity: 1;
    inset: -16px;
}

.ot-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
    fill: var(--primary);
}

.ot-card:hover .ot-video-frame video {
    transform: scale(1.06);
}

.ot-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    line-height: 1;
    border-radius: 999px;
    padding: 6px 10px;
    z-index: 2;
}

.ot-badge-verified {
    top: 14px;
    left: 14px;
    background: rgba(234, 240, 250, 0.95);
    color: var(--primary-dark);
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}
.ot-badge-verified svg {
    width: 13px;
    height: 13px;
    fill: var(--accent);
}

.ot-badge-duration {
    bottom: 14px;
    right: 14px;
    background: rgba(11, 34, 71, 0.72);
    color: var(--white);
    letter-spacing: 0.02em;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s var(--ease);
}

/* ---- card body ---- */
.ot-card-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 38px 24px 24px;
}

.ot-avatar {
    position: absolute;
    top: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--primary-dark)
        );
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.ot-person-name {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--heading);
    margin: 0 0 3px;
    letter-spacing: -0.01em;
}

.ot-person-role {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 1px;
    line-height: 1.45;
}

.ot-person-inst {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    margin: 0 0 14px;
}

.ot-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}
.ot-stars svg {
    width: 15px;
    height: 15px;
    fill: #f2a93b;
}

.ot-quote {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--heading);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* ---------- Nav arrows ---------- */
.ot-nav-btn {
    position: absolute;
    top: calc(50% - 12px);
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 3;
}
.ot-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.05);
}
.ot-nav-btn:hover svg {
    stroke: var(--white);
}
.ot-nav-btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px var(--primary-light),
        0 0 0 6px rgba(30, 74, 138, 0.18);
}
.ot-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s var(--ease);
}
.ot-nav-prev {
    left: 0;
}
.ot-nav-next {
    right: 0;
}

/* ---------- Dots ---------- */
.ot-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 36px;
    flex-wrap: wrap;
    padding: 0 12px;
}
.ot-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition:
        width 0.4s var(--ease),
        background 0.4s var(--ease);
}
.ot-dot:hover {
    background: var(--primary-light);
}
.ot-dot.is-active {
    width: 26px;
    background: var(--primary);
}
.ot-dot:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 74, 138, 0.3);
}

/* ==========================================================
   Responsive breakpoints
   Covers: large desktop, laptop, tablet landscape, tablet
   portrait, large phone, small phone
   ========================================================== */
@media (max-width: 1600px) {
    .ot-section {
        padding: 50px 0;
    }
}

/* Large desktop / wide monitors */
@media (min-width: 1440px) {
    .ot-track {
        --cpv: 3;
    }
}

/* Standard desktop / small laptop */
@media (max-width: 1439px) and (min-width: 1024px) {
    .ot-track {
        --cpv: 3;
    }
}

/* Tablet landscape */
@media (max-width: 1023px) and (min-width: 768px) {
    .ot-track {
        --cpv: 2;
    }
    .ot-carousel-shell {
        padding: 0 60px;
    }
    .ot-section {
        padding: 30px 0;
    }
}

/* Tablet portrait / large phones (landscape) */
@media (max-width: 767px) and (min-width: 600px) {
    .ot-track {
        --cpv: 1;
    }
    .ot-carousel-shell {
        padding: 0 52px;
    }
    .ot-section {
        padding: 30px 18px 30px;
    }
    .ot-header {
        margin-bottom: 48px;
    }
    .ot-header {
        margin-bottom: 18px;
    }
    .test-arrow,
    .ot-nav-btn {
        display: none;
    }
}

/* Phones */
@media (max-width: 599px) {
    .ot-track {
        --cpv: 1;
        gap: 20px;
    }
    .ot-carousel-shell {
        padding: 0 8px;
    }
    .ot-nav-btn {
        width: 42px;
        height: 42px;
    }
    .ot-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .ot-section {
        padding: 64px 16px 80px;
    }
    .ot-header {
        margin-bottom: 40px;
    }
    .ot-card-body {
        padding: 36px 20px 22px;
    }
    .ot-avatar {
        width: 50px;
        height: 50px;
        font-size: 14px;
        top: -25px;
        left: 20px;
    }
    .ot-header {
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .ot-nav-prev {
        display: none;
    }
    .ot-nav-next {
        display: none;
    }
}
/* Small phones */
@media (max-width: 420px) {
    .ot-section {
        padding: 30px 0;
    }
    .ot-carousel-shell {
        padding: 0 4px;
    }
    .ot-nav-btn {
        width: 38px;
        height: 38px;
    }
    .ot-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    .ot-eyebrow {
        font-size: 11px;
        padding: 5px 12px;
    }
    .ot-title {
        margin-bottom: 14px;
    }
    .ot-quote {
        font-size: 13.5px;
    }
    .ot-badge {
        font-size: 10.5px;
        padding: 5px 8px;
    }
    .ot-play-btn {
        width: 54px;
        height: 54px;
    }
    .ot-play-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Very small / narrow phones (e.g. 320px) */
@media (max-width: 360px) {
    .ot-carousel-shell {
        padding: 0 2px;
    }
    .ot-nav-btn {
        width: 34px;
        height: 34px;
    }

    .ot-card-body {
        padding: 32px 16px 18px;
    }
    .ot-avatar {
        width: 44px;
        height: 44px;
        font-size: 13px;
        top: -22px;
        left: 16px;
    }
    .ot-person-name {
        font-size: 15px;
    }
}

/* Landscape phones (short viewport height) */
@media (max-height: 480px) and (orientation: landscape) {
    .ot-section {
        padding: 40px 16px 48px;
    }
    .ot-header {
        margin-bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ot-track,
    .ot-card,
    .ot-play-btn,
    .ot-video-frame video,
    .ot-thumb-overlay,
    .ot-dot,
    .ot-nav-btn {
        transition: none !important;
    }
}

/* =========================================================
   ONOS on Facebook — Section Styles
   Standalone stylesheet — does not modify any existing rules.
   Reuses design tokens already defined in style.css
   (--primary, --accent, --ink-muted, --radius-*, --shadow-*, --border, --bg)
========================================================= */

.fb-showcase-section {
    padding: 60px 0;
}

.fb-showcase-grid {
    margin-top: 10px;
}

/* ---------- Card ---------- */
.fb-post-card {
    background: #fff;
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(18, 50, 101, 0.06));
    border: 1px solid var(--border, #e2e8f3);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.fb-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md, 0 10px 30px rgba(18, 50, 101, 0.1));
}

/* ---------- Card header (page identity strip) ---------- */
.fb-post-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1877f2, #0d5cd6);
    color: #fff;
}
.fb-post-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: #fff;
    color: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.fb-post-identity {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.fb-post-page-name {
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fb-post-timestamp {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ---------- Media ---------- */
.fb-post-media {
    display: block;
    position: relative;
    background: var(--primary-tint, #eaf0fa);
}
.fb-post-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s;
}
.fb-post-card:hover .fb-post-media img {
    transform: scale(1.06);
}

/* ---------- Body ---------- */
.fb-post-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fb-post-text {
    color: var(--ink-muted, #5b6478);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.fb-post-text .fb-full-text {
    display: none;
}
.fb-post-text.fb-expanded .fb-short-text {
    display: none;
}
.fb-post-text.fb-expanded .fb-full-text {
    display: inline;
}
.fb-see-more-btn {
    display: inline-block;
    margin-top: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary, #123265);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.fb-see-more-btn:hover {
    color: var(--accent, #00227f);
    text-decoration: underline;
}

/* ---------- Footer / meta ---------- */
.fb-post-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border, #e2e8f3);
}
.fb-post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.8rem;
    color: var(--ink-muted, #5b6478);
    margin-bottom: 14px;
}
.fb-post-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    transition: color 0.2s;
}
.fb-post-meta a:hover {
    color: #1877f2;
}
.fb-post-meta i {
    color: #1877f2;
}
.fb-post-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary, #123265);
}
.fb-post-view-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.fb-post-view-link:hover {
    color: var(--accent, #00227f);
}
.fb-post-view-link:hover i {
    transform: translateX(3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1600px) {
    .fb-showcase-section {
        padding: 50px 0;
    }
}
@media (max-width: 991px) {
    .fb-post-media img {
        height: 150px;
    }
    .fb-showcase-section {
        padding: 40px 0;
    }
}
@media (max-width: 575px) {
    .fb-showcase-section {
        padding: 40px 0;
    }
    .fb-post-card-head {
        padding: 12px 14px;
    }
    .fb-post-body {
        padding: 16px;
    }
    .fb-post-avatar {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }
}


/* =========== Social Media =========== */
.social-section {
    padding: 40px 0;
    background: var(--bg-alt);
}
.social-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.social-card-head {
    padding: 16px 22px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-fb {
    background: linear-gradient(135deg, #1877f2, #0d5cd6);
}
.social-x {
    background: linear-gradient(135deg, #000, #333);
}
.social-linkedin {
    background: linear-gradient(135deg, #0a66c2, #004182);
}
.social-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
}
.social-post-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.social-post-text {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}
.social-meta {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--ink-muted);
}
.social-media-post {
    border-radius: var(--radius-sm);
    background-color: var(--bg);
    padding: 15px;
}
.social-media-post img {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
}
.facebook-content,
.facebook-actions {
    margin-top: 10px;
}
.facebook-actions {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}
.facebook-actions a i {
    color: var(--primary);
    margin-right: 5px;
}
.short-text {
    font-size: 14px;
}
.social-card-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .social-card-head {
        padding: 10px 15px;
    }
    .social-card-body {
        max-height: 250px;
    }
    .social-media-post {
        padding: 10px;
    }
}
/* =========== YouTube Section =========== */
.youtube-section {
    padding: 40px 0;
}
.video-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.video-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--primary-tint);
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.video-card:hover .video-thumb img {
    transform: scale(1.08);
}
.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(232, 61, 61, 0.92);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s;
}
.video-card:hover .video-play {
    background: var(--accent);
    transform: scale(1.1);
}
.video-info {
    padding: 18px 20px;
}
.video-info h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
    flex: auto;
}
.video-info span {
    color: var(--ink-muted);
    font-size: 0.8rem;
}
@media (max-width: 1600px) {

}
@media (max-width: 991px) {

}
@media (max-width: 575px) {

}


/* =========================================================
   ONOS Outreach Programmes — Slider
   (new section-specific styles, does not modify anything
   above; reuses .btn-primary-onos, .info-card-link,
   .test-arrow and .testimonial-dots already defined above)
========================================================= */
.outreach-programme-section {
    padding: 40px 0;
}
.outreach-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
}
.outreach-viewport {
    overflow: hidden;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
}
.outreach-track {
    display: flex;
    gap: var(--gap);
    will-change: transform;
}
.outreach-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.outreach-card:hover {
    box-shadow: var(--shadow-md);
}
.outreach-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.outreach-card-title {
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.outreach-card-text {
    color: var(--ink-muted);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.outreach-card-text span {
    color: var(--primary);
    font-weight: 700;
}
.outreach-card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}
.outreach-card-actions .btn-primary-onos {
    padding: 10px 22px;
    font-size: 0.85rem;
}
.outreach-card-actions .info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.outreach-slider .test-arrow:disabled,
.outreach-slider .test-arrow.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 1600px) {
    .outreach-programme-section {
        padding: 55px 0;
    }
}
@media (max-width: 1199px) {
    .outreach-programme-section {
        padding: 50px 0;
    }
}
@media (max-width: 991px) {
    .outreach-programme-section {
        padding: 45px 0;
    }
    .outreach-card {
        padding: 22px 22px;
    }
    .outreach-card-actions .btn-primary-onos {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 16px;
    }
}
@media (max-width: 767px) {
    .outreach-programme-section {
        padding: 40px 0;
    }
    .outreach-card {
        padding: 20px 18px;
    }
    .outreach-card-title {
        font-size: 1rem;
    }
}
@media (max-width: 575px) {
    .outreach-programme-section {
        padding: 30px 0;
    }
    .outreach-slider {
        gap: 8px;
    }
    .outreach-card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .outreach-card-actions .btn-primary-onos {
        width: 100%;
        justify-content: center;
    }
    .outreach-card-actions .info-card-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .about-section,
    .info-cards-section,
    .testimonials-section,
    .social-section,
    .youtube-section {
        padding: 35px 0;
    }
}


@media (max-width: 767px) {
    .about-section,
    .info-cards-section,
    .testimonials-section,
    .social-section,
    .youtube-section {
        padding: 30px 0;
    }
    .site-footer {
        padding: 36px 0 0;
    }
    .section-head {
        margin-bottom: 18px;
    }
}

@media (max-width: 575px) {
    .about-section,
    .info-cards-section,
    .testimonials-section,
    .social-section,
    .youtube-section {
        padding: 25px 0;
    }
    .section-head {
        margin-bottom: 15px;
    }
}

/* =========== Back to top =========== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
}
.back-to-top.show_button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent);
    color: var(--primary-tint);
}
@media (max-width: 1199px) {
    .back-to-top {
    width: 36px;
    height: 36px;
    line-height: 36px;
    right: 15px;
    bottom: 15px;
  }
  .back-to-top i {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
    .back-to-top {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .back-to-top i {
    font-size: 14px;
  }
  
}
.btn_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.page-hero-band.all_programme_banner {
    background-image: url("../images/allprogamme-banner.png");
}
/*.delay-0 {
    transition-delay: 0s;
    animation-delay: 0s;
}*/

.delay-1 {
    transition-delay: 0.1s;
    animation-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
    animation-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
    animation-delay: 0.5s;
}

/* Default header */
#siteHeader {
    box-shadow: 0 2px 10px rgba(18, 50, 101, 0.06);
    transition: box-shadow 0.3s ease;
}

/* Header after scrolling */
#siteHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(18, 50, 101, 0.06);
    transition: all 0.35s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

#siteHeader.scrolled {
    box-shadow: 0 6px 20px rgba(18, 50, 101, 0.14);
}

.slider-track > * {
    width: var(--slide-width);
    flex: 0 0 var(--slide-width);
}

html{
    scroll-behavior:smooth;
}

.side-quick-nav {
    position: fixed;
    bottom: -40px;
    right: 0;
    transform: translateY(-50%) translateX(16px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
}

.side-quick-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .side-quick-nav {
        transition-duration: 0.01ms !important;
    }
}

.side-quick-nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 48px;
    max-width: 48px;
    overflow: hidden;
    background: var(--primary-dark);
    border-radius: 24px 0 0 24px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    opacity: 0.8;
    transition:
        opacity 0.35s ease,
        max-width 0.5s ease,
        background-color 0.35s ease,
        box-shadow 0.3s ease;
}

.side-quick-nav-item:hover,
.side-quick-nav-item:focus-visible {
    opacity: 1;
    max-width: 260px;
    background: var(--accent);
    box-shadow: var(--shadow-lg);
}

.side-quick-nav-item:focus-visible {
    outline: 3px solid var(--accent-tint);
    outline-offset: -3px;
}

.side-quick-nav-label {
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-left: 16px;
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.side-quick-nav-item:hover .side-quick-nav-label,
.side-quick-nav-item:focus-visible .side-quick-nav-label {
    opacity: 1;
    transform: translateX(0);
}

.side-quick-nav-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .side-quick-nav-item,
    .side-quick-nav-label {
        transition-duration: 0.01ms !important;
    }
}

/* Mobile */
@media (max-width: 1600px) {
    .side-quick-nav {
        bottom: -30px;
    }
    .side-quick-nav-item {
        height: 42px;
        max-width: 42px;
        border-radius: 21px 0 0 21px;
    }
    .side-quick-nav-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .side-quick-nav {
        bottom: -40px;
    }
    .side-quick-nav-item {
        height: 38px;
        max-width: 38px;
        border-radius: 19px 0 0 19px;
    }
    .side-quick-nav-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .side-quick-nav-item {
        height: 36px;
        max-width: 36px;
        border-radius: 17px 0 0 17px;
    }
    .side-quick-nav-icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .side-quick-nav-item {
        height: 34px;
        max-width: 34px;
        border-radius: 17px 0 0 17px;
    }
    .side-quick-nav-icon {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .side-quick-nav-item:hover,
    .side-quick-nav-item:focus-visible {
        max-width: 230px;
    }
    .side-quick-nav-label {
        font-size: 13px;
    }
}


