/*begin::Global css*/
:root {
    --primary-color: #eaaa3f;
    --secondary-color: #3f88c5;
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --black-color: #000000;
    --white-color: #ffffff;
    --primary-gradient: linear-gradient(60deg, #eaaa3f, #3f88c5);
    --transition-base: all 0.3s ease-in-out;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --focus-ring: 0 0 0 3px rgba(234, 170, 63, 0.45);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

/*begin::Accessibility — focus styles*/
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: var(--focus-ring);
    border-radius: var(--border-radius-sm);
}

/*begin::Skip to content*/
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--primary-color);
    color: var(--black-color);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    font-size: 14px;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
    outline: none;
}
/*end::Skip to content*/

/* ── Rich content: ul / ol lists rendered from RichEditor ── */
.site_list ul,
.site_list ol {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
}

.site_list ul li,
.site_list ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary, #9ca3af);
}

/* Bullet list → arrow icon (fa-angle-right) */
.site_list ul li::before {
    background-image: none;
    font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 700;
    content: "\f356";
    color: var(--gold, #eaaa3f);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Ordered list → gold number */
.site_list ol {
    counter-reset: site-ol;
}
.site_list ol li::before {
    counter-increment: site-ol;
    content: counter(site-ol) ".";
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold, #eaaa3f);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.click_disabled {
    pointer-events: none;
    cursor: default;
}
/*end::Global css*/

/*begin::Banner / Slider section*/

/* ── Section + Swiper: full viewport height ─────────────── */
.slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 0 !important;
    margin-top: 70px;
}
.runok-slider-2.swiper-container,
.runok-slider-2 {
    width: 100%;
    display: block;
    overflow: hidden;
    height: 85vh !important;
    min-height: 500px;
}
.runok-slider-2 .swiper-wrapper,
.runok-slider-2 .swiper-slide {
    height: 100% !important;
}
.runok-slider-2 .swiper-slide .slide-img-wrap {
    z-index: 1;
}
.runok-slider-2 .swiper-slide .slide-img-wrap picture,
.runok-slider-2 .swiper-slide .slide-img-wrap picture .slide-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
.runok-slider-2 .swiper-slide .slide-img-wrap picture .slide-img {
    object-fit: cover !important;
}
.runok-slider-2 .swiper-slide .slider-item {
    background: #0d1117;
}

/* ── Eyebrow label ───────────────────────────────────────── */
.runok-slider-2 .hero-eyebrow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.runok-slider-2 .hero-eyebrow__line {
    display: inline-block;
    width: 32px;
    min-width: 32px;
    height: 3px;
    background: #eaaa3f;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 5px;
}
.runok-slider-2 .hero-eyebrow__text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #eaaa3f;
    line-height: 1.5;
    word-break: break-word;
}

/* ── Title ───────────────────────────────────────────────── */
.runok-slider-2 .hero-content .title {
    font-size: clamp(2rem, 4.5vw, 5rem) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 32px rgba(0,0,0,0.65) !important;
    display: block !important;
    position: static !important;
}
.runok-slider-2 .hero-content .title::before {
    display: none !important;
    content: none !important;
}

/* ── Navigation arrows — bottom-center ──────────────────── */
.runok-slider-2 .slider-arrow {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    z-index: 20 !important;
}
.runok-slider-2 .slider-arrow .slider-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 18px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.30);
    color: #fff;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.runok-slider-2 .slider-arrow .slider-nav:hover {
    background: #eaaa3f;
    border-color: #eaaa3f;
    color: #0d1117;
    transform: scale(1.08);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
    .runok-slider-2 .hero-content .title {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
    }
    .runok-slider-2 .hero-eyebrow__text { font-size: 11px; }
    .runok-slider-2 .slider-arrow {
        gap: 12px !important;
    }
    .runok-slider-2 .slider-arrow .slider-nav {
        width: 44px !important; height: 44px !important;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .runok-slider-2 .hero-content .title {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
        letter-spacing: -0.01em !important;
    }
    .runok-slider-2 .hero-eyebrow { margin-bottom: 10px; gap: 8px; }
    .runok-slider-2 .hero-eyebrow__line { width: 22px; min-width: 22px; height: 2px; margin-top: 4px; }
    .runok-slider-2 .hero-eyebrow__text { font-size: 10px; letter-spacing: 0.08em; }
    .runok-slider-2 .slider-arrow {
        gap: 10px !important;
    }
    .runok-slider-2 .slider-arrow .slider-nav {
        width: 38px !important; height: 38px !important;
        font-size: 14px;
    }
    .runok-slider-2.swiper-container,
    .runok-slider-2 {
        height: 55vh !important;
        min-height: 360px !important;
    }
    .runok-slider-2 .swiper-slide .slide-img-wrap picture .slide-img {
        object-fit: cover !important;
    }
}
@media (max-width: 479px) {
    .runok-slider-2 .hero-content .title {
        font-size: clamp(1.3rem, 8vw, 1.8rem) !important;
    }
    .runok-slider-2 .hero-eyebrow { margin-bottom: 8px; gap: 7px; }
    .runok-slider-2 .hero-eyebrow__line { width: 18px; min-width: 18px; }
    .runok-slider-2 .hero-eyebrow__text { font-size: 9.5px; letter-spacing: 0.06em; }
    .runok-slider-2 .slider-arrow {
        gap: 8px !important;
    }
    .runok-slider-2 .slider-arrow .slider-nav {
        width: 34px !important; height: 34px !important;
        font-size: 13px;
    }
}
/*end::Banner / Slider section*/

/*begin::General css*/
.header .primary-header-inner .header-menu-wrap ul li.right_menu ul {
    left: auto;
    right: 0;
}

/* page-header padding is defined in design.css — do not duplicate here */

.runok-slider-2 .hero-content .title {
    text-transform: uppercase;
}


.runok-slider-2 .slider-item .overlay {
    background: transparent;
    mix-blend-mode: unset;
}

/*begin::Equipment section*/
.equipments_section .service-item-5 {
    height: 100%;
    border: 1px solid var(--rr-color-border-1);
    border-top: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.equipments_section .service-item-5:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(234, 170, 63, 0.15);
}

.equipments_section .service-item-5 .service-thumb {
    height: 200px;
    overflow: hidden;
}

.equipments_section .service-item-5 .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipments_section .service-item-5:hover .service-thumb img {
    transform: scale(1.05);
}

.equipments_section .service-item-5 .service-content {
    border: none;
    padding: 30px;
}

.equipments_section .service-item-5 .service-content > p {
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    flex-grow: 1;
}

.equipments_section .service-item-5 .service-content .read-more {
    width: fit-content;
    height: 100%;
    align-items: flex-end;
}
/*end::Equipment section*/

/*begin::Post card image hover*/
.post-card-2 .post-thumb {
    overflow: hidden;
}

.post-card-2 .post-thumb img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-2:hover .post-thumb img {
    transform: scale(1.04);
}
/*end::Post card image hover*/

/*begin::Results card*/
.post-card {
    grid-template-columns: 1fr;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.result-country-badge {
    list-style: none;
    padding: 0;
    margin: 6px 0;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
}

.result-country-badge img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: inline-block;
}
/*end::Results card*/

/*begin::Result iframe wrapper*/
.result-iframe-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.result-iframe-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}
/*end::Result iframe wrapper*/

/*begin::Footer*/
.footer-4 .footer-wrap {
    padding: 80px 0;
}

.copyright-area {
    display: block !important;
    padding: 20px 0;
    background-color: #11151c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.footer-4 .logo-widget p,
.footer-widget .address-list li {
    font-size: 14px;
    line-height: 1.75;
}

.copyright-content p {
    font-size: 13px;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 12px;
}

.footer-widget .footer-list li a {
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition-base);
}

.footer-widget .footer-list li a:hover {
    padding-left: 4px;
}

.footer-widget .address-list li a {
    transition: var(--transition-base);
}
/*end::Footer*/

/*begin::Post content list*/
.post-content ul:not(.post-meta) {
    list-style: none;
}

.post-content ul:not(.post-meta) li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.post-content ul:not(.post-meta) li::before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 700;
    content: "\f356";
    position: absolute;
    top: 2px;
    left: 0;
    transition: var(--transition-base);
}
/*end::Post content list*/

/*begin::Map*/
.map-wrapper iframe {
    width: 100%;
    filter: grayscale(1);
    border-radius: var(--border-radius-md);
    display: block;
}
/*end::Map*/

/*begin::Contact form*/
.blog-contact-form.form-2 {
    height: 100%;
}

.blog-contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.blog-contact-form .form-control.is-invalid:focus-visible {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
/*end::Contact form*/

/*begin::Misc*/
/* ── Mission / Vision — tab nav ──────────────────────────────────── */
.about-tab .nav-tabs {
    gap: 8px;
    border-bottom: none;
    margin-bottom: 24px;
}
.about-tab .nav-tabs .nav-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 3px;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.about-tab .nav-tabs .nav-link.active {
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* ── Mission / Vision — statement text ───────────────────────────── */
.about-tab .tab-content .title {
    font-size: clamp(1.125rem, 2.2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    font-optical-sizing: auto;
}
.about-tab .tab-content .tab-pane {
    padding-top: 4px;
}

.service-card {
    height: 100%;
}

.testi-slide-14 .swiper-slide {
    height: auto;
}

.solution_desc {
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    hyphens: auto;
}

.about-content-6 .section-heading {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

/*begin::Solutions — home carousel */

/* Section head: centered heading, arrows absolutely right */
.solutions-section__head {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}
.solutions-section__head .section-heading {
    margin-bottom: 0;
}

/* Arrow buttons — sit at the right edge, vertically centred to the heading */
.sol-carousel-nav {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.sol-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color, #eaaa3f);
    background: transparent;
    color: var(--primary-color, #eaaa3f);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s, color 0.22s, transform 0.18s;
    line-height: 1;
}
.sol-nav:hover {
    background: var(--primary-color, #eaaa3f);
    color: #fff;
    transform: scale(1.08);
}
.sol-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Carousel wrapper — let Swiper overflow peek */
.solutions-home-carousel {
    overflow: hidden;
    padding-bottom: 36px;   /* room for pagination dots */
}
.solutions-home-carousel .swiper-slide {
    height: auto;
}

/* Pagination dots */
.sol-pagination.swiper-pagination {
    bottom: 0;
}
.sol-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
}
.sol-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #eaaa3f);
    transform: scale(1.3);
}
.ts-partners-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10;
    pointer-events: auto;
}
.ts-partners-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    border-radius: 50%;
}
.ts-partners-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #eaaa3f);
    transform: scale(1.3);
}

/* ── Banner pagination dots ───────────────────────────── */
.ts-banner-pagination {
    position: absolute;
    bottom: 88px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 25;
}
.ts-banner-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255,255,255,0.35) !important;
    opacity: 1 !important;
    transition: background 0.2s, transform 0.2s;
}
.ts-banner-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #eaaa3f) !important;
    transform: scale(1.3);
}
@media (max-width: 767px) {
    .ts-banner-pagination {
        bottom: 70px !important;
    }
}

/* ── Overlay card ── */
.sol-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}

.sol-card__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.sol-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.sol-card:hover .sol-card__thumb img {
    transform: scale(1.06);
}

.sol-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.90) 0%,
        rgba(0,0,0,0.42) 48%,
        rgba(0,0,0,0.0)  100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 18px 18px;
}

.sol-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.sol-card__desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.84);
    margin: 0 0 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
}
.sol-card:hover .sol-card__desc {
    max-height: 90px;
    opacity: 1;
    transform: translateY(0);
}

.sol-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-color, #eaaa3f);
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.28s ease 0.05s, transform 0.28s ease 0.05s, color 0.2s;
}
.sol-card:hover .sol-card__link {
    opacity: 1;
    transform: translateY(0);
}
.sol-card__link:hover { color: #fff; }
.sol-card__link i { font-size: 11px; transition: transform 0.2s; }
.sol-card__link:hover i { transform: translateX(3px); }

.sol-card:focus-within {
    outline: 2px solid var(--primary-color, #eaaa3f);
    outline-offset: 2px;
}

/* CTA button row */
.sol-section-cta {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
.sol-section-cta .rr-primary-btn {
    font-size: 13px !important;
    padding: 14px 24px !important;
}
/*end::Solutions — home carousel */


/*begin::Empty state*/
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
    display: block;
}

.empty-state h4 {
    font-size: 18px;
    font-weight: 500;
}
/*end::Empty state*/

/*begin::Utility*/
.text-justify {
    text-align: justify;
}
/*end::Utility*/
/*end::General css*/

/* ================================================================
   TYPOGRAPHY SYSTEM
   Comprehensive font sizes, weights, line-heights and spacing
   applied across all pages and components.
   ================================================================ */

/* ── Global paragraph ──────────────────────────────────────────── */
p {
    font-size: 15px;
    line-height: 1.8;
}

/* ── Heading scale — fluid clamp-based sizing ──────────────────── */
h1 {
    font-size: clamp(1.875rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.625rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.35;
}
h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
}
h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
}

/* ── Section heading label & title ────────────────────────────── */
.section-heading .sub-heading {
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.section-heading .section-title {
    font-size: clamp(1.625rem, 3.5vw, 2.75rem) !important;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.section-heading p {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 14px;
}

/* ── Page header ────────────────────────────────────────────────── */
.page-header .page-header-content .title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.page-header .page-header-content .sub-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.015em;
    opacity: 0.85;
}
.page-header .page-header-content .sub-title a {
    font-weight: 500;
}

/* ── About section paragraphs ───────────────────────────────────── */
.about-content-6 p,
.about-section-6 p,
.about-section-7 p {
    font-size: 15px;
    line-height: 1.85;
}

/* ── Post-card (solutions / events / results listing) ───────────── */
.post-card-2 .post-content .title,
.post-card-2 .post-content-wrap .post-content .title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.post-card-2 .post-content p {
    font-size: 14px;
    line-height: 1.75;
}

/* ── Horizontal listing cards (solutions / events / equipment pages) */
.post-card-2.inner-blog-2 .post-content .title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}
.post-card-2.inner-blog-2 .post-content p,
.post-card-2.inner-blog-2 .post-content .post-desc {
    font-size: 14px;
    line-height: 1.8;
}

/* ── Equipment cards ─────────────────────────────────────────────── */
.equipments_section .service-item-5 .service-content .title,
.equipments_section .service-item-5 .service-content h3,
.equipments_section .service-item-5 .service-content h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* ── Results card meta ────────────────────────────────────────────── */
.post-card .post-meta {
    font-size: 12px;
    letter-spacing: 0.02em;
}
.post-card .post-content .title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
.post-card .post-content p {
    font-size: 13px;
    line-height: 1.7;
}

/* ── Testimonial content ──────────────────────────────────────────── */
.testi-wrapper-14 > p {
    font-size: 15px;
    line-height: 1.85;
    font-style: italic;
}
.testi-wrapper-14 .testi-author-info .testi-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.testi-wrapper-14 .testi-author-info .testi-position {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── Contact info text ────────────────────────────────────────────── */
.contact-list .list-item .icon-box .info p,
.contact-list .list-item .icon-box .info a {
    font-size: 15px;
    line-height: 1.65;
}

/* ── Mobile navigation items ──────────────────────────────────────── */
.mean-bar .mean-nav > ul > li > a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.mean-bar .mean-nav ul li ul li a {
    font-size: 13px;
    font-weight: 500;
}

/* ── Footer widget title ──────────────────────────────────────────── */
.footer-widget .widget-header .widget-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ── Button text ──────────────────────────────────────────────────── */
.rr-primary-btn {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* ── Read-more link ───────────────────────────────────────────────── */
.read-more {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ================================================================
   END TYPOGRAPHY SYSTEM
   ================================================================ */

/* ================================================================
   GLOBAL POLISH — scrollbar, selection (moved from v2.0 block)
   ================================================================ */

/* ── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: var(--primary-color, #eaaa3f); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #f5c96a; }

/* ── Text Selection ───────────────────────────────────────────── */
::selection { background: rgba(234, 170, 63, 0.3); color: #fff; }
::-moz-selection { background: rgba(234, 170, 63, 0.3); color: #fff; }

/* ── Navbar, Page Header — see design.css ─────────────────────── */

/* ── All component styling is now in design.css — no duplicates here ─── */

/* ── Sponsors: always full brightness, subtle scale on hover ── */
.sponsor-carousel-3 .swiper-slide img,
.client-carousel img {
    filter: grayscale(0%) opacity(1);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.85;
}
.sponsor-carousel-3 .swiper-slide:hover img,
.client-carousel .swiper-slide:hover img {
    opacity: 1;
    transform: scale(1.06);
}

/* ── Mobile Side Menu: Link hover ────────────────────────────── */
.mean-bar .mean-nav.mean-nav > ul li a:hover {
    color: var(--primary-color, #eaaa3f) !important;
    padding-left: 6px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

/* ================================================================
   ABOUT PAGE — New sections
   ================================================================ */

/* ── Stats row ─────────────────────────────────────────────── */
.ts-about-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ts-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ts-stat-item .stat-number {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #eaaa3f;
    line-height: 1;
    letter-spacing: -0.02em;
}
.ts-stat-item .stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ── Services section ──────────────────────────────────────── */
.ts-about-services-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}
.ts-service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.ts-service-card:hover {
    border-color: rgba(234,170,63,0.40);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.ts-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(234,170,63,0.12);
    border: 1px solid rgba(234,170,63,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #eaaa3f;
    margin-bottom: 20px;
    transition: background 0.25s ease;
}
.ts-service-card:hover .ts-service-icon {
    background: rgba(234,170,63,0.22);
}
.ts-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f0f4f8;
    margin-bottom: 10px;
    line-height: 1.35;
}
.ts-service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ── Partner badge ─────────────────────────────────────────── */
.ts-about-partner-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #eaaa3f;
    color: #0d1117;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 2;
}
.ts-about-partner-badge--blue {
    background: #3f88c5;
    color: #fff;
}

/* ── About list ────────────────────────────────────────────── */
.ts-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ts-about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.80);
    line-height: 1.5;
}
.ts-about-list li i {
    color: #eaaa3f;
    font-size: 13px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(234,170,63,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Partner sections alternating bg ──────────────────────── */
.ts-about-partner-section {
    background: linear-gradient(135deg, #0d1117 0%, #111820 100%);
}
.ts-about-swimming-section {
    background: linear-gradient(135deg, #0a0f16 0%, #0d1520 100%);
}
.ts-about-microplus-section {
    background: linear-gradient(135deg, #0d1117 0%, #111820 100%);
}

/* ── Swimming features grid ────────────────────────────────── */
.ts-swim-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    height: 100%;
    transition: border-color 0.25s ease;
}
.ts-swim-feature:hover {
    border-color: rgba(234,170,63,0.30);
}
.ts-swim-feature > i {
    font-size: 22px;
    color: #eaaa3f;
    flex-shrink: 0;
    margin-top: 2px;
}
.ts-swim-feature h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f0f4f8;
    margin-bottom: 6px;
    line-height: 1.3;
}
.ts-swim-feature p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ── CTA banner ────────────────────────────────────────────── */
.ts-about-cta-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}
.ts-about-cta-box {
    background: linear-gradient(135deg, rgba(234,170,63,0.08) 0%, rgba(63,136,197,0.06) 100%);
    border: 1px solid rgba(234,170,63,0.20);
    border-radius: 20px;
    padding: 48px 40px;
}
.ts-about-cta-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #f0f4f8;
    margin-bottom: 10px;
    line-height: 1.25;
}
.ts-about-cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
    margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .ts-about-stats { gap: 20px; }
    .ts-about-cta-box { padding: 36px 28px; }
    .ts-service-card { padding: 24px 20px; }
}
@media (max-width: 767px) {
    .ts-about-stats { gap: 16px; padding: 18px 0; margin: 18px 0; }
    .ts-stat-item .stat-number { font-size: 1.5rem; }
    .ts-about-cta-box { padding: 28px 20px; }
    .ts-about-partner-badge { font-size: 12px; padding: 8px 14px; }
    .ts-swim-feature { padding: 14px; }
    .ts-swim-feature h5 { font-size: 0.875rem; }
}
@media (max-width: 479px) {
    .ts-about-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .ts-stat-item { flex: 1 1 calc(50% - 6px); }
}
/* ================================================================
   END ABOUT PAGE
   ================================================================ */

/* ── About page section carousels ──────────────────────────── */
.ts-about-swiper {
    width: 100%;
    border-radius: var(--border-radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(234,170,63,0.15);
}
.ts-about-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.ts-about-swiper-pagination {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.ts-about-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.50);
    opacity: 1;
    margin: 0 4px;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}
.ts-about-swiper-pagination .swiper-pagination-bullet-active {
    background: #eaaa3f;
    width: 22px;
    border-radius: 4px;
}
/* keep partner badge above swiper */
.ts-about-img-wrap { position: relative; }

/* ================================================================
   SERVICES SHOWCASE CAROUSEL — full-bleed
   ================================================================ */
.ts-services-carousel-section {
    background: #0a0f16;
    padding: 60px 0 50px;
    overflow: hidden;
}
.ts-svc-carousel-head {
    margin-bottom: 40px;
}
.ts-svc-carousel-head .ts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #eaaa3f;
    margin-bottom: 12px;
}
.ts-svc-carousel-head .ts-title {
    color: #f0f4f8;
    margin: 0;
}

/* Swiper container — no overflow clip so peek slides show */
.ts-svc-swiper {
    overflow: visible;
    padding-bottom: 52px;
    position: relative;
}

/* Each slide */
.ts-svc-slide {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    cursor: grab;
}
.ts-svc-slide:active { cursor: grabbing; }

.ts-svc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.swiper-slide-active .ts-svc-slide img,
.swiper-slide-duplicate-active .ts-svc-slide img {
    transform: scale(1.04);
}

/* Gradient overlay */
.ts-svc-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,8,14,0.95) 0%,
        rgba(5,8,14,0.55) 50%,
        rgba(5,8,14,0.10) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px;
    transition: background 0.35s ease;
}
.ts-svc-slide:hover .ts-svc-slide__overlay {
    background: linear-gradient(
        to top,
        rgba(5,8,14,0.98) 0%,
        rgba(5,8,14,0.70) 55%,
        rgba(5,8,14,0.20) 100%
    );
}

/* Tag pill */
.ts-svc-slide__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(234,170,63,0.18);
    border: 1px solid rgba(234,170,63,0.40);
    color: #eaaa3f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
    backdrop-filter: blur(4px);
}
.ts-svc-slide__tag i { font-size: 12px; }

/* Title */
.ts-svc-slide__title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Description — hidden by default, revealed on active/hover */
.ts-svc-slide__desc {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.70);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}
.swiper-slide-active .ts-svc-slide__desc,
.swiper-slide-duplicate-active .ts-svc-slide__desc,
.ts-svc-slide:hover .ts-svc-slide__desc {
    max-height: 80px;
    opacity: 1;
}

/* Non-active slides — slightly dimmed */
.ts-svc-swiper .swiper-slide:not(.swiper-slide-active) .ts-svc-slide {
    opacity: 0.72;
    transition: opacity 0.35s ease;
}
.ts-svc-swiper .swiper-slide:not(.swiper-slide-active):hover .ts-svc-slide {
    opacity: 1;
}

/* Arrows */
.ts-svc-prev,
.ts-svc-next {
    position: absolute;
    bottom: 0;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.22);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    user-select: none;
}
.ts-svc-prev { right: 60px; }
.ts-svc-next { right: 8px; }
.ts-svc-prev:hover,
.ts-svc-next:hover {
    background: #eaaa3f;
    border-color: #eaaa3f;
    color: #0d1117;
    transform: scale(1.08);
}
.ts-svc-prev.swiper-button-disabled,
.ts-svc-next.swiper-button-disabled {
    opacity: 0.30;
    pointer-events: none;
}

/* Pagination */
.ts-svc-pagination {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: calc(100% - 120px);
    text-align: left;
    padding-left: 4px;
}
.ts-svc-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    opacity: 1;
    margin: 0 4px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
    display: inline-block;
}
.ts-svc-pagination .swiper-pagination-bullet-active {
    background: #eaaa3f;
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .ts-svc-slide { height: 360px; }
    .ts-svc-slide__overlay { padding: 22px 20px; }
}
@media (max-width: 767px) {
    .ts-services-carousel-section { padding: 60px 0 48px; }
    .ts-svc-slide { height: 300px; }
    .ts-svc-slide__overlay { padding: 18px 16px; }
    .ts-svc-slide__title { font-size: 1rem; }
    .ts-svc-prev { right: 56px; }
}
@media (max-width: 479px) {
    .ts-svc-slide { height: 260px; }
    .ts-svc-slide__tag { font-size: 10px; padding: 4px 10px; }
}
/* ================================================================
   END SERVICES SHOWCASE CAROUSEL
   ================================================================ */

/* ── Homepage: Partnership banner cards ─────────────────── */
.ts-partnerships-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}

.ts-partner-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.ts-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.50);
}
.ts-partner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.ts-partner-card:hover img {
    transform: scale(1.06);
}
.ts-partner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,8,14,0.96) 0%,
        rgba(5,8,14,0.55) 50%,
        rgba(5,8,14,0.10) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    transition: background 0.32s ease;
}
.ts-partner-card:hover .ts-partner-card__overlay {
    background: linear-gradient(
        to top,
        rgba(5,8,14,0.98) 0%,
        rgba(5,8,14,0.72) 55%,
        rgba(5,8,14,0.18) 100%
    );
}

/* Badge */
.ts-partner-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(234,170,63,0.15);
    border: 1px solid rgba(234,170,63,0.40);
    color: #eaaa3f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
    backdrop-filter: blur(4px);
}
.ts-partner-card__badge--blue {
    background: rgba(63,136,197,0.15);
    border-color: rgba(63,136,197,0.40);
    color: #5ba3d9;
}

/* Name */
.ts-partner-card__name {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

/* Tagline */
.ts-partner-card__tag {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .ts-partner-card { height: 280px; }
}
@media (max-width: 767px) {
    .ts-partnerships-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ts-partner-card { height: 240px; }
    .ts-partner-card__overlay { padding: 18px 16px; }
    .ts-partner-card__name { font-size: 1.1rem; }
}
@media (max-width: 479px) {
    .ts-partner-card { height: 210px; }
    .ts-partner-card__badge { font-size: 10px; padding: 4px 10px; }
}
/* ── End Partnership cards ──────────────────────────────── */

/* ── Banner: Brand label & Description ──────────────────── */
.runok-slider-2 .hero-brand-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1;
}
.runok-slider-2 .hero-brand-label span {
    color: #3f88c5;
}

.runok-slider-2 .hero-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 520px;
}

@media (max-width: 992px) {
    .runok-slider-2 .hero-brand-label { font-size: 12px; margin-bottom: 12px; }
    .runok-slider-2 .hero-description  { font-size: 14px; margin-top: 12px; }
}
@media (max-width: 767px) {
    .runok-slider-2 .hero-brand-label { font-size: 11px; margin-bottom: 10px; }
    .runok-slider-2 .hero-description  { font-size: 13px; margin-top: 10px; max-width: 100%; }
}
@media (max-width: 479px) {
    .runok-slider-2 .hero-brand-label { font-size: 10px; margin-bottom: 8px; }
    .runok-slider-2 .hero-description  { font-size: 12.5px; margin-top: 8px; }
}
/* ── End Banner Brand label & Description ───────────────── */

/* ================================================================
   BANNER CONTENT DESIGN — matches screenshot layout
   ================================================================ */

/* ── Brand label: "TIMYSPORTS" top-left ─────────────────── */
.runok-slider-2 .hero-brand-label {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1;
    display: block;
}

/* ── Sub title: blue filled pill badge ───────────────────── */
.runok-slider-2 .hero-badge-pill {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ── Main title: large bold italic uppercase ─────────────── */
.runok-slider-2 .ts-banner-title {
    font-size: clamp(2.2rem, 5vw, 5.5rem) !important;
    font-weight: 700 !important;
    font-style: italic !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.50) !important;
    display: block !important;
    position: static !important;
}
.runok-slider-2 .ts-banner-title::before {
    display: none !important;
    content: none !important;
}

/* ── Description: light body text below title ────────────── */
.runok-slider-2 .hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 20px;
    margin-bottom: 0;
    max-width: 500px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
    .runok-slider-2 .hero-brand-label  { font-size: 13px; margin-bottom: 14px; }
    .runok-slider-2 .hero-badge-pill   { font-size: 11px; padding: 5px 13px; margin-bottom: 16px; }
    .runok-slider-2 .ts-banner-title   { font-size: clamp(1.8rem, 5vw, 3.2rem) !important; }
    .runok-slider-2 .hero-description  { font-size: 14px; margin-top: 14px; }
}
@media (max-width: 767px) {
    .runok-slider-2 .hero-brand-label  { font-size: 12px; margin-bottom: 12px; }
    .runok-slider-2 .hero-badge-pill   { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
    .runok-slider-2 .ts-banner-title   { font-size: clamp(1.5rem, 7vw, 2.4rem) !important; letter-spacing: -0.01em !important; }
    .runok-slider-2 .hero-description  { font-size: 13px; margin-top: 12px; max-width: 100%; }
}
@media (max-width: 479px) {
    .runok-slider-2 .hero-brand-label  { font-size: 11px; margin-bottom: 10px; }
    .runok-slider-2 .hero-badge-pill   { font-size: 9.5px; padding: 4px 10px; margin-bottom: 12px; }
    .runok-slider-2 .ts-banner-title   { font-size: clamp(1.3rem, 8vw, 1.9rem) !important; }
    .runok-slider-2 .hero-description  { font-size: 12.5px; margin-top: 10px; }
}
/* ================================================================
   END BANNER CONTENT DESIGN
   ================================================================ */

/* ── Sports Solution: show full description, no clamp ───── */
.ts-sol-card__desc {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    overflow: visible !important;
    max-height: none !important;
}

/* ── Footer Contact Info: white text ────────────────────── */
.ts-footer-contact-list li .fc-text,
.ts-footer-contact-list li .fc-text a {
    color: rgba(255, 255, 255, 0.80) !important;
}
.ts-footer-contact-list li .fc-text a:hover {
    color: #eaaa3f !important;
}

/* ── Footer Brand Column: social icons white ────────────── */
.ts-footer-social a {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* ================================================================
   HEADER — Fix mobile flash/jump on page load
   main.css sets position:relative at <=992px which causes
   the header to appear in normal flow during load then jump
   to fixed position after JS runs.
   ================================================================ */
.header,
.header.header-5 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}
@media only screen and (max-width: 992px) {
    .header,
    .header.header-5 {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        height: auto !important;
    }
}
/* ================================================================
   END HEADER FIX
   ================================================================ */


/* ================================================================
   WHY CHOOSE US — 6 CARDS
   ================================================================ */
.ts-why-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}
.ts-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 20px 24px;
    text-align: center;
    height: 100%;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.ts-why-card:hover {
    border-color: rgba(234,170,63,0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.ts-why-card__icon {
    width: 58px;
    height: 58px;
    background: rgba(234,170,63,0.10);
    border: 1px solid rgba(234,170,63,0.22);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #eaaa3f;
    margin: 0 auto 18px;
    transition: background 0.25s ease;
}
.ts-why-card:hover .ts-why-card__icon {
    background: rgba(234,170,63,0.20);
}
.ts-why-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #f0f4f8;
    margin-bottom: 10px;
    line-height: 1.3;
}
.ts-why-card__desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.52);
    margin: 0;
}
/* ================================================================
   END WHY CHOOSE US
   ================================================================ */

/* ── About section: video matches image styling ─────────── */
.ts-about-video-wrap {
    position: relative;
    display: block;
    border-radius: var(--border-radius-lg, 12px);
    overflow: hidden;
}
.ts-about-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.ts-about-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    background: rgba(234,170,63,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    transition: transform 0.22s ease, background 0.22s ease;
}
.ts-about-video-icon:hover {
    transform: translate(-50%, -50%) scale(1.10);
    background: #eaaa3f;
}
.ts-about-video-icon i {
    font-size: 22px;
    color: #0d1117;
    margin-left: 4px; /* optical center for play icon */
}

/* ================================================================
   SPORTS WE SERVE — Grid cards
   ================================================================ */
.ts-sports-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}
.ts-sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ts-sport-card:hover {
    border-color: rgba(234,170,63,0.45);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.ts-sport-icon--emoji {
    font-size: 28px;
    line-height: 1;
    display: block;
}
.ts-sport-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
    line-height: 1.3;
    letter-spacing: 0.01em;
}
html[data-theme="light"] .ts-sport-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .ts-sport-card:hover {
    border-color: rgba(234,170,63,0.60);
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
html[data-theme="light"] .ts-sport-name {
    color: rgba(0,0,0,0.75);
}
/* ================================================================
   END SPORTS WE SERVE
   ================================================================ */

/* ================================================================
   ABOUT — Partner logo grid
   ================================================================ */
.ts-partner-logos-section {
    background: linear-gradient(135deg, #0d1117 0%, #111820 100%);
}
.ts-partner-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.ts-partner-logo-card:hover {
    border-color: rgba(234,170,63,0.40);
    transform: translateY(-3px);
}
.ts-partner-logo-card img {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
.ts-partner-logo-card__name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    line-height: 1.3;
}
html[data-theme="light"] .ts-partner-logo-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .ts-partner-logo-card__name {
    color: rgba(0,0,0,0.65);
}
/* ================================================================
   END ABOUT — Partner logo grid
   ================================================================ */

/* ================================================================
   ABOUT — Badge cards (What We Bring)
   ================================================================ */
.ts-bring-section {
    background: linear-gradient(135deg, #0a0f16 0%, #111a26 100%);
}
.ts-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 14px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-align: center;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.ts-badge-card:hover {
    border-color: rgba(234,170,63,0.40);
    transform: translateY(-3px);
}
.ts-badge-card i {
    font-size: 28px;
    color: #eaaa3f;
    line-height: 1;
}
.ts-badge-card span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    line-height: 1.3;
    letter-spacing: 0.01em;
}
html[data-theme="light"] .ts-badge-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .ts-badge-card span {
    color: rgba(0,0,0,0.70);
}
/* ================================================================
   END ABOUT — Badge cards
   ================================================================ */

/* ================================================================
   ABOUT — Compact quotes
   ================================================================ */
.ts-about-quotes-section {
    background: linear-gradient(135deg, #0d1117 0%, #111820 100%);
}
.ts-qcard--compact {
    padding: 24px 20px 20px;
}
.ts-qcard--compact .ts-qcard__top {
    margin-bottom: 12px;
}
.ts-qcard--compact .ts-qcard__qdot {
    width: 28px;
    height: auto;
}
.ts-qcard--compact .ts-qcard__text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}
.ts-qcard--compact .ts-qcard__author {
    padding-top: 12px;
}
.ts-qcard--compact .ts-qcard__name {
    font-size: 13px;
}
html[data-theme="light"] .ts-qcard--compact {
    background: #ffffff;
    border-color: rgba(0,0,0,0.10);
}
/* ================================================================
   END ABOUT — Compact quotes
   ================================================================ */

/* ================================================================
   PARTNERS PAGE — Card Swiper
   ================================================================ */
.ts-partner-card-swiper {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.ts-partner-card-swiper .swiper-slide {
    height: 100%;
}
.ts-partner-card-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-partner-card-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}
.ts-partner-card-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(0,0,0,0.5) !important;
    opacity: 1 !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    transition: background 0.2s, transform 0.2s;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}
.ts-partner-card-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #eaaa3f) !important;
    border-color: var(--primary-color, #eaaa3f) !important;
    transform: scale(1.3);
}
/* ================================================================
   END PARTNERS PAGE — Card Swiper
   ================================================================ */

/* ================================================================
   HOME — Solutions carousel arrows below
   ================================================================ */
.sol-carousel-nav--below {
    position: static;
    justify-content: center;
    margin-top: 24px;
}
/* ================================================================
   END HOME — Solutions carousel arrows below
   ================================================================ */

/* ================================================================
   RESULTS — Event table centering
   ================================================================ */
.blog-section .ts-result-api-data {
    width: 100%;
    min-height: 400px;
}
.blog-section .ts-result-api-data .EventTable {
    margin: 0 auto !important;
    max-width: 1100px;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.blog-section .ts-result-api-data .EventTable[data-ts-shown] {
    opacity: 1;
}
/* ================================================================
   END RESULTS
   ================================================================ */

/* ================================================================
   SMOOTH SCROLL — Prevent page jump on load
   ================================================================ */
#smooth-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
/* ================================================================
   END SMOOTH SCROLL FIX
   ================================================================ */
