:root {
    /* Brand */
    --clr-btn: linear-gradient(rgba(226, 23, 15, 1), rgba(231, 61, 54, 1), rgba(235, 98, 93, 1));
    --clr-brand: #DA291C;
    --clr-head: #DD1403;
    --clr-tab1: #D71919;
    --new-hover: rgba(227, 29, 22, 1);
    --bs-btn-border-color: rgba(238, 46, 35, 1);
    --clr-brand-dark: #A72B2A;
    --grad-red-start: rgba(218, 41, 28, 1);
    --grad-red-mid: rgba(218, 41, 28, 1);
    --grad-red-end: rgba(167, 43, 42, 1);
    --grad-red-vertical: linear-gradient(180deg, var(--grad-red-start) 0%, var(--grad-red-mid) 48%, var(--grad-red-end) 100%);
    /* --grad-red-horizontal: linear-gradient(90deg, var(--grad-red-end) 0%, var(--grad-red-start) 100%); */
    --grad-red-horizontal: #272727;
    --clr-text: #1f1f1f;
    --clr-muted: #6b7280;
    --clr-p: #403C43;
    --clr-p2: #333333;
    --clr-bg: #ffffff;
    --clr-surface: #f7f7f8;
    --clr-border: #ececec;
    /* Typography */
    /* --ff-base: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
    /* --ff-base: "Tahoma", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
    --ff-base: "tahoma";
    /* Layout */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 18px rgba(16, 24, 40, .08);
    --shadow-md: 0 10px 28px rgba(16, 24, 40, .10);
     --clr-brand: #D71919;
            --clr-brand-dark: #A72B2A;
            --grad-red: linear-gradient(180deg, rgba(226, 23, 15, 1), rgba(231, 61, 54, 1), rgba(235, 98, 93, 1));
            --ff-base: "tahoma", system-ui, sans-serif;
            --radius-card: 20px;
}

@font-face {
    font-family: tahoma;
    src: url("../font/tahoma/tahoma.ttf");
}

p {
    color: var(--clr-p2);
    font-size: 1.063rem;
    font-weight: 500;
}


/* =========================
   Global Reset / Layout Safety
   ========================= */

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-base);
    color: var(--clr-text);
    background: var(--clr-bg);
}


/* =========================
   Generic Helpers
   ========================= */

.text-muted-2 {
    color: var(--clr-muted) !important;
}

.bg-surface {
    background: var(--clr-surface) !important;
}

.btn-brand {
    --bs-btn-bg: transparent;
    --bs-btn-border-color: rgba(238, 46, 35, 1);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    /* background: var(--clr-btn); */
    border: 0;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-weight: 400;
    font-size: 16px;
}

.btn-brand:hover,
.btn-brand:focus,
.btn-brand:active {
    background: var(--grad-red-horizontal);
    border: 0;
    color: #fff;
}

.btn-brand-outline {
    --bs-btn-color: rgba(218, 41, 28, 1);
    --bs-btn-border-color: rgba(218, 41, 28, 1);
    --bs-btn-hover-bg: rgba(218, 41, 28, 1);
    --bs-btn-hover-border-color: rgba(218, 41, 28, 1);
    --bs-btn-hover-color: #fff;
    border-radius: 10px;
    padding: .55rem 1.15rem;
    font-weight: 400;
}

.section {
    padding: 72px 0;
}

.section--tight {
    padding: 56px 0;
}

@media (max-width: 576px) {
    main .section>.container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

.section-title {
    font-size: clamp(24px, 3.2vw, 49px);
    font-weight: 400;
    letter-spacing: -.02em;
    margin: 0;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
}

.section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.section-link {
    color: var(--clr-brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.section-link:hover {
    text-decoration: underline;
}


/* News & Blog heading sizing: smaller on desktop, can wrap on small screens while keeping 'View All' on one line */


/* =========================
   Header / Navbar starts
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
}


/* ═══════════════════════════════════════════════════
   HEADER TOPBAR — pill toggle design
═══════════════════════════════════════════════════ */

.header-topbar {
    background: #ececec;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
}

.header-topbar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-topbar__left,
.header-topbar__right,
.header-topbar__social,
.header-topbar__contact {
    display: flex;
    align-items: center;
}


/* ── Pill toggle container ── */

.header-topbar__left {
    gap: 0;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 4px;
    overflow: hidden;
}

.header-topbar__right {
    gap: 18px;
}

.header-topbar__social {
    gap: 16px;
    padding-right: 18px;
    border-right: 1px solid rgba(17, 24, 39, .16);
}

.header-topbar__contact {
    gap: 0;
}

.header-topbar__switch,
.header-topbar__social a,
.header-topbar__contact a {
    text-decoration: none;
}


/* ── Individual toggle buttons ── */

.header-topbar__switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    border-radius: 6px;
    border: none;
    background: transparent;
    transition: all .25s ease;
    white-space: nowrap;
}

.header-topbar__switch:hover {
    color: var(--clr-brand);
}


/* ── Active state: solid red pill ── */

.header-topbar__switch--active {
    /* background: var(--clr-brand, #c0392b); */
    background: var(--clr-btn);
    border: 1px solid var(--bs-btn-border-color);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(192, 57, 43, 0.25);
}

.header-topbar__switch--active::after {
    display: none;
}

.header-topbar__switch--active:hover {
    color: #fff !important;
}

.header-topbar__social a,
.header-topbar__contact a {
    color: #111827;
    font-size: 14px;
    line-height: 1;
}

.header-topbar__social a i,
.header-topbar__contact a i {
    color: var(--clr-brand);
}

.header-topbar__social a:hover,
.header-topbar__contact a:hover {
    color: var(--clr-brand);
}

.header-topbar__contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    line-height: 1;
    min-height: 24px;
    white-space: nowrap;
}

.header-topbar__contact a+a {
    border-left: 1px solid rgba(17, 24, 39, .16);
}


/* ── Topbar responsive ── */

@media (max-width: 991.98px) {
    .header-topbar__inner {
        min-height: 42px;
        gap: 10px;
    }
    .header-topbar__left {
        padding: 3px;
        border-radius: 6px;
    }
    .header-topbar__switch {
        font-size: 12px;
        padding: 5px 16px;
        min-height: 28px;
        border-radius: 5px;
    }
    .header-topbar__right {
        gap: 8px;
    }
    .header-topbar__social {
        gap: 10px;
        padding-right: 10px;
    }
    .header-topbar__social a i,
    .header-topbar__contact a i {
        font-size: 13px;
    }
    .header-topbar__contact a {
        gap: 0;
        padding: 0 8px;
    }
    .header-topbar__contact a span {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .header-topbar__left {
        padding: 4px;
    }
    .header-topbar__switch {
        font-size: 11px;
        padding: 4px 12px;
        min-height: 26px;
    }
    .header-topbar__social {
        gap: 8px;
        padding-right: 8px;
    }
    .header-topbar__contact a {
        padding: 0 5px;
    }
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: #111827 !important;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--clr-brand) !important;
}


/* =========================
   Navigation Dropdowns
   ========================= */

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    padding: 10px;
    min-width: 220px;
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 500;
    color: #111827;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(196, 42, 34, .08);
    color: #111827;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--clr-brand);
    color: #fff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-search {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--clr-border);
    background: #fff;
    color: #111827;
}

.nav-search:hover {
    border-color: #dedede;
    background: #fafafa;
}


/* Header Search */

.header-search {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.search-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 1200;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-modal__overlay {
    height: 100vh;
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .48);
    backdrop-filter: blur(6px);
}

.search-modal__dialog {
    position: relative;
    width: min(100%, 640px);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 32px 80px rgba(15, 23, 42, .20);
    padding: 34px 28px 28px;
    transform: translateY(20px) scale(.98);
    transition: transform .28s ease;
    margin: auto;
}

.search-modal.is-open .search-modal__dialog {
    transform: translateY(0) scale(1);
}

.search-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--clr-border);
    background: #fff;
    color: #111827;
}

.search-modal__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-modal__eyebrow {
    /* font-size: 13px; */
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-brand);
}

.search-modal__title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    color: #111827;
}

.search-modal__form {
    position: relative;
    margin-top: 10px;
}

.search-modal__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px;
}

.search-modal__input {
    width: 100%;
    height: 68px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 18px;
    background: #fff;
    color: #111827;
    padding: 0 160px 0 56px;
    outline: none;
    font-size: 16px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
}

.search-modal__input::placeholder {
    color: #6b7280;
}

.search-modal__input:focus {
    border-color: rgba(218, 41, 28, .45);
    box-shadow: 0 22px 52px rgba(15, 23, 42, .14);
}

.search-modal__submit {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    min-width: 128px;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--clr-btn);
    color: #fff;
    padding: 0 24px;
    font-size: 15px;
}

.search-modal__submit:hover {
    background: transparent;
    color: var(--new-hover);
    border: 1px solid var( --bs-btn-border-color);
}

body.search-modal-open {
    overflow: hidden;
}

.mobile-header-tools,
.mobile-header-search {
    display: none;
}

.navbar-toggler {
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--clr-brand);
}

.mobile-menu-overlay,
.mobile-drawer {
    display: none;
}

@media (max-width: 991.98px) {
    .site-header .container {
        position: relative;
    }
    .navbar {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
    .navbar-brand img {
        height: 60px;
    }
    .navbar-collapse {
        display: none !important;
    }
    .mobile-header-tools {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    .mobile-header-search {
        display: inline-flex;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid var(--clr-border);
        background: #fff;
        color: #111827;
        box-shadow: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: #fff;
        color: #111827;
        position: relative;
        z-index: 1002;
    }
    .search-modal {
        padding: 18px;
    }
    .search-modal__dialog {
        width: 100%;
        padding: 30px 18px 20px;
        border-radius: 22px;
    }
    .search-modal__close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }
    .search-modal__title {
        font-size: 26px;
        /* max-width: calc(100% - 48px); */
    }
    .search-modal__input {
        height: 58px;
        padding: 0 18px 0 48px;
        font-size: 15px;
    }
    .search-modal__submit {
        position: static;
        transform: none;
        width: 100%;
        height: 52px;
        margin-top: 12px;
    }
    .search-modal__icon {
        left: 18px;
        top: 26%;
    }
    .navbar-toggler-icon {
        width: 1.35em;
        height: 1.35em;
    }
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(17, 24, 39, .42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .35s ease, visibility .35s ease;
        z-index: 1098;
        backdrop-filter: blur(3px);
    }
    .mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 380px);
        height: 100dvh;
        background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
        box-shadow: -24px 0 48px rgba(17, 24, 39, .18);
        transform: translateX(100%);
        transition: transform .45s cubic-bezier(.22, 1, .36, 1);
        z-index: 1099;
        overflow: hidden;
    }
    .mobile-drawer.is-open {
        transform: translateX(0);
    }
    .mobile-drawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 16px;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
        background: #fff;
    }
    .mobile-drawer__brand img {
        height: 38px;
        width: auto;
    }
    .mobile-drawer__close {
        width: 42px;
        height: 42px;
        border: 1px solid var(--clr-border);
        border-radius: 12px;
        background: #fff;
        color: #111827;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-drawer__body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 22px;
        height: 100%;
        padding: 18px;
        overflow-y: auto;
    }
    .mobile-drawer__group {
        display: grid;
        gap: 10px;
    }
    .mobile-drawer__link,
    .mobile-drawer__accordion-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 15px 16px;
        border: 1px solid rgba(17, 24, 39, .08);
        border-radius: 16px;
        background: #fff;
        color: #111827;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.2;
        box-shadow: 0 10px 26px rgba(17, 24, 39, .04);
        transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
    }
    .mobile-drawer__link.active,
    .mobile-drawer__link:hover,
    .mobile-drawer__accordion.is-open .mobile-drawer__accordion-toggle,
    .mobile-drawer__accordion-toggle:hover {
        color: var(--clr-brand);
        border-color: rgba(196, 42, 34, .16);
        box-shadow: 0 14px 30px rgba(196, 42, 34, .08);
        transform: translateX(-4px);
    }
    .mobile-drawer__accordion-toggle {
        border: 1px solid rgba(17, 24, 39, .08);
    }
    .mobile-drawer__accordion-toggle i {
        transition: transform .3s ease;
    }
    .mobile-drawer__accordion.is-open .mobile-drawer__accordion-toggle i {
        transform: rotate(180deg);
    }
    .mobile-drawer__accordion-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        display: grid;
        gap: 8px;
        padding: 0 8px;
    }
    .mobile-drawer__accordion-panel a {
        text-decoration: none;
        color: #4b5563;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 14px;
        border-radius: 14px;
        background: #f8f8f8;
        border: 1px solid rgba(17, 24, 39, .06);
    }
    .mobile-drawer__accordion-panel a:hover {
        color: var(--clr-brand);
        background: #fff5f4;
    }
    .mobile-drawer__footer {
        margin-top: auto;
        padding-top: 8px;
    }
    .mobile-drawer__actions {
        display: block;
    }
    .mobile-drawer__actions .btn {
        width: 100%;
    }
    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .mobile-header-tools,
    .mobile-header-search,
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-drawer {
        display: none !important;
    }
}


/* navbar ends */


/* Hero */

.home-hero {
    min-height: 640px;
    padding: 86px 0 180px;
    background: radial-gradient(1200px 520px at 10% 25%, rgba(255, 255, 255, .92), rgba(255, 255, 255, .60) 45%, rgba(255, 255, 255, .10) 70%), url("../assets/Hero.jpg") center/cover no-repeat;
    position: relative;
}

.home-hero h1 {
    /* font-size: clamp(2rem, 4vw, 3rem); */
    font-size: 64px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #000000;
    ;
}

.home-hero p {
    max-width: 46ch;
    color: #6b7280;
    margin: 14px 0 22px;
    font-size: 19px;
}


/* Product cards row */

.product-strip {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -78px;
    padding-left: 18px;
    padding-right: 18px;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 14px;
}

.product-card {
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .12);
    padding: 22px 14px;
    text-align: center;
    transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-bottom: 12px;
}


/* icon3.png (Motor/Car) is WHITE in the asset pack.
   On inactive (white) cards, invert so it stays visible.
   On active (brand) card, keep original white. */

.product-card img.icon-white {
    filter: invert(1);
}


/* .product-card--active img.icon-white {
    filter: none;
} */


/* (Optional) inline SVG icon support */

.product-ico {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    color: #111;
}

.product-card .label {
    font-size: 1rem;
    font-weight: 500;
    color: #403C43;
    line-height: 1.15;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #dfdfdf;
    background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
    /* background: linear-gradient(rgba(218, 41, 28, 1) rgba(218, 41, 28, 1) rgba(167, 43, 42, 1)); */
    border-color: rgba(218, 41, 28, 1);
}

.product-card:hover .label {
    color: #fff
}

.product-card:hover img {
    filter: brightness(0) invert(1)
}


/* Keyboard focus like the blue outline in the design screenshot */

.product-card:focus-visible {
    outline: 3px solid #2f64ff;
    outline-offset: 2px;
}


/* Active (Motor Insurance) card*/


/* .product-card--active {
    background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
    border-color: rgba(218, 41, 28, 1);
} */

.product-card--active .label {
    color: var(--clr-p);
}

.product-card--active img {
    filter: brightness(0) invert(1);
}

.product-card--active .product-ico {
    color: #fff;
}


/* Make space for the overlapped strip before the next section */

.home-hero+.section {
    padding-top: 130px;
}


/* Responsive: allow horizontal scroll for the product strip on smaller screens */

@media (max-width: 991.98px) {
    .home-hero {
        padding: 64px 0 160px;
        min-height: 560px;
    }
    .home-hero h1 {
        font-size: 45px;
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -.03em;
    }
    .product-strip {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -110px;
        /* cards ko neeche push karega without changing hero height */
        z-index: 5;
    }
    .home-hero+.section {
        padding-top: 140px
    }
    .product-row {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 6px 2px 10px;
        scroll-snap-type: x mandatory;
        /* ✅ hide scrollbar but keep scrolling */
        -ms-overflow-style: none;
        /* IE/Edge legacy */
        scrollbar-width: none;
        /* Firefox */
    }
    .product-card {
        min-width: 170px;
        scroll-snap-align: start;
    }
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: #dfdfdf;
        background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
        border-color: rgba(218, 41, 28, 1);
    }
    .product-card:hover .label {
        color: #fff
    }
    .product-card:hover img {
        filter: brightness(0) invert(1)
    }
    /* ✅ hide scrollbar (Chrome/Safari) */
    .product-row::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
    /* ✅ hide scrollbar (Chrome/Safari) */
}


/* Mobile-only hero*/

@media (max-width: 575.98px) {
    .home-hero {
        padding: 0 0 0px;
        min-height: auto;
        display: block;
        height: auto;
        background: url(../assets/Hero-img-Mobile-size.png) top center / 200% 337px no-repeat;
        padding-top: 286px;
    }
    .inner {
        margin-top: 0;
    }
    .home-hero .container {
        display: flex;
        flex-direction: column;
    }
    .home-hero .row {
        order: 2;
        transform: none;
        padding: 0px 0px 0px 10px;
        margin-top: 12px;
    }
    .product-strip {
        order: 1;
        position: static;
        width: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding-left: 9px;
        padding-right: 9px;
        margin-bottom: 9px;
    }
    .product-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        margin: 0;
    }
    .product-row::-webkit-scrollbar {
        height: 0;
    }
    .product-card {
        min-width: 121px;
        min-height: 120px;
        padding: 12px 10px;
        border-radius: 18px;
        scroll-snap-align: start;
        box-shadow: -1px 2px 12px rgba(-5, 24, 40, 0.12);
    }
    .product-card img,
    .product-ico {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
    .product-card .label {
        font-size: .9rem;
    }
    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: #dfdfdf;
        background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
        border-color: rgba(218, 41, 28, 1);
    }
    .product-card:hover .label {
        color: #fff
    }
    .product-card:hover img {
        filter: brightness(0) invert(1)
    }
    .home-hero h1 {
        font-size: 38px;
        line-height: 1.12;
    }
    .home-hero p {
        font-size: 17px;
        margin-top: 10px;
    }
    /* Cards are now inline (not overlapped), so minimal spacer needed */
    .home-hero+.section {
        padding-top: 0px;
    }
}


/* Company section */

.company-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.company-card img {
    width: 100%;
    height: auto;
    display: block;
}

.company-text p {
    /* font-size: 1.125rem; */
    color: #333333 !important;
    /* text-align: justify; */
    /* line-height: 1.75; */
}

@media (max-width: 575.98px) {
    .company {
        margin-top: 0 !important;
    }
}


/* =========================================================
   Mobile-only: more breathable spacing between sections
   (Desktop + tablet remain unchanged)
   ========================================================= */

@media (max-width: 575.98px) {
    /* Consistent vertical rhythm across all sections */
    .section,
    .section--tight {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    /* Section header spacing */
    .section-top {
        margin-bottom: 18px;
    }
    .section-title {
        margin-bottom: 12px;
    }
    /* Trim extra bottom gaps */
    .section p:last-child {
        margin-bottom: 0;
    }
    .section .btn:last-child {
        margin-bottom: 0;
    }
}


/* INFO SECTION */

.info-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    min-height: 229px;
    background: #fff;
    display: flex;
}


/* Background Image */

.info-card img.bg {
    position: absolute;
    right: 0px;
    /* top: -11px; */
    top: 4px;
    width: 59%;
    height: 131%;
    object-fit: contain;
    pointer-events: none;
}


/* Content Area */

.info-card .content {
    position: relative;
    z-index: 1;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* Heading */

.info-card h3 {
    /* font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 4px;
    color: var(--clr-brand); */
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0 0 4px;
}


/* Paragraph */

.info-card p {
    margin: 0;
    font-size: .85rem;
}


/* Link Button */

.info-card a {
    margin-top: auto;
    /* keeps all links aligned */
    display: inline-block;
    color: var(--clr-brand);
    font-weight: 600;
    text-decoration: none;
    font-size: .78rem;
}

.info-card a:hover {
    text-decoration: underline;
}


/* Mobile Fix */

@media (max-width: 575.98px) {
    .Info {
        margin-top: 0;
    }
    .info-card {
        min-height: 200px;
    }
}


/* Support banner */

.support-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    background: #111;
}

.support-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: .92;
}

.support-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(196, 42, 34, .92) 0%, rgba(196, 42, 34, .55) 45%, rgba(0, 0, 0, .10) 75%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.support-banner .inner {
    position: relative;
    z-index: 2;
    padding: 46px 65px;
    color: #fff;
    max-width: 680px;
}

.support-banner h2 {
    font-size: clamp(2.4rem, 3vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 10px;
}

.support-banner .meta {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    font-size: .95rem;
}

.support-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.support-meta-item i {
    font-size: 1.05rem;
    margin-top: 2px;
}

@media (max-width: 991.98px) {
    .support-banner .inner {
        position: relative;
        z-index: 2;
        padding: 46px 28px;
        color: #fff;
        max-width: 680px;
    }
    .support-banner h2 {
        font-size: clamp(1.69rem, 3vw, 2.4rem);
        font-weight: 400;
        line-height: 1.1;
        margin: 0 0 10px;
    }
}


/* App promo */

.app-visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    background: #fff;
}

.badge-row img {
    height: 42px;
    width: auto;
}

@media (max-width: 575.98px) {
    .App {
        margin-top: 0;
    }
}


/* Abu Dhabi Group */

.abu-dhabi {
    position: relative;
    padding-bottom: 42px;
}

.abu-dhabi__card {
    background: var(--clr-btn);
    border-radius: 21px;
    padding: 52px 40px 88px;
    box-shadow: var(--shadow-sm);
}

.abu-dhabi__content--center {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.abu-dhabi__title {
    color: #fff;
    font-size: 3.3rem;
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.15;
}

.abu-dhabi__text {
    color: rgba(255, 255, 255, .95);
    font-weight: 400 !important;
    font-size: 1.5rem;
    line-height: 1.45;
    max-width: 1120px;
    margin: 0 auto;
}

.abu-dhabi__image {
    display: none;
}

.abu-dhabi__logos {
    position: absolute;
    left: 50%;
    bottom: 47px;
    transform: translate(-50%, 50%);
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    max-width: min(980px, calc(100% - 48px));
    width: max-content;
}

.abu-dhabi__logos--mobile {
    display: none;
}

.abu-dhabi__logos img {
    height: 44px;
    width: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .abu-dhabi {
        padding-bottom: 34px;
    }
    .abu-dhabi__card {
        padding: 46px 28px 82px;
    }
    .abu-dhabi__title {
        font-size: 2.1rem;
        margin: 0 0 16px;
    }
    .abu-dhabi__text {
        font-size: 1.2rem;
        line-height: 1.45;
        max-width: 900px;
    }
    .abu-dhabi__logos {
        bottom: 32px;
        padding: 18px 16px;
        max-width: min(940px, calc(100% - 36px));
    }
    .abu-dhabi__logos img {
        height: 42px;
    }
}

@media (max-width: 575.98px) {
    .mobile-breaker {
        display: block;
    }
    .abu-dhabi {
        padding-bottom: 76px;
    }
    .abu-dhabi__card {
        /* background: var(--grad-red-vertical); */
        border-radius: 21px;
        overflow: hidden;
        padding: 34px 22px 86px;
        min-height: auto;
        height: auto;
    }
    .abu-dhabi__content {
        padding: 0;
    }
    .abu-dhabi__content--center {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    .abu-dhabi__title {
        font-size: 29px;
        font-weight: 700;
        line-height: 1.15;
        margin: 0 0 16px;
    }
    .abu-dhabi__text {
        font-size: 18.5px;
        line-height: 1.45;
        margin-top: 0;
        max-width: 100%;
    }
    .abu-dhabi__logos--desktop {
        display: none;
    }
    .abu-dhabi__logos--mobile {
        display: grid;
    }
    .abu-dhabi__logos {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: -21px;
        transform: none;
        background: #fff;
        border-radius: 18px;
        min-height: 160px;
        padding: 26px 7px 28px;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
        grid-template-columns: repeat(6, 1fr);
        align-items: center;
        justify-items: center;
        row-gap: 18px;
        column-gap: 0;
        width: auto;
    }
    .abu-dhabi__logos img {
        height: 38px;
        width: auto;
        object-fit: contain;
    }
    .abu-dhabi__logos--mobile img:nth-child(1) {
        grid-column: 1 / 4;
    }
    .abu-dhabi__logos--mobile img:nth-child(2) {
        grid-column: 4 / 7;
    }
    .abu-dhabi__logos--mobile img:nth-child(3) {
        grid-column: 1 / 3;
    }
    .abu-dhabi__logos--mobile img:nth-child(4) {
        grid-column: 3 / 5;
    }
    .abu-dhabi__logos--mobile img:nth-child(5) {
        grid-column: 5 / 7;
    }
}


/* Tablet + Mobile: keep the header image proportion consistent across devices
   (prevents unpredictable cropping on some phone/tablet widths) */

.link-know-more {
    color: var(--clr-brand);
    font-weight: 600;
    text-decoration: none;
    font-size: .8rem;
}

.link-know-more:hover {
    text-decoration: underline;
}


/* Branch locator */

.branch-ill {
    width: min(460px, 100%);
    height: auto;
    display: block;
    margin-left: auto;
}


/* Footer */

.footer-announce {
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: #fff;
    padding: 10px 0;
}

.footer-announce .links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .82rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    padding: 4px 0;
}

@media (min-width: 992px) {
    .footer-announce .links {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.footer-announce a {
    color: #6b7280;
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
}

.footer-announce a.active {
    color: var(--clr-brand);
    font-weight: 600;
    font-size: 15px;
}

.footer-announce a:hover {
    color: #111827;
    text-decoration: none;
}


/* Desktop: spread links across width like design (no scroll) */

@media (min-width: 992px) {
    .footer-announce .links {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: .82rem;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        padding: 4px 0;
    }
    @media (min-width: 992px) {
        .footer-announce .links {
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
    .footer-announce a {
        padding: 8px 10px;
    }
}

.site-footer {
    padding: 38px 0 0;
}

.footer-brand img {
    height: 60px;
    width: auto;
}


/* ── Footer toggle buttons — bordered pill design ── */

.footer-btns {
    background: #f0f0f0;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 4px !important;
    gap: 0 !important;
    display: inline-flex !important;
    width: auto;
}

.footer-btns .footer-chip {
    background: var(--clr-brand, #c0392b);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: .78rem;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
    transition: all .25s ease;
    white-space: nowrap;
}

.footer-btns .footer-chip:last-child {
    background: transparent;
    color: #333;
    font-weight: 500;
}

.footer-btns .footer-chip:hover {
    background: var(--clr-brand, #c0392b);
    color: #fff;
}

.footer-col h6 {
    font-weight: 600;
    font-size: .95rem;
}

.footer-col a {
    display: block;
    color: #6b7280;
    text-decoration: none;
    font-size: .88rem;
    margin: 6px 0;
}

.footer-col a:hover {
    color: #111827;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 34px;
    background: var(--clr-brand);
    color: #fff;
    padding: 14px 0;
    font-size: .85rem;
}

.footer-bottom .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom .pill {
    background: rgba(255, 255, 255, .16);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 500;
}


/* JamaPunji placeholder mark (replace with image when available) */

.jp-logo {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    position: relative;
    display: inline-block;
}

.jp-logo::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 4px;
    background: var(--clr-brand-dark);
}

@media (max-width: 575.98px) {
    .footer-announce .links {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: .82rem;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        padding: 4px 0;
    }
    @media (min-width: 992px) {
        .footer-announce .links {
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
    .footer-bottom .bottom-row {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-bottom .pill {
        text-align: center;
    }
    .footer-bottom .bottom-row>.text-center {
        text-align: center !important;
    }
}


/* JamaPunji mark inside the red strip */

.jp-brand {
    display: flex;
    align-items: center;
}

.jp-img {
    height: 30px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .jp-img {
        height: 24px;
    }
}

@media (max-width: 576px) {
    /* Slightly lower product cards on small screens for breathing space */
    .product-strip {
        bottom: -96px;
    }
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 24px;
    }
}


/* Fix: keep embedded "News/Blog/Events" badges visible on iPad mini/air (image is cropped by object-fit) */


/* =========================
   Mobile Support Section (design parity with mobile-only v14)
   Only affects <=575.98px, desktop/tablet untouched.
   ========================= */

@media (max-width: 575.98px) {
    .support-banner {
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
        border: 0;
        background: #fff;
        min-height: 0;
    }
    .support-banner img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 210px;
        object-fit: cover;
        display: block;
        opacity: 1;
    }
    /* keep gradient only on image area */
    .support-banner::before {
        height: 210px;
        bottom: auto;
        /* match desktop intensity on mobile */
        background: linear-gradient(90deg, rgba(181, 12, 0, .62) 0%, rgba(181, 12, 0, .30) 30%, rgba(181, 12, 0, 0) 66%);
        pointer-events: none;
    }
    .support-banner .inner {
        padding: 22px 16px 16px;
        max-width: none;
        color: var(--clr-text);
        margin-top: 20px;
    }
    .support-banner h2 {
        color: var(--clr-brand-dark);
        font-weight: 400;
        font-size: 37px;
        line-height: 1.15;
        margin: 0px 0 10px;
    }
    .support-banner p {
        font-size: 20px;
        margin: 0 0 16px !important;
        color: var(--clr-text) !important;
        opacity: 1 !important;
    }
    .support-banner .meta {
        margin-top: 0;
        display: grid;
        gap: 10px;
    }
    .support-meta-item {
        gap: 10px;
        align-items: flex-start;
    }
    .support-meta-item i {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        color: var(--clr-brand);
        display: grid;
        place-items: center;
        font-size: 18px;
        margin-top: 0;
        flex: 0 0 34px;
    }
    .support-meta-item .fw-semibold {
        font-weight: 600;
        /* requested */
        font-size: 17px;
        color: var(--clr-text);
    }
    .support-meta-item div div[style*="opacity"] {
        opacity: 1 !important;
        color: var(--clr-muted);
        font-size: 14px;
    }
}


/* drag cursor for horizontal carousels */

.product-row {
    cursor: grab;
}

.product-row.is-dragging {
    cursor: grabbing;
}


/* =========================
   News & Blog: Carousel on ALL sizes + uniform link placement
   ========================= */


/* keep KNOW MORE aligned consistently at bottom */


/* widths by breakpoint */


/* =========================
   Client Testimonials (updated)
   ========================= */


/* 
.section-link {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: var(--clr-brand);
}

.section-link:hover {
    text-decoration: underline;
} */


/* =========================
   Financial Strength
   ========================= */

.section--financial {
    padding-top: 10px;
    padding-bottom: 60px;
}

.financial-title {
    text-align: center;
    /* font-size: 42px; */
    font-size: clamp(24px, 3.2vw, 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-weight: 400;
    margin: 0;
}

.financial-sub {
    text-align: center;
    max-width: 760px;
    margin: 10px auto 22px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

.financial-banner {
    background: var(--grad-red-horizontal);
    border-radius: 18px;
    padding: 31px 18px 29px;
    color: #fff;
}

.financial-item {
    padding: 8px 8px 14px;
}

.financial-label {
    font-size: 12px;
    letter-spacing: 0.02em;
    opacity: 0.95;
    margin-bottom: 8px;
    font-weight: 400;
}

.financial-value {
    font-size: 22px;
    font-weight: 500;
}

.financial-foot {
    margin: 12px 0 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 575px) {
    /* Mobile layout matches design: title/subtitle left, stats stacked in a tall card */
    .financial-title {
        font-size: 32px;
        text-align: left;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    .financial-sub {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    .financial-banner {
        /* Match mobile design: tall single-column stats card */
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 60px 22px;
        border-radius: 34px;
        background: var(--grad-red-horizontal);
    }
    /* Force the 2-up bootstrap columns to stack like the design */
    .financial-banner .row {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .financial-banner .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .financial-item {
        text-align: center;
        padding: 0;
    }
    .financial-item+.financial-item {
        margin-top: 56px;
    }
    .financial-label {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .financial-value {
        font-size: 30px;
        line-height: 1.05;
    }
    .financial-foot {
        display: none;
    }
}


/* Mobile footer accordion (from mobile sample) */

.footer-accordion {
    margin-top: 14px;
    border-top: 1px solid rgba(17, 24, 39, .10);
}

.footer-accordion .acc-item {
    border-bottom: 1px solid rgba(17, 24, 39, .10);
}

.footer-accordion .acc-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
}

.footer-accordion .acc-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(17, 24, 39, .55);
    border-bottom: 2px solid rgba(17, 24, 39, .55);
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform .18s ease;
}

.footer-accordion .acc-item.is-open .acc-icon {
    transform: rotate(-135deg);
}

.footer-accordion .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
}

.footer-accordion .acc-inner {
    padding: 8px 0 19px;
    display: grid;
    gap: 8px;
}

.footer-accordion .acc-inner a {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
}

.footer-accordion .acc-inner a:hover {
    color: #111827;
}

.footer-accordion .social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    align-items: center;
}

.footer-accordion .social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-brand);
    font-size: 1.1rem;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .site-footer .footer-brand {
        margin-bottom: 4px;
    }
}


/* Mobile footer bottom strip match sample */

@media (max-width: 576px) {
    /* .site-footer {
        position: relative;
        top: -53px;
    } */
    .footer-bottom {
        margin-top: 12px !important;
        background: var(--clr-brand) !important;
    }
    .footer-bottom .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .bottom-row {
        display: block !important;
        text-align: center !important;
        padding: 8px 0 10px !important;
    }
    .jp-brand {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin-bottom: 4px !important;
    }
    .jp-img {
        height: 30px !important;
        width: auto !important;
        margin: 0 !important;
    }
    .bottom-row .text-center {
        font-size: 9px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        color: #fff !important;
        margin: 4px 0 8px !important;
        text-align: center !important;
    }
    .pill {
        display: block !important;
        width: fit-content !important;
        max-width: calc(100% - 20px) !important;
        margin: 0 auto !important;
        padding: 6px 12px !important;
        border-radius: 999px !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        background: rgba(255, 255, 255, .18) !important;
        color: #fff !important;
    }
    /* Branch locator mobile: image first, text below */
    #branch .row {
        display: flex !important;
        flex-direction: column !important;
    }
    #branch .branch-img-col {
        order: 1 !important;
        margin-bottom: 18px !important;
    }
    #branch .branch-text-col {
        order: 2 !important;
    }
    #branch .branch-ill {
        width: min(340px, 92%) !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        display: block !important;
        transform: none !important;
    }
    #branch .section-title {
        font-size: 24px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
    }
    #branch p {
        font-size: 14px !important;
        line-height: 1.45 !important;
        max-width: 100% !important;
    }
    #branch .btn-brand {
        padding: .9rem 1.5rem !important;
        border-radius: 10px !important;
    }
}


/* Mobile refinements: footer bottom exactly like mobile sample + larger branch image */

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 14px !important;
        background: var(--clr-brand) !important;
        margin-left: 0px;
        margin-right: -1px;
    }
    .footer-bottom__inner,
    .footer-bottom .container {
        padding: 8px 14px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 72px !important;
    }
    .footer-bottom .text-center,
    .footer-bottom .pill,
    .footer-bottom .bottom-row>.text-center,
    .footer-bottom .bottom-row>.pill {
        display: none !important;
    }
    .footer-bottom .bottom-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        text-align: center !important;
    }
    .footer-bottom .jp-brand {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .footer-bottom .jp-img,
    .footer-bottom .jp {
        height: 54px !important;
        width: auto !important;
        margin: 0 auto !important;
        display: block !important;
        padding: 0 !important;
    }
    #branch .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    #branch .branch-img-col {
        margin-bottom: 12px !important;
    }
    #branch .branch-ill {
        width: min(430px, 100%) !important;
        max-width: 430px !important;
        margin: 0 auto 8px !important;
        display: block !important;
    }
}


/* Cancel Bootstrap g-4 gutter padding on each item */


/* prevent owl from cutting shadow — only apply to non-testimonial carousels */

.owl-stage-outer {
    overflow: hidden;
    /* default: clip at boundary */
}

.owl-stage {
    padding-bottom: 20px;
}


/* ===== end shadow fix ===== */


/* ===== News mobile equal-height fix for Owl ===== */


/* Info card red shape (1st & 3rd card) */

.info-card {
    position: relative;
    overflow: hidden
}

.info-card .shape {
    position: absolute;
    height: 252px;
    right: -3px;
    bottom: -21px;
    width: 141%;
    z-index: 0;
}

.info-card .bg {
    position: relative;
    z-index: 1
}


/* Information bar - Report A Claim card */

.info-card--claim {
    background: transparent;
    border: 1px solid #d8d8d8;
}

.info-card--claim .claim-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.info-card--claim .claim-pattern {
    /* position: absolute;
    right: -126px;
    bottom: -74px;
    max-width: none;
    height: auto;
    z-index: 1;
    pointer-events: none; */
    position: absolute;
    height: 252px;
    right: -25px;
    bottom: -21px;
    width: 154%;
    z-index: 0;
}

.info-card--claim .bg {
    position: absolute;
    right: 8px;
    bottom: 0;
    top: auto;
    width: 56%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.info-card--claim .content {
    z-index: 3;
    padding: 18px 20px 18px;
    max-width: 100%;
}

.info-card--claim h3,
.info-card--claim p,
.info-card--claim a {
    color: #fff;
}

.info-card--claim h3 {
    font-size: 1.375rem;
    margin-bottom: 4px;
}

.info-card--claim p {
    font-size: .85rem;
}

.info-card--claim a {
    margin-top: auto;
    font-size: .78rem;
}

@media (max-width: 991.98px) {
    .info-card--claim .content {
        max-width: 48%;
    }
    .info-card--claim .bg {
        width: 56%;
    }
}

@media (max-width: 575.98px) {
    .info-card--claim {
        min-height: 200px;
    }
    .info-card--claim .content {
        max-width: 50%;
        padding: 16px 16px 16px;
    }
    .info-card--claim .claim-pattern {
        /* width: 64% !important; */
    }
    .info-card--claim .bg {
        width: 58%;
        right: 2px;
    }
}


/* About-page */


/* =========================
   About Us-HERO
   ========================= */

.about-hero {
    min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url("../assets/About-Us-Hero.png") center center / cover no-repeat;
}

.about-hero .container,
.about-hero .row {
    min-height: inherit;
}

.about-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.about-hero h1 {
    font-size: clamp(46px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: #000;
    /* margin-bottom: 10px; */
}

.about-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}


/* =========================
   Quick Contact Section
   ========================= */

.quick-contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
}

.quick-contact__title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: #111;
    margin-bottom: 40px;
}

.quick-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    padding: 32px 20px 28px;
    min-height: 160px;
    background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-card:hover {
    opacity: 0.92;
    transform: translateY(-3px);
    color: #fff;
}

.quick-contact-card__icon {
    margin-bottom: 14px;
}

.quick-contact-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.quick-contact-card__label {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #fff;
}

.quick-contact-card__value {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* =========================
   Connect With Us Section
   ========================= */

.connect-section {
    padding: 0;
    background: #f4f4f4;
    overflow: hidden;
}

.connect-section__copy {
    padding: 64px 48px 64px 80px;
    max-width: 480px;
}

.connect-section__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
}

.connect-section__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.connect-section__right {
    background: #f4f4f4;
    padding: 64px 64px 64px 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.connect-section__blob {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.connect-section__form-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.connect-form__heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-brand, #da291c);
    margin-bottom: 24px;
}

.connect-form__input {
    border: none;
    border-bottom: 1px solid #d0d0d0;
    border-radius: 0;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    box-shadow: none !important;
    outline: none;
}

.connect-form__input:focus {
    border-bottom-color: var(--clr-brand, #da291c);
    background: transparent;
}

.connect-form__input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.connect-form__textarea {
    resize: none;
}

.connect-form__submit {
    background: var(--clr-brand, #da291c);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 14px;
    transition: background 0.2s ease;
}

.connect-form__submit:hover {
    background: rgba(167, 43, 42, 1);
    color: #fff;
}

@media (max-width: 991.98px) {
    .connect-section__copy {
        padding: 48px 32px;
        max-width: 100%;
    }
    .connect-section__right {
        padding: 32px;
        justify-content: center;
    }
    .connect-section__blob {
        height: 60%;
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .quick-contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .connect-section__copy {
        padding: 32px 20px;
    }
    .connect-section__right {
        padding: 24px 20px 40px;
    }
    .connect-section__form-wrap {
        padding: 24px 20px;
    }
}

.nav-link.active {
    color: var(--clr-brand) !important;
}

@media (max-width: 991.98px) {
    .about-hero {
        min-height: 500px;
        background-position: center center;
    }
    .about-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        min-height: 260px;
        height: auto;
        background-position: center top;
    }
    .about-hero .row {
        transform: none;
        padding: 0;
    }
    .about-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .about-hero h1 {
        font-size: 25px;
    }
    .about-hero p {
        font-size: 11.5px;
        line-height: 1.35;
    }
    .company {
        margin-top: 0 !important;
    }
}


/* Vision & Mission section */

.vision-mission-section {
    padding-top: 8px;
}

.vm-card {
    position: relative;
    height: 326px;
    border-radius: 22px;
    overflow: hidden;
    /* background: linear-gradient(90deg, #a82525 0%, #a82525 46%, #df372b 100%); */
    background-color: #272727;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .08);
    isolation: isolate;
}

.vm-card::before,
.vm-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}

.vm-card::before {
    background-image: url('../assets/Union-36.png');
    background-position: top right;
    background-size: 146% auto;
    opacity: .06;
    right: -36px;
}


/* .vm-card::after {
    background-image: url('../assets/Path-106849.png');
    background-position: right -70px bottom -140px;
    background-size: 66% auto;
    opacity: .12;
} */

.vm-card__content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 72px 52px 48px;
    max-width: 100%;
}

.vm-card h2 {
    color: #fff;
    font-size: clamp(30px, 3vw, 47px);
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 18px;
}

.vm-card p {
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
    margin: 0;
    max-width: 92%;
}

@media (max-width: 1199.98px) {
    .vm-card {
        min-height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .vm-card__content {
        padding: 56px 42px 42px;
    }
    .vm-card p {
        font-size: 16px;
        max-width: 100%;
    }
    .vm-card::before {
        background-image: url(../assets/Union-36.png);
        background-position: top right;
        background-size: 175% auto;
        opacity: .06;
        right: -36px;
    }
}

@media (max-width: 767.98px) {
    .vision-mission-section {
        padding-top: 0;
    }
    .vision-mission-section .row {
        --bs-gutter-y: 14px;
    }
    .vm-card {
        min-height: 250px;
        border-radius: 18px;
    }
    .vm-card__content {
        padding: 32px 22px 26px;
    }
    .vm-card::before {
        background-size: 145% auto;
        background-position: top right -18px;
        opacity: .08;
        right: 0;
    }
    /* .vm-card::after {
        content: "";
        background-image: url('../assets/Path-106849.png');
        background-position: right -72px bottom -118px;
        background-size: 92% auto;
        opacity: .08;
    } */
    .vm-card h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .vm-card p {
        font-size: 14px;
        line-height: 1.45;
        max-width: 100%;
    }
}

@media (max-width: 479.98px) {
    .vm-card {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .vm-card__content {
        padding: 28px 20px 24px;
    }
    .vm-card::before {
        background-size: 217% auto;
        background-position: top right -32px;
        opacity: .09;
    }
    .vm-card::after {
        background-position: right -84px bottom -124px;
        background-size: 108% auto;
        opacity: .09;
    }
    .vm-card h2 {
        font-size: 22px;
    }
    .vm-card p {
        font-size: 13px;
        line-height: 1.42;
    }
}


/* Built on Trust section */

.mobile-break-trust {
    display: none;
}

.trust-section {
    padding-top: 24px;
    padding-bottom: 72px;
}

.trust-content {
    max-width: 690px;
}

.trust-title {
    /* font-size: clamp(34px, 4vw, 60px); */
    font-size: 49px;
    line-height: 1.08;
    font-weight: 400;
    color: #000;
    margin: 0 0 28px;
}

.trust-text {
    /* font-size: 18px; */
    line-height: 1.45;
    /* color: #202020; */
    margin: 0 0 18px;
}

.trust-author {
    margin: 24px 0 0;
    color: #da291c;
    font-size: 18px;
    line-height: 1.4;
}

.trust-visual {
    position: relative;
    max-width: 484px;
    min-height: 460px;
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.trust-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* /* 1. Set the initial state */


/* .trust-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    

    opacity: 0; 
    visibility: hidden; 
    
  
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.trust-visual:hover .trust-shape {
    opacity: 1;
    visibility: visible;
}

.trust-visual {
    position: relative;
    overflow: hidden; 
} */

.trust-person {
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 96%;
    max-width: 470px;
    height: auto;
    object-fit: contain;
    clip-path: inset(2px 2px 2px 2px round 22px);
}

@media (max-width: 1199.98px) {
    .trust-title {
        font-size: 46px;
    }
    .trust-text,
    .trust-author {
        font-size: 16px;
    }
    .trust-visual {
        min-height: 400px;
    }
}

@media (max-width: 991.98px) {
    .trust-section {
        padding-top: 0;
    }
    .trust-content {
        max-width: 100%;
    }
    .trust-visual {
        margin: 0 auto;
        min-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .mobile-break-trust {
        display: block;
    }
    .trust-section {
        padding-bottom: 56px;
    }
    .trust-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    .trust-text,
    .trust-author {
        font-size: 14px;
        line-height: 1.5;
    }
    .trust-author {
        margin-top: 18px;
    }
    .trust-visual {
        min-height: 330px;
        width: 94%;
        border-radius: 18px;
    }
    .trust-person {
        width: 94%;
    }
}


/* Industry Recognition & Memberships */

.recog-break {
    display: none;
}

.recognition-section {
    padding-top: 8px;
}

.recognition-card {
    background: #fff;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    /* border-radius: 22px; */
    padding: 56px 42px 20px;
}

.recognition-title {
    text-align: center;
    /* font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.1;
    font-weight: 400; */
    color: #000;
    margin: 0 0 52px;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.recognition-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recognition-logo {
    display: block;
    object-fit: contain;
    margin: 0 auto 26px;
}

.recognition-logo--iap {
    width: 136px;
    height: 88px;
}

.recognition-logo--lcci {
    width: 126px;
    height: 92px;
}

.recognition-logo--award {
    width: 128px;
    height: 96px;
}

.recognition-logo--pfn {
    width: 188px;
    height: 88px;
}

.recognition-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #2f2f2f;
}

@media (max-width: 991.98px) {
    .recognition-card {
        padding: 42px 28px 10px;
    }
    .recognition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }
    .recognition-item p {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .recog-break {
        display: block;
    }
    .recognition-section {
        padding-top: 0;
    }
    .recognition-card {
        border-radius: 18px;
        padding: 34px 18px 8px;
    }
    .recognition-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .recognition-logo--iap {
        width: 122px;
        height: 80px;
    }
    .recognition-logo--lcci {
        width: 112px;
        height: 82px;
    }
    .recognition-logo--award {
        width: 116px;
        height: 88px;
    }
    .recognition-logo--pfn {
        width: 170px;
        height: 80px;
    }
    .recognition-item p {
        font-size: 15px;
    }
}


/* Corporate Information */

.corporate-info-section {
    padding-top: 8px;
    padding-bottom: 70px;
}

.corporate-info-card {
    background: #F5F5F5;
    border-radius: 18px;
    padding: 28px 32px 26px;
}

.corporate-info-title {
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.05;
    font-weight: 400;
    color: #000000;
    margin: 0 0 28px;
}

.corporate-info-list {
    margin: 0;
    padding-left: 26px;
}

.corporate-info-list li {
    color: #4b4b4b;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.corporate-info-list li::marker {
    color: #DA291C;
    font-size: 1.1em;
}

.corporate-info-list strong {
    color: #3c3c3c;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .corporate-info-card {
        padding: 24px 24px 22px;
    }
    .corporate-info-title {
        margin-bottom: 22px;
    }
    .corporate-info-list li {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .corporate-info-section {
        padding-top: 4px;
        padding-bottom: 54px;
    }
    .corporate-info-card {
        padding: 22px 18px 20px;
        border-radius: 14px;
    }
    .corporate-info-title {
        font-size: 28px;
        margin-bottom: 18px;
    }
    .corporate-info-list {
        padding-left: 20px;
    }
    .corporate-info-list li {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 8px;
    }
}


/*JOBS  */


/* =========================
   JOBS HERO
   ========================= */

.job-hero {
    min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url("../assets/Job.png") center center / cover no-repeat;
}

.job-hero .container,
.job-hero .row {
    min-height: inherit;
}

.job-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.job-hero h1 {
    font-size: clamp(46px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: #000;
    /* margin-bottom: 10px; */
}

.job-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.banner+.section {
    padding-top: 72px;
}


/* =========================
   Quick Contact Section
   ========================= */

.quick-contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
}

.quick-contact__title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: #111;
    margin-bottom: 40px;
}

.quick-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    padding: 32px 20px 28px;
    min-height: 160px;
    background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-card:hover {
    opacity: 0.92;
    transform: translateY(-3px);
    color: #fff;
}

.quick-contact-card__icon {
    margin-bottom: 14px;
}

.quick-contact-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.quick-contact-card__label {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #fff;
}


/* =========================
   Connect With Us Section
   ========================= */

.connect-section {
    padding: 0;
    background: #f4f4f4;
    overflow: hidden;
}

.connect-section__copy {
    padding: 64px 48px 64px 80px;
    max-width: 480px;
}

.connect-section__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
}

.connect-section__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.connect-section__right {
    background: #f4f4f4;
    padding: 64px 64px 64px 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.connect-section__blob {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.connect-section__form-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.connect-form__heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-brand, #da291c);
    margin-bottom: 24px;
}

.connect-form__input {
    border: none;
    border-bottom: 1px solid #d0d0d0;
    border-radius: 0;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    box-shadow: none !important;
    outline: none;
}

.connect-form__input:focus {
    border-bottom-color: var(--clr-brand, #da291c);
    background: transparent;
}

.connect-form__input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.connect-form__textarea {
    resize: none;
}

.connect-form__submit {
    background: var(--clr-brand, #da291c);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 14px;
    transition: background 0.2s ease;
}

.connect-form__submit:hover {
    background: rgba(167, 43, 42, 1);
    color: #fff;
}

@media (max-width: 991.98px) {
    .connect-section__copy {
        padding: 48px 32px;
        max-width: 100%;
    }
    .connect-section__right {
        padding: 32px;
        justify-content: center;
    }
    .connect-section__blob {
        height: 60%;
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .quick-contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .connect-section__copy {
        padding: 32px 20px;
    }
    .connect-section__right {
        padding: 24px 20px 40px;
    }
    .connect-section__form-wrap {
        padding: 24px 20px;
    }
}

.nav-link.active {
    color: var(--clr-brand) !important;
}

@media (max-width: 991.98px) {
    .job-hero {
        min-height: 500px;
        background-position: center center;
    }
    .job-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .banner+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .job-hero {
        min-height: 260px;
        height: auto;
        background-position: center top;
    }
    .job-hero .row {
        transform: none;
        padding: 0;
    }
    .job-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .job-hero h1 {
        font-size: 27px;
    }
    .job-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .banner+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
}


/* People intro */


/* Section stays in normal flow — image overflows upward into the hero via negative top */

.jobs-people-intro {
    position: relative;
    overflow: visible;
    padding-top: 0 !important;
    /* override .banner+.section padding-top: 72px */
    padding-bottom: 60px;
}

.people-intro-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: flex-end;
    min-height: 420px;
}

.people-intro__copy {
    padding: 40px 40px 0 0;
    position: relative;
    z-index: 2;
}

.people-intro__copy h2 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 400;
    margin: 0 0 16px;
    color: #000000;
}

.people-intro__copy p {
    max-width: 360px;
    font-size: 17px;
    line-height: 1.6;
    color: #454545;
    margin: 0;
}


/* Visual column — overflow visible so image can bleed into hero above */

.people-intro__visual {
    position: relative;
    min-height: 420px;
    overflow: visible;
}


/* Image bleeds upward — top: -280px pushes it into the hero's bottom half */

.people-intro__visual img {
    position: absolute;
    top: -64px;
    right: 14px;
    width: 700px;
    max-width: none;
    height: auto;
    /* transform: rotate(8deg); */
    transform-origin: bottom left;
}


/* Career tracks */

.career-tracks-section {
    margin-top: 40px;
}

.section-kicker {
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    color: #454445;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.career-tracks-heading {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    color: #000000;
}

.career-track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 33px;
    max-width: 940px;
    margin: 0 auto;
    align-items: start;
}

.career-track-card {
    text-align: center;
}

.career-track-card img {
    width: 100%;
    height: 302px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    background: #fff;
}

.career-track-label {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: #111;
}


/* Success stats */

.people-success-section {
    padding-top: 26px;
}

.people-success-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 22px;
    color: #111;
}

.people-success-banner {
    background: var(--grad-red-horizontal);
    border-radius: 18px;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    color: #fff;
}

.people-success-item {
    text-align: center;
}

.people-success-label {
    font-size: 14px;
    line-height: 1.4;
    opacity: .95;
    margin-bottom: 16px;
}

.people-success-value {
    font-size: 24px;
    font-weight: 500;
}


/* Nationwide */

.nationwide-title {
    text-align: center;
    font-size: 49px;
    font-weight: 400;
    margin: 0 0 6px;
    color: #111;
}

.nationwide-sub {
    text-align: center;
    font-size: 1.063rem;
    color: #666;
    margin: 0 0 26px;
}

.nationwide-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 18px;
    max-width: 980px;
    margin: 0 auto;
}

.nationwide-cities span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 90px;
    font-size: 14px;
    color: #4f4f4f;
}

.nationwide-cities img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    flex: 0 0 22px;
}


/* Working */

.working-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
    align-items: start;
}

.working-left {
    padding-top: 10px;
}

.working-left h2 {
    color: var(--clr-brand);
    font-size: 47px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 18px;
    max-width: 360px;
}

.working-left p {
    max-width: 340px;
    font-size: 1.063;
    line-height: 1.7;
    color: #555;
}

.working-right {
    border-left: 1px solid #d8d8d8;
}

.working-feature {
    padding: 0 0 22px 28px;
    margin-bottom: 22px;
    border-bottom: 1px solid #d8d8d8;
}

.working-feature:last-child {
    margin-bottom: 0;
}

.working-feature h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    color: #333;
    margin: 0 0 10px;
}

.working-feature p {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}


/* Hiring */

.hiring-title {
    text-align: center;
    font-size: 49px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 42px;
    color: #111;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.hiring-card {
    position: relative;
    border: 1px solid rgba(218, 41, 28, .55);
    border-radius: 16px;
    background: #fff;
    padding: 56px 22px 24px;
    text-align: center;
    min-height: 226px;
}

.hiring-card__icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grad-red-horizontal);
    display: grid;
    place-items: center;
}

.hiring-card__icon img {
    width: 24px;
    height: 24px;
}

.hiring-card__number {
    position: relative;
    top: -36px;
    font-size: 58px;
    line-height: 1;
    color: rgba(0, 0, 0, .06);
    font-weight: 700;
    margin-bottom: -8px;
}

.hiring-card__title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .02em;
    color: #222;
    margin-bottom: 12px;
}

.hiring-card p {
    font-size: 1.063rem;
    line-height: 1.45;
    color: #666;
    margin: 0;
}


/* Opportunities */

.opportunities-title {
    text-align: center;
    font-size: 49px;
    line-height: 1.1;
    font-weight: 400;
    color: #111;
    margin: 0 0 38px;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1120px;
    margin: 0 auto;
}

.opportunity-card {
    background: rgba(245, 245, 245, 1);
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--clr-brand);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.opportunity-card span {
    font-size: 42px;
    line-height: 1;
    margin-top: -6px;
}

.opportunity-card:hover,
.opportunity-card--active {
    background: #ef1700;
    color: #fff;
    border-color: #ef1700;
}


/* Community */

.community-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 400;
    color: #111;
    margin: 0 0 28px;
    padding-left: 148px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.community-grid img {
    width: 100%;
    aspect-ratio: 403 / 385;
    object-fit: cover;
    display: block;
}


/* Community Carousel */

.community-carousel .item {
    display: flex;
}

.community-slide-img {
    width: 100%;
    aspect-ratio: 403 / 385;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.community-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
}

.community-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    display: block;
    transition: background .3s;
}

.community-carousel .owl-dot.active span {
    background: var(--clr-brand, #c42a22);
}


/* filhal job end */


/* =========================================================
   Mobile-only: more breathable spacing between sections
   (Desktop + tablet remain unchanged)
   ========================================================= */

@media (max-width: 575.98px) {
    /* Consistent vertical rhythm across all sections */
    .section,
    .section--tight {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    /* Section header spacing */
    .section-top {
        margin-bottom: 18px;
    }
    .section-title {
        margin-bottom: 12px;
    }
    /* Trim extra bottom gaps */
    .section p:last-child {
        margin-bottom: 0;
    }
    .section .btn:last-child {
        margin-bottom: 0;
    }
}


/* Footer */

.footer-announce {
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: #fff;
    padding: 10px 0;
}

.footer-announce .links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .82rem;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    padding: 4px 0;
}

@media (min-width: 992px) {
    .footer-announce .links {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.footer-announce a {
    /* color: #6b7280; */
    color: #797979;
    text-decoration: none;
    padding: 6px 0;
    font-size: 15px;
}

.footer-announce a.active {
    color: var(--clr-brand);
    font-weight: 600;
    font-size: 15px;
}

.footer-announce a:hover {
    color: #111827;
    text-decoration: none;
}


/* Desktop: spread links across width like design (no scroll) */

@media (min-width: 992px) {
    .footer-announce .links {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: .82rem;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        padding: 4px 0;
    }
    @media (min-width: 992px) {
        .footer-announce .links {
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
    .footer-announce a {
        padding: 8px 10px;
    }
}

.site-footer {
    padding: 38px 0 0;
}

.footer-brand img {
    height: 60px;
    width: auto;
}


/* ── Footer toggle buttons — pill toggle design (override) ── */

.footer-btns {
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 4px !important;
    gap: 0 !important;
    display: flex !important;
    width: min-content;
}

.footer-btns .footer-chip {
    /* background: var(--clr-brand, #c0392b); */
    background: var(--clr-btn);
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: .78rem;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
    transition: all .25s ease;
    white-space: nowrap;
}

.footer-btns .footer-chip:last-child {
    background: transparent;
    color: #333;
    font-weight: 500;
}

.footer-btns .footer-chip:hover {
    background: var(--clr-brand, #c0392b);
    color: #fff;
}

.footer-col h6 {
    font-weight: 600;
    font-size: .95rem;
}

.footer-col a {
    display: block;
    /* color: #6b7280; */
    color: #797979;
    text-decoration: none;
    font-size: .88rem;
    margin: 6px 0;
}

.footer-col a:hover {
    color: #111827;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 34px;
    background: var(--clr-brand);
    color: #fff;
    padding: 14px 0;
    font-size: .85rem;
}

.footer-bottom .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom .pill {
    background: rgba(255, 255, 255, .16);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 500;
}


/* JamaPunji placeholder mark (replace with image when available) */

.jp-logo {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    position: relative;
    display: inline-block;
}

.jp-logo::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 4px;
    background: var(--clr-brand-dark);
}

@media (max-width: 575.98px) {
    .footer-announce .links {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: .82rem;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        padding: 4px 0;
    }
    @media (min-width: 992px) {
        .footer-announce .links {
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
    .footer-bottom .bottom-row {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-bottom .pill {
        text-align: center;
    }
    .footer-bottom .bottom-row>.text-center {
        text-align: center !important;
    }
}


/* JamaPunji mark inside the red strip */

.jp-brand {
    display: flex;
    align-items: center;
}

.jp-img {
    height: 30px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .jp-img {
        height: 24px;
    }
}

@media (max-width: 576px) {
    /* Slightly lower product cards on small screens for breathing space */
    .product-strip {
        bottom: -96px;
    }
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 24px;
    }
}


/* Fix: keep embedded "News/Blog/Events" badges visible on iPad mini/air (image is cropped by object-fit) */


/* =========================
   Financial Strength
   ========================= */

.section--financial {
    padding-top: 10px;
    padding-bottom: 60px;
}

.financial-title {
    text-align: center;
    /* font-size: 42px; */
    font-size: clamp(24px, 3.2vw, 49px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-weight: 400;
    margin: 0;
    color: #000000;
}

.financial-sub {
    text-align: center;
    max-width: 760px;
    margin: 10px auto 22px;
    font-size: 1.063rem;
    line-height: 1.6;
    /* color: rgba(0, 0, 0, 0.6); */
    color: #454545;
}

.financial-banner {
    background: var(--grad-red-horizontal);
    border-radius: 18px;
    padding: 31px 18px 29px;
    color: #fff;
}

.financial-item {
    padding: 8px 8px 14px;
}

.financial-label {
    font-size: 12px;
    letter-spacing: 0.02em;
    opacity: 0.95;
    margin-bottom: 8px;
    font-weight: 400;
}

.financial-value {
    font-size: 22px;
    font-weight: 500;
}


/* .financial-foot {
    margin: 12px 0 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.9;
    color: #E8E8E8;
} */

@media (max-width: 575px) {
    /* Mobile layout matches design: title/subtitle left, stats stacked in a tall card */
    .financial-title {
        font-size: 32px;
        text-align: left;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    .financial-sub {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    .financial-banner {
        /* Match mobile design: tall single-column stats card */
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 60px 22px;
        border-radius: 34px;
        background: var(--grad-red-horizontal);
    }
    /* Force the 2-up bootstrap columns to stack like the design */
    .financial-banner .row {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .financial-banner .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .financial-item {
        text-align: center;
        padding: 0;
    }
    .financial-item+.financial-item {
        margin-top: 56px;
    }
    .financial-label {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    .financial-value {
        font-size: 30px;
        line-height: 1.05;
    }
    /* .financial-foot {
        display: none;
    } */
}


/* Mobile footer accordion (from mobile sample) */

.footer-accordion {
    margin-top: 14px;
    border-top: 1px solid rgba(17, 24, 39, .10);
}

.footer-accordion .acc-item {
    border-bottom: 1px solid rgba(17, 24, 39, .10);
}

.footer-accordion .acc-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
}

.footer-accordion .acc-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(17, 24, 39, .55);
    border-bottom: 2px solid rgba(17, 24, 39, .55);
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform .18s ease;
}

.footer-accordion .acc-item.is-open .acc-icon {
    transform: rotate(-135deg);
}

.footer-accordion .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s ease;
}

.footer-accordion .acc-inner {
    padding: 8px 0 19px;
    display: grid;
    gap: 8px;
}

.footer-accordion .acc-inner a {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
}

.footer-accordion .acc-inner a:hover {
    color: #111827;
}

.footer-accordion .social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    align-items: center;
}

.footer-accordion .social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-brand);
    font-size: 1.1rem;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .site-footer .footer-brand {
        margin-bottom: 4px;
    }
}


/* Mobile footer bottom strip match sample */

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 12px !important;
        background: var(--clr-brand) !important;
    }
    .footer-bottom .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .bottom-row {
        display: block !important;
        text-align: center !important;
        padding: 8px 0 10px !important;
    }
    .jp-brand {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin-bottom: 4px !important;
    }
    .jp-img {
        height: 30px !important;
        width: auto !important;
        margin: 0 !important;
    }
    .bottom-row .text-center {
        font-size: 9px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        color: #fff !important;
        margin: 4px 0 8px !important;
        text-align: center !important;
    }
    .pill {
        display: block !important;
        width: fit-content !important;
        max-width: calc(100% - 20px) !important;
        margin: 0 auto !important;
        padding: 6px 12px !important;
        border-radius: 999px !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        background: rgba(255, 255, 255, .18) !important;
        color: #fff !important;
    }
    /* Branch locator mobile: image first, text below */
    #branch .row {
        display: flex !important;
        flex-direction: column !important;
    }
    #branch .branch-img-col {
        order: 1 !important;
        margin-bottom: 18px !important;
    }
    #branch .branch-text-col {
        order: 2 !important;
    }
    #branch .branch-ill {
        width: min(340px, 92%) !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        display: block !important;
        transform: none !important;
    }
    #branch .section-title {
        font-size: 24px !important;
        line-height: 1.1 !important;
        white-space: normal !important;
    }
    #branch p {
        font-size: 14px !important;
        line-height: 1.45 !important;
        max-width: 100% !important;
    }
    #branch .btn-brand {
        padding: .9rem 1.5rem !important;
        border-radius: 10px !important;
    }
}


/* Responsive */

@media (max-width: 991.98px) {
    .career-tracks-section {
        margin-top: 40px;
    }
    .jobs-hero__panel {
        min-height: 360px;
    }
    .jobs-hero__shape {
        width: 48%;
        min-width: 360px;
        border-right-width: 6px;
        border-radius: 0 200px 200px 0;
    }
    .jobs-hero__shape::before {
        border-radius: 0 200px 200px 0;
    }
    .jobs-hero__shape-inner {
        padding-left: 46px;
        padding-right: 38px;
    }
    .jobs-hero__shape h1 {
        font-size: 28px;
    }
    .people-intro-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .jobs-people-intro {
        margin-top: 0;
    }
    .people-intro__copy {
        /* padding: 0 16px 30px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 17px;
        /* height: 20px; */
        margin-top: 20px;
    }
    .people-intro__visual {
        min-height: 360px;
        overflow: hidden;
    }
    .people-intro__visual img {
        /* top: -20px;
        right: -40px;
        width: 110%; */
        top: -32px;
        right: 20px;
        width: 110%;
        /* transform: rotate(8deg); */
    }
    .career-track-grid,
    .hiring-grid,
    .opportunities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .career-track-card img {
        height: 260px;
    }
    .people-success-banner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .working-grid {
        grid-template-columns: 1fr;
    }
    .working-right {
        border-left: 0;
        border-top: 1px solid #d8d8d8;
        padding-top: 20px;
    }
    .community-title {
        padding-left: 0;
    }
    .community-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .career-tracks-section {
        margin-top: -57px
    }
    .section {
        padding: 56px 0;
    }
    .section--tight {
        padding: 48px 0;
    }
    .jobs-hero__panel {
        min-height: 170px;
    }
    .jobs-hero__shape {
        width: 46%;
        min-width: 0;
        border-right-width: 4px;
        border-radius: 0 110px 110px 0;
    }
    .jobs-hero__shape::before {
        border-radius: 0 110px 110px 0;
    }
    .jobs-hero__shape-inner {
        padding-left: 18px;
        padding-right: 14px;
    }
    .jobs-hero__shape h1 {
        font-size: 18px;
        line-height: 1.2;
    }
    .jobs-hero+.section {
        padding-top: 24px;
    }
    .people-intro__copy h2 {
        font-size: 28px;
    }
    .people-intro__copy {
        /* padding: 35px 25px 22px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 17px;
        /* height: 20px; */
        margin-top: 20px;
        font-size: 17px;
    }
    .people-intro__visual {
        /* min-height: 260px; */
    }
    .hiring-title,
    .opportunities-title {
        font-size: 34px;
    }
    .career-tracks-heading {
        font-size: 20px;
    }
    .career-track-card img {
        height: 248px;
    }
    .career-track-grid,
    .hiring-grid,
    .opportunities-grid,
    .people-success-banner,
    .community-grid {
        grid-template-columns: 1fr;
    }
    .people-success-banner {
        gap: 18px;
        padding: 28px 18px;
    }
    .nationwide-cities {
        justify-content: center;
        gap: 14px 14px;
        max-width: 360px;
    }
    .nationwide-cities span {
        min-width: 108px;
        font-size: 13px;
    }
    .nationwide-cities img {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }
    .working-left h2 {
        font-size: 30px;
        max-width: 100%;
    }
    .working-feature {
        padding-left: 0;
    }
    .opportunity-card {
        min-height: 58px;
        font-size: 16px;
    }
    .community-title {
        font-size: 22px;
    }
    /* .footer-bottom .bottom-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        text-align: center !important;
    }
    .footer-bottom .jp-brand {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .footer-bottom .jp-img {
        height: 54px !important;
        margin: 0 auto !important;
    } */
}

@media(max-width:1024px) {
    .people-intro__visual img {
        margin-top: 7px;
        /* height: 448px; */
        width: 132%;
        left: -136px;
    }
}


/* Requested final fixes */

.jobs-hero-title {
    line-height: 1.05;
}

@media (max-width: 575.98px) {
    .job-hero .inner {
        max-width: 170px;
        padding: 0 0 0 10px;
        margin-left: -10px;
    }
    .job-hero h1 {
        font-size: 23px;
        line-height: 1.06;
    }
}

.working-feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hiring-card__title {
    position: relative;
    padding-top: 8px;
}

.hiring-card:nth-child(1) .hiring-card__title::before,
.hiring-card:nth-child(2) .hiring-card__title::before,
.hiring-card:nth-child(3) .hiring-card__title::before,
.hiring-card:nth-child(4) .hiring-card__title::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -34px;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: #111;
}

.hiring-card:nth-child(1) .hiring-card__title::before {
    content: "01";
}

.hiring-card:nth-child(2) .hiring-card__title::before {
    content: "02";
}

.hiring-card:nth-child(3) .hiring-card__title::before {
    content: "03";
}

.hiring-card:nth-child(4) .hiring-card__title::before {
    content: "04";
}


/* .opportunity-card {
    background: rgba(245, 245, 245, 1);
} */

.community-section {
    background: rgba(245, 245, 245, 1);
}


/* Branch-Locator */


/* =========================
   Branch Locator Hero
   Same structure as About Us hero
   ========================= */


/* .hero {
    min-height: 640px;
    position: relative;
} */


/* 1st solution */

.branch-section {
    width: 100%;
}

.content-hero {
    padding: 8%;
}

.title-hero {
    font-size: clamp(2rem, 4vw, 2.3rem);
    color: #000000;
    font-weight: bold;
    margin-left: 10%;
    margin-bottom: 1rem;
}

.after-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #000000;
    margin-left: 10%;
    max-width: 600px;
    line-height: 1.5;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content-hero {
        padding: 5%;
        text-align: center !important;
    }
    .title-hero {
        font-size: clamp(2rem, 4vw, 2.3rem);
        color: #000000;
        font-weight: bold;
        margin-left: 0% !important;
        margin-bottom: 1rem;
    }
    .after-title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        color: #000000;
        /* margin-left: 0%; */
        max-width: 600px;
        line-height: 1.5;
    }
}

@media (max-width: 991.98px) {
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content-hero {
        padding: 5%;
        text-align: center !important;
    }
    .title-hero {
        font-size: clamp(2rem, 4vw, 2.3rem);
        color: #000000;
        font-weight: bold;
        margin-left: 0% !important;
        margin-bottom: 1rem;
    }
    .after-title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        color: #000000;
        /* margin-left: 0%; */
        max-width: 600px;
        line-height: 1.5;
    }
}


/* =========================
   Hero Final try
   Same structure as About Us hero
   ========================= */

.final-section {
    width: 100%;
    /* new */
    background-repeat: no-repeat;
    background-size: 100%;
    /* padding: 15% 0px; */
    padding: 12% 0px;
}

.content-hero {
    /* padding: 8%; */
    /* padding: 24% 0px; */
}

.title-hero {
    font-size: clamp(2rem, 4vw, 2.3rem);
    color: #000000;
    font-weight: bold;
    margin-left: 10%;
    margin-bottom: 1rem;
}

.after-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #000000;
    margin-left: 10%;
    max-width: 600px;
    line-height: 1.5;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content-hero {
        /* display: none; */
        /* padding: 5%;
        text-align: center !important; */
    }
    .final-title-hero {
        font-size: clamp(2rem, 4vw, 2.3rem);
        color: #000000;
        font-weight: bold;
        margin-left: 0% !important;
        /* margin-bottom: 1rem; */
        margin-top: 11px;
    }
    .after-title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        color: #000000;
        /* margin-left: 0%; */
        max-width: 600px;
        line-height: 1.5;
    }
    .final-section {
        width: 100%;
        background-repeat: no-repeat;
        background-size: 100%;
        padding: 18% 0px;
    }
}

@media (max-width: 991.98px) {
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .content-hero {
        padding: 5%;
        text-align: center !important;
    }
    .final-title-hero {
        font-size: clamp(2rem, 4vw, 2.3rem);
        color: #000000;
        font-weight: bold;
        margin-left: 0% !important;
        margin-bottom: 1rem;
    }
    .after-title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        color: #000000;
        /* margin-left: 0%; */
        max-width: 600px;
        line-height: 1.5;
    }
    @media (max-width: 991.98px) {
        .final-section .final-title-hero {
            display: none;
        }
        .final-section .hero-content {
            display: none;
        }
    }
}


/* .branch-hero {
    min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url('../assets/branch-hero-bg.png') center center / cover no-repeat;
}

.branch-hero .container,
.branch-hero .row {
    min-height: inherit;
}

.branch-hero .inner {
    max-width: 560px;
    padding-top: 24px;
    padding-left: 8px;
}

.branch-hero h1 {
    font-size: clamp(40px, 4.6vw, 58px);
    line-height: 1.05;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    white-space: nowrap;
}



@media (max-width: 991.98px) {
    .branch-hero {
        min-height: 500px;
        background-position: center center;
    }
    .branch-hero .inner {
        max-width: 420px;
        padding-left: 24px;
        padding-top: 0;
    }
    .branch-hero h1 {
        font-size: clamp(34px, 4.2vw, 46px);
        white-space: nowrap;
    }
  
}

@media (max-width: 575.98px) {
    .branch-hero {
        min-height: 260px;
        height: auto;
        background-position: center top;
    }
    .branch-hero .row {
        transform: none;
        padding: 0;
    }
    .branch-hero .inner {
        max-width: 155px;
        padding: 0 0 0 14px;
        margin-left: -8px;
    }
    .branch-hero h1 {
        font-size: 25px;
        line-height: 1.08;
        white-space: normal;
    }

} */


/* =========================
   Head Office Section
   ========================= */

.branch-office-section {
    padding-top: 50px;
    padding-bottom: 28px;
}

.head-office-card {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 26px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 22px;
    background: #fff;
}

.head-office-card__info {
    padding-top: 6px;
}

.head-office-card__info h2,
.branch-card h3 {
    color: var(--clr-head);
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 14px;
}

.head-office-card__info p,
.branch-card p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #6E6E6E;
}

.office-meta-block,
.branch-card__meta {
    margin-top: 18px;
}

.office-meta-label {
    color: #333333;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.office-meta-block a,
.branch-card__meta a {
    display: block;
    color: var(--clr-head);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.office-meta-block--url a,
.branch-card__meta--url a {
    text-decoration: underline;
}

.head-office-card__map img {
    width: 100%;
    height: 100%;
    min-height: 292px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}


/* =========================
   Branch Grid Section
   ========================= */

.branch-grid-section {
    padding-top: 8px;
    padding-bottom: 0;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.branch-card {
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    background: #fff;
    padding: 22px 20px 20px;
}

.branch-card__image {
    width: 100%;
    aspect-ratio: 357 / 271;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin-top: 16px;
}


/* =========================
   Branch Locator Responsive
   ========================= */

@media (max-width: 991.98px) {
    .head-office-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .branch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .branch-office-section {
        padding-bottom: 18px;
    }
    .head-office-card {
        padding: 16px;
        border-radius: 18px;
    }
    .head-office-card__info h2,
    .branch-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .head-office-card__info p,
    .branch-card p,
    .office-meta-label,
    .office-meta-block a,
    .branch-card__meta a {
        font-size: 13px;
    }
    .head-office-card__map img {
        min-height: 210px;
        border-radius: 12px;
    }
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .branch-card {
        border-radius: 18px;
        padding: 18px 16px 16px;
    }
}


/* Board-of-Directors */


/* =========================
   LEADERSHIP HERO
   ========================= */


/*
  Layout approach:
  - .leadership-hero        → positioned container, white bg, clips overflow
  - .leadership-hero__bg    → board-bg.png stretched full width/height as <img>
                              (this image already contains the white-left + red-right wave shape)
  - .leadership-hero__text  → absolutely positioned over the white left area
  - .leadership-hero__person → board-hero.png absolutely positioned bottom-right on the red area
*/

.leadership-hero {
    position: relative;
    width: 100%;
    /* Aspect ratio matches the bg image (1411 × 749) */
    aspect-ratio: 1411 / 749;
    max-height: 480px;
    min-height: 220px;
    background: #fff;
    overflow: hidden;
}


/* Background image — fills the full section, preserves the wave shape */

.leadership-hero__bg {
    position: absolute;
    left: 8%;
    /* inset: 0; */
    width: 100%;
    height: 116%;
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 0;
}


/* Text block — floats over the white left portion (~35% from left) */

.leadership-hero__text {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 32%;
}

.leadership-hero__title {
    font-size: clamp(20px, 3.2vw, 49px);
    font-weight: 400;
    color: #111;
    margin-bottom: 0.35em;
    line-height: 1.1;
    font-family: inherit;
    white-space: nowrap;
}

.leadership-hero__label {
    display: block;
    color: #E8251A;
    font-size: clamp(11px, 1.1vw, 17px);
    font-weight: 600;
    margin-bottom: 0.9em;
    letter-spacing: 0.01em;
}

.leadership-hero__name {
    font-size: clamp(10px, 1.1vw, 1.063rem);
    color: #000000;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}


/* Person photo — bottom-anchored on the right red side */


/* board-hero.png is 718×1097 (portrait). We size by height so head stays at top. */

.leadership-hero__person {
    position: absolute;
    top: -65px;
    bottom: 0;
    right: 29%;
    height: 148%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 2;
    display: block;
}

@media (max-width: 1100px) {
    .leadership-hero__text {
        left: 5%;
        max-width: 34%;
    }
    .leadership-hero__person {
        /* right: 12%;
        height: 142%;
        top: -43px; */
        right: 5%;
        height: 142%;
        top: -35px;
    }
    .leadership-hero__bg {
        /* width: 86%;
        position: absolute;
        left: 258px; */
        width: 101%;
        position: absolute;
        left: 205px;
        height: 417px;
    }
    .leadership-hero__title {
        font-size: clamp(20px, 4.2vw, 52px);
        font-weight: 400;
        color: #111;
        margin-bottom: 0.35em;
        line-height: 1.1;
        font-family: inherit;
        white-space: nowrap;
    }
    .leadership-hero__label {
        display: block;
        color: #E8251A;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 0.3em;
        letter-spacing: 0.01em;
    }
    .leadership-hero__name {
        font-size: 22px;
        color: #111;
        font-weight: 400;
        line-height: 1.5;
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .leadership-hero__bg {
        position: absolute;
        inset: 0;
        width: 106%;
        margin-left: 107px;
        height: 101%;
        object-fit: cover;
        object-position: center center;
        display: block;
        z-index: 0;
    }
    .leadership-hero__person {
        right: 4%;
        height: 133%;
        top: -4px;
    }
    .leadership-hero__title {
        font-size: 18px;
        font-weight: 600;
        color: #111;
        margin-bottom: 0.35em;
        line-height: 1.1;
        font-family: inherit;
        white-space: nowrap;
    }
    .leadership-hero__label {
        display: block;
        color: #E8251A;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 0.3em;
        letter-spacing: 0.01em;
    }
    .leadership-hero__name {
        font-size: 14px;
        color: #000000;
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
    }
    .leadership-hero__text {
        left: 4%;
        max-width: 30%;
    }
}


/* =========================
   BOARD OF DIRECTORS SECTION
   ========================= */

.leadership-tabs-section {
    padding: 27px 0 10px;
    background: #f3f3f3;
}

.leadership-tabs-wrap {
    display: flex;
    justify-content: center;
}

.leadership-tabs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.leadership-tab {
    min-width: 109px;
    height: 39px;
    padding: 0 17px;
    border: 1px solid var(--bs-btn-border-color);
    border-radius: 6px;
    background: #fff;
    color: var( --clr-tab1);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.leadership-tab.is-active {
    /* background: #D33224; */
    background: var(--clr-btn);
    color: #fff;
    /* border-color: #D33224; */
    border: 1px solid var(--bs-btn-border-color);
    ;
}

.leadership-tab:focus-visible {
    outline: 2px solid #D33224;
    outline-offset: 2px;
}

.bod-section {
    padding-top: 56px;
    padding-bottom: 16px;
}

.mgmt-section {
    padding-top: 56px;
    padding-bottom: 64px;
}

.bod-section {
    padding-top: 56px;
    padding-bottom: 16px;
}

.mgmt-section {
    padding-top: 16px;
    padding-bottom: 64px;
}

.bod-section__title {
    font-size: clamp(24px, 3vw, 39px);
    font-weight: 400;
    color: #060606;
    margin-bottom: 32px;
}


/* BOD GRID - 6 columns first row, 4 in second */

.bod-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}


/* 7th–10th cards: 4-column layout */

.bod-grid .bod-card:nth-child(n+7) {
    grid-column: auto;
}


/* 2nd row starts from left - no centering */

.bod-grid .bod-card:nth-child(7) {
    grid-column: auto;
}


/* MGMT GRID - 6 col grid, 4 cards centered like BOD 2nd row */

.mgmt-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}


/* BOD CARD */

.bod-card {
    display: flex;
    flex-direction: column;
}

.bod-card__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/3.4;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 10px;
}


/* Red angular background in top-right corner */

.bod-card__bg {
    /* position: absolute;
    top: -1px;
    left: -5px;
    right: 19px;
    width: 104%;
    height: 92%; */
    position: absolute;
    top: 3px;
    left: -1px;
    right: 19px;
    width: 107%;
    height: 99%;
    object-fit: cover;
    /* object-position: top right; */
    border-radius: 0 0px 0 0;
}


/* Person photo — bottom-anchored, full height */

.bod-card__photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bod-card__info {
    padding: 0 2px;
}

.bod-card__name {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 3px;
    line-height: 1.35;
}

.bod-card__role {
    font-size: 11px;
    color: #71717A;
    margin: 0;
    line-height: 1.3;
}


/* Responsive BOD grid */

@media (max-width: 1199.98px) {
    .bod-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .bod-grid .bod-card:nth-child(7) {
        grid-column: auto;
    }
    .mgmt-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .bod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bod-grid .bod-card:nth-child(7) {
        grid-column: auto;
    }
    .mgmt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .leadership-tabs-section {
        padding-top: 22px;
        padding-bottom: 4px;
    }
    .leadership-tabs {
        gap: 8px;
    }
    .leadership-tab {
        min-width: 104px;
        height: 38px;
        padding: 0 14px;
        font-size: 11px;
    }
    .bod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bod-grid .bod-card:nth-child(7) {
        grid-column: auto;
    }
    .mgmt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bod-card__name {
        font-size: 11px;
    }
    .bod-card__role {
        font-size: 10px;
    }
    .bod-section__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}


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

.rating-section {
    padding-top: 60px;
    padding-bottom: 72px;
    border-top: 1px solid #eee;
}

.rating-section__title {
    font-size: clamp(26px, 3vw, 49px);
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    font-family: inherit;
}

.rating-section__inner {
    max-width: 900px;
}

.rating-section__headline {
    font-size: clamp(16px, 1.6vw, 32px);
    font-weight: 700;
    color: #DD1403;
    margin-bottom: 20px;
    line-height: 1.35;
}

.rating-section__lead {
    font-size: 14px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 16px;
}

.rating-section__lead--bold {
    font-weight: 700;
    margin-bottom: 20px;
}

.rating-section__body {
    font-size: 14px;
    color: #454545;
    /* line-height: 1.75; */
    margin-bottom: 16px;
}

@media (max-width: 575.98px) {
    .rating-section {
        padding-top: 40px;
        padding-bottom: 48px;
    }
    .rating-section__title {
        font-size: 24px;
    }
    .rating-section__headline {
        font-size: 15px;
    }
    .rating-section__lead,
    .rating-section__body {
        font-size: 13px;
    }
}


/* Contact-US-Page */


/*Contact  */


/* =========================
   Contact
   ========================= */

.contact-hero {
    /* min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url("../assets/Contact-Us-Hero.png") center center / cover no-repeat; */
    min-height: 641px;
    width: 100%;
    padding: 0px;
    display: flex;
    align-items: center;
    background: url(../assets/Contact-Us-Hero.png) center center / cover no-repeat;
}

.contact-hero .container,
.contact-hero .row {
    min-height: inherit;
}

.contact-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.contact-hero h1 {
    /* font-size: clamp(46px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: #000; */
    /* margin-bottom: 10px; */
    font-size: 52px;
    position: relative;
    left: -59%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.contact-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.banner-contact+.section {
    padding-top: 72px;
}


/* =========================
   Quick Contact Section
   ========================= */

.quick-contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
}

.quick-contact__title {
    text-align: center;
    font-size: clamp(28px, 3.5vw, 49px);
    font-weight: 400;
    color: #111;
    margin-bottom: 40px;
}

.quick-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    padding: 32px 20px 28px;
    min-height: 160px;
    background: linear-gradient(180deg, rgba(218, 41, 28, 1) 0%, rgba(218, 41, 28, 1) 55%, rgba(167, 43, 42, 1) 100%);
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-card:hover {
    opacity: 0.92;
    transform: translateY(-3px);
    color: #fff;
}

.quick-contact-card__icon {
    margin-bottom: 14px;
}

.quick-contact-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.quick-contact-card__label {
    font-size: 27px;
    font-weight: 500;
    margin: 0 0 6px;
    color: #fff;
}

.quick-contact-card__value {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}


/* =========================
   Connect With Us Section
   ========================= */

.connect-section {
    padding: 0;
    background: #f4f4f4;
    overflow: hidden;
}

.connect-section__copy {
    padding: 64px 48px 64px 80px;
    /* margin-left: 293px; */
}

.connect-section__title {
    /* font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: #111;
    margin-bottom: 20px; */
    font-size: clamp(28px, 3.5vw, 49px);
    width: 120%;
    color: #111;
}

.connect-section__text {
    /* font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0; */
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.connect-section__right {
    background: #f4f4f4;
    padding: 64px 64px 64px 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.connect-section__blob {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 134%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.connect-section__form-wrap {
    position: relative;
    left: -98px;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.connect-form__heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-brand, #da291c);
    margin-bottom: 24px;
}

.connect-form__input {
    border: none;
    border-bottom: 1px solid #d0d0d0;
    border-radius: 0;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    box-shadow: none !important;
    outline: none;
}

.connect-form__input:focus {
    border-bottom-color: var(--clr-brand, #da291c);
    background: transparent;
}

.connect-form__input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.connect-form__textarea {
    resize: none;
}

.connect-form__submit {
    background: var(--clr-brand, #da291c);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 14px;
    transition: background 0.2s ease;
}

.connect-form__submit:hover {
    background: rgba(167, 43, 42, 1);
    color: #fff;
}

#cf-panel-complaints .connect-form__submit {
    margin-top: 116px;
}

@media (max-width: 991.98px) {
    .connect-section__copy {
        padding: 48px 32px;
        max-width: 100%;
    }
    .connect-section__right {
        padding: 32px;
        justify-content: center;
    }
    .connect-section__blob {
        /* right: -10%; */
        top: -288px;
        /* bottom: -2%; */
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: cover;
    }
}

@media (max-width: 575.98px) {
    .quick-contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .connect-section__copy {
        padding: 32px 20px;
    }
    .connect-section__right {
        padding: 24px 20px 40px;
    }
    .connect-section__form-wrap {
        padding: 24px 20px;
    }
}

.nav-link.active {
    color: var(--clr-brand) !important;
}

@media (max-width: 991.98px) {
    .contact-hero {
        min-height: 500px;
        background-position: center center;
    }
    .contact-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .banner-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero {
        /* min-height: 260px;
        height: auto;
        background-position: center top; */
        min-height: 260px;
        width: 119%;
        height: auto;
        background-position: center top;
    }
    .contact-hero .row {
        transform: none;
        padding: 0;
    }
    .contact-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .contact-hero h1 {
        /* font-size: 27px; */
        font-size: 25px;
        font-weight: 500;
        top: -7px;
        margin-left: 124px;
    }
    .contact-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .banner-contact+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
    /* .contact-hero .inner {
        max-width: 170px;
        padding: 0 0 0 10px;
        margin-left: -10px;
    }
    .contact-hero h1 {
        font-size: 23px;
        line-height: 1.06;
    } */
}


/* =========================
   FAQ's Section
   ========================= */

.faq-section {
    padding-top: 72px;
    padding-bottom: 80px;
}


/* Left nav */

.faq-nav__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #111;
    margin-bottom: 28px;
}

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

.faq-nav__list li {
    margin-bottom: 0;
}

.faq-nav__link,
.faq-nav__toggle,
.faq-nav__sublink {
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.25s ease;
}

.faq-nav__link,
.faq-nav__toggle {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
}

.faq-nav__link:hover,
.faq-nav__toggle:hover,
.faq-nav__sublink:hover {
    color: var(--clr-brand, #da291c);
}

.faq-nav__link--active,
.faq-nav__sublink--active {
    color: var(--clr-brand, #da291c);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-nav__item--nested {
    margin-top: 2px;
}

.faq-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
}

.faq-nav__toggle-icon {
    font-size: 18px;
    line-height: 1;
    color: #666;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-nav__toggle[aria-expanded="true"] .faq-nav__toggle-icon {
    color: var(--clr-brand, #da291c);
}

.faq-nav__sublist {
    list-style: none;
    padding: 0 0 0 12px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-nav__sublist.is-open {
    max-height: 220px;
}

.faq-nav__sublink {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}


/* Accordion */

.faq-accordion {
    border-top: 1px solid #e5e5e5;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.25s ease;
}

.faq-item__question:hover {
    color: var(--clr-brand, #da291c);
}

.faq-item__icon {
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    color: #555;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    color: var(--clr-brand, #da291c);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    will-change: max-height;
}

.faq-item__answer--open {
    padding-bottom: 18px;
}

.faq-item__answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}


/* Mobile responsive */

@media (max-width: 767.98px) {
    .faq-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .faq-nav {
        margin-bottom: 32px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    .faq-nav__title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .faq-nav__sublist {
        padding-left: 10px;
    }
    .faq-nav__list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .faq-nav__link {
        padding: 6px 14px;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 13px;
    }
    .faq-nav__link--active {
        background: var(--clr-brand, #da291c);
        color: #fff;
        border-color: var(--clr-brand, #da291c);
        text-decoration: none;
    }
    .faq-item__question {
        font-size: 14px;
        padding: 16px 0;
    }
}


/* =========================
   Contact Us Page - Quick Contact & Connect With Us Responsive Fixes
   ========================= */

.quick-contact-section .row>[class*="col-"] {
    display: flex;
}

.quick-contact-card {
    width: 100%;
    min-height: 164px;
    height: 100%;
}

.quick-contact-card__value {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.connect-section__copy {
    max-width: 520px;
}

@media (max-width: 991.98px) {
    .connect-section {
        padding: 0;
    }
    .connect-section .row {
        flex-direction: column;
    }
    .connect-section__copy {
        margin-left: 0;
        max-width: 100%;
        padding: 48px 24px 28px;
    }
    .connect-section__title {
        width: 100%;
        font-size: clamp(32px, 8vw, 46px);
        margin-bottom: 18px;
    }
    .connect-section__text {
        font-size: 18px;
        line-height: 1.65;
        max-width: 540px;
    }
    .connect-section__right {
        min-height: 620px;
        padding: 24px 24px 48px;
        justify-content: center;
        align-items: flex-start;
    }
    .connect-section__blob {
        /* right: -10%;
        top: auto;
        bottom: -2%;
        width: 125%;
        height: auto;
        max-width: none;
        object-fit: contain; */
        /* right: -10%; */
        top: -288px;
        /* bottom: -2%; */
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: cover;
    }
    .connect-section__form-wrap {
        left: 0;
        margin: 0 auto;
        max-width: 540px;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .quick-contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .quick-contact__title {
        margin-bottom: 26px;
        font-size: 34px;
    }
    .quick-contact-section .row {
        --bs-gutter-y: 16px;
    }
    .quick-contact-card {
        min-height: 148px;
        border-radius: 16px;
        padding: 26px 18px 24px;
    }
    .quick-contact-card__icon img {
        width: 34px;
        height: 34px;
    }
    .quick-contact-card__label {
        font-size: 15px;
    }
    .quick-contact-card__value {
        font-size: 13px;
        min-height: 36px;
    }
    .connect-section__copy {
        padding: 36px 20px 18px;
    }
    .connect-section__title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    .connect-section__text {
        font-size: 16px;
        line-height: 1.7;
        max-width: 100%;
    }
    .connect-section__right {
        min-height: 470px;
        padding: 12px 16px 28px;
        justify-content: center;
        align-items: flex-start;
    }
    .connect-section__blob {
        /* right: -18%; */
        /* bottom: 25%; */
        width: 100%;
        top: -127px;
    }
    .connect-section__form-wrap {
        padding: 24px 18px;
        border-radius: 14px;
        max-width: 100%;
    }
    .connect-form__heading {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .connect-form__submit {
        padding: 12px;
    }
}


/* faq-page

/* =========================
 FAQ-Page
   ========================= */

.faq-hero {
    /* min-height: 614px;
    position: relative;
    left: 21%;
    width: 93%;
    left: 8%;
    display: flex;
    align-items: center; */
    min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../assets/faq-hero.jpg) center center / cover no-repeat;
}

.faq-hero .container,
.faq-hero .row {
    min-height: inherit;
}

.faq-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.faq-hero h1 {
    /* font-size: clamp(46px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: #000; */
    /* margin-bottom: 10px; */
    /* font-size: 52px;
    position: relative;
    left: -59%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000; */
    font-size: 44px;
    position: relative;
    left: -21%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.faq-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.faq-contact+.section {
    padding-top: 72px;
}

@media (max-width: 991.98px) {
    .faq-hero {
        min-height: 500px;
        background-position: center center;
    }
    .faq-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .faq-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .faq-hero {
        /* min-height: 260px;
        height: auto;
        background-position: center top; */
        min-height: 260px;
        width: 124%;
        height: auto;
        background-position: center top;
    }
    .faq-hero .row {
        transform: none;
        padding: 0;
    }
    .faq-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .faq-hero h1 {
        /* font-size: 27px; */
        font-size: 23px;
        font-weight: 500;
        top: -7px;
        margin-left: 43px;
    }
    .faq-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .faq-contact+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
    /* .contact-hero .inner {
        max-width: 170px;
        padding: 0 0 0 10px;
        margin-left: -10px;
    }
    .contact-hero h1 {
        font-size: 23px;
        line-height: 1.06;
    } */
}


/* =========================
   FAQ's Section
   ========================= */

.faq-section {
    padding-top: 72px;
    padding-bottom: 80px;
}


/* Left nav */

.faq-nav__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #111;
    margin-bottom: 28px;
}

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

.faq-nav__list li {
    margin-bottom: 0;
}

.faq-nav__link,
.faq-nav__toggle,
.faq-nav__sublink {
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    text-decoration: none;
    transition: color 0.25s ease;
}

.faq-nav__link,
.faq-nav__toggle {
    padding: 10px 0;
    font-size: 15px;
    color: #333;
}


/* .faq-nav__toggle:hover,
.faq-nav__sublink:hover {
    color: var(--clr-brand, #da291c);
} */

.faq-nav__link:hover {
    /* background: rgba(232, 37, 26, .08); */
    color: var(--clr-brand);
}

.faq-nav__link:focus {
    /* background-color:var(--clr-brand);
    color: #fff; */
}

.faq-nav__link--active,
.faq-nav__sublink--active {
    color: var(--clr-brand, #da291c);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-nav__item--nested {
    margin-top: 2px;
}

.faq-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
}

.faq-nav__toggle-icon {
    font-size: 18px;
    line-height: 1;
    color: #666;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-nav__toggle[aria-expanded="true"] .faq-nav__toggle-icon {
    color: var(--clr-brand, #da291c);
}

.faq-nav__sublist {
    list-style: none;
    padding: 0 0 0 12px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-nav__sublist.is-open {
    max-height: 220px;
}

.faq-nav__sublink {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}


/* Accordion */

.faq-accordion {
    border-top: 1px solid #e5e5e5;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.25s ease;
}

.faq-item__question:hover {
    color: var(--clr-brand, #da291c);
}

.faq-item__icon {
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    color: #555;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    color: var(--clr-brand, #da291c);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    will-change: max-height;
}

.faq-item__answer--open {
    padding-bottom: 18px;
}

.faq-item__answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}


/* Mobile responsive */

@media (max-width: 767.98px) {
    .faq-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .faq-nav {
        margin-bottom: 32px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    .faq-nav__title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .faq-nav__sublist {
        padding-left: 10px;
    }
    .faq-nav__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .faq-nav__link {
        /* padding: 6px 14px;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 13px; */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 24px;
        border-radius: 8px;
        border: 1px solid var(--clr-brand);
        background: transparent;
        color: var(--clr-brand);
        font-size: 15px;
        font-weight: 500;
        font-family: inherit;
        cursor: pointer;
        transition: background .2s ease, color .2s ease;
        line-height: 1;
        white-space: nowrap;
    }
    .faq-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        cursor: pointer;
        font-family: inherit;
    }
    .faq-nav__link--active {
        background: var(--clr-brand, #da291c);
        color: #fff;
        border-color: var(--clr-brand, #da291c);
        text-decoration: none;
    }
    .faq-nav__link:hover {
        background: rgba(232, 37, 26, .08);
        color: var(--clr-brand);
    }
    .faq-nav__link:focus {
        background-color: var(--clr-brand);
        color: #fff;
    }
    .faq-item__question {
        font-size: 14px;
        padding: 16px 0;
    }
}


/* Media-page */


/* =========================
 Media-page
   ========================= */


/* ── Tab Nav Bar ── */

.mr-tabs-bar {
    background: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mr-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    /* flex-wrap: wrap; */
}

.mr-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid var(--clr-brand);
    background: transparent;
    color: var(--clr-brand);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    line-height: 1;
    white-space: nowrap;
}

.mr-tab:hover {
    background: rgba(232, 37, 26, .08);
}

.mr-tab--active {
    background: var(--clr-brand);
    color: #fff;
}

.mr-tab--active:hover {
    background: var(--clr-brand);
}


/* ── Panel shared ── */

.mr-panel__title {
    font-size: clamp(28px, 3.5vw, 49px);
    font-weight: 400;
    color: #000000;
    margin-bottom: 36px;
}


/* ── TAB 2: Press Release ── */

.mr-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mr-press-card {
    display: flex;
    flex-direction: column;
}

.mr-press-card__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    /* border: 1px solid #e8e8e8; */
    margin-bottom: 14px;
    /* background: #f9f9f9; */
    /* box-shadow: var(--shadow-sm); */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.mr-press-card__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mr-press-card__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-brand);
    text-decoration: underline;
    line-height: 1.45;
}

.mr-press-card__link:hover {
    color: #b01010;
}


/* ── TAB 3: Advertisements ── */

.mr-ads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.mr-ad-card {
    display: flex;
    flex-direction: column;
}

.mr-ad-card__img-wrap {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    /* background: #f5f5f5;
    border: 1px solid #e8e8e8; */
}

.mr-ad-card__img-wrap img {
    width: 100%;
    height: 426px;
    object-fit: cover;
    display: block;
}

.mr-ad-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mr-ad-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-brand);
    text-decoration: none;
}

.mr-ad-card__link:hover {
    text-decoration: underline;
}

.mr-ad-card__dl {
    color: var(--clr-brand);
    font-size: 16px;
    flex-shrink: 0;
    text-decoration: none;
}

.mr-ad-card__dl:hover {
    color: #b01010;
}


/* ── TAB 4: Publications ── */

.mr-pub-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mr-pub-group__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--clr-brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s ease;
}

.mr-pub-group__trigger i {
    transition: transform .3s ease;
}

.mr-pub-group.is-open .mr-pub-group__trigger i {
    transform: rotate(180deg);
}


/* Collapsed group — outline style */

.mr-pub-group:not(.is-open) .mr-pub-group__trigger {
    background: transparent;
    color: #111;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
}

.mr-pub-group__panel {
    padding: 24px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0 0 10px 10px;
    margin-top: -4px;
}

.mr-pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mr-pub-card {
    display: flex;
    flex-direction: column;
}

.mr-pub-card__img-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
}

.mr-pub-card__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mr-pub-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.mr-pub-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-brand);
    text-decoration: none;
    line-height: 1.4;
}

.mr-pub-card__link:hover {
    text-decoration: underline;
}

.mr-pub-card__dl {
    color: var(--clr-brand);
    font-size: 16px;
    flex-shrink: 0;
    text-decoration: none;
}


/* =========================================================
   MEDIA ROOM GALLERY TAB
   ========================================================= */

.mr-gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
}

.mr-gallery-card__img {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mr-gallery-card:hover .mr-gallery-card__img {
    transform: scale(1.05);
}


/* ── Responsive ── */

@media (max-width: 991.98px) {
    .mr-press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mr-ads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mr-pub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .mr-tabs {
        gap: 8px;
    }
    .mr-tab {
        font-size: 11px;
        padding: 10px 7px;
    }
    .mr-ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .mr-press-grid,
    .mr-pub-grid {
        grid-template-columns: 1fr;
    }
    .mr-ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .mr-ad-card__img-wrap img {
        height: 282px;
    }
}

.media-hero {
    /* min-height: 614px;
    position: relative;
    left: 21%;
    width: 93%;
    left: 8%;
    display: flex;
    align-items: center; */
    min-height: 740px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../assets/Media-Room-hero.jpg) center center / cover no-repeat;
}

.media-hero .container,
.media-hero .row {
    min-height: inherit;
}

.media-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
    position: relative;
    left: 32%;
}

.media-hero h1 {
    /* font-size: clamp(46px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: #000; */
    /* margin-bottom: 10px; */
    font-size: 52px;
    position: relative;
    left: -59%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.media-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 25px);
    line-height: 1.45;
    color: #403C43;
    position: relative;
    left: -59%;
    top: -59px;
}

.media-contact+.section {
    padding-top: 72px;
}

@media (max-width: 991.98px) {
    .media-hero {
        min-height: 500px;
        background-position: center center;
    }
    .media-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .media-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .media-hero {
        /* min-height: 260px;
        height: auto;
        background-position: center top; */
        min-height: 260px;
        width: 124%;
        height: auto;
        background-position: center top;
    }
    .media-hero .row {
        transform: none;
        padding: 0;
    }
    .media-hero .inner {
        max-width: 220px;
        padding: 0 0 0 15px;
        margin-left: -161px;
    }
    .media-hero h1 {
        /* font-size: 25px;
        font-weight: 500;
        top: -20px;
        margin-left: 122px; */
        font-size: 26px;
        font-weight: 500;
        top: -20px;
        margin-left: 106px;
    }
    .media-hero p {
        /* font-size: 11px;
        position: absolute;
        line-height: 1.35;
        top: 79%;
        left: -48%;
        margin-left: 123px;
        width: 33%; */
        font-size: 13px;
        position: absolute;
        line-height: 1.35;
        top: 79%;
        left: -48%;
        margin-left: 107px;
        width: 33%;
    }
    .media-contact+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
}


/* Financial-page starts here */

.finance-hero {
    min-height: 553px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../assets/finance-hero.jpg) center center / cover no-repeat;
}

.finance-hero .container,
.finance-hero .row {
    min-height: inherit;
}

.finance-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.finance-hero h1 {
    font-size: 52px;
    position: relative;
    left: -9%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.finance-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.finance-contact+.section {
    padding-top: 72px;
}

@media (max-width: 991.98px) {
    .finance-hero {
        min-height: 500px;
        background-position: center center;
    }
    .finance-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .finance-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .finance-hero {
        min-height: 260px;
        width: 124%;
        height: auto;
        background-position: center top;
    }
    .finance-hero .row {
        transform: none;
        padding: 0;
    }
    .finance-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .finance-hero h1 {
        font-size: 23px;
        left: -57%;
        font-weight: 500;
        top: -7px;
        margin-left: 118px;
    }
    .finance-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .finance-contact+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
}


/* =========================
   Financial Highlights — Tab Section
   ========================= */

.fin-tabs-section {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
}


/* Grey full-bleed strip — only tabs bar */

.fin-tabs-bar {
    background: #f5f5f5;
    padding: 20px 0;
}


/* White area — title + table */

.fin-panel-wrap {
    background: #fff;
    /* padding-bottom: 48px;  */
    padding-top: 40px;
}

.fin-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* flex-wrap: wrap; */
}

.fin-tab {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    border: 1.5px solid var(--clr-brand, #da291c);
    background: transparent;
    color: var(--clr-brand, #da291c);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.fin-tab--active {
    background: var(--clr-brand, #da291c);
    color: #fff;
}

.fin-tab:hover:not(.fin-tab--active) {
    background: rgba(218, 41, 28, 0.08);
}


/* Panel */

.fin-panel__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    color: #000000;
    margin-bottom: 32px;
}

.fin-table-wrap {
    position: relative;
}

.fin-table__note {
    text-align: right;
    font-size: 13px;
    color: #000000;
    margin-bottom: 6px;
}


/* Table */

.fin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.fin-table thead tr {
    background: var(--clr-brand, #da291c);
    color: #fff;
}

.fin-table thead th {
    padding: 12px 10px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.fin-table thead th:first-child {
    text-align: left;
    min-width: 130px;
}

.fin-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.fin-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.fin-table tbody td {
    padding: 14px 10px;
    text-align: center;
    color: #000000;
    vertical-align: middle;
}

.fin-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #000000;
}


/* =========================
   Graphical Presentation Section
   ========================= */

.fin-charts-section {
    padding-top: 56px;
    padding-bottom: 72px;
    background: #fff;
}

.fin-charts__title {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
}

.fin-chart-card {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
    height: 100%;
}

.fin-chart-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}


/* Responsive */

@media (max-width: 767.98px) {
    .fin-tabs {
        gap: 9px;
        padding: 0px 0 0px;
    }
    .fin-panel-wrap {
        background: #fff;
        /* padding-bottom: 48px;  */
        padding-top: 0px;
    }
    .fin-tab {
        font-size: 10px;
        padding: 9px 12px;
    }
    .fin-panel__title {
        font-size: 22px;
        margin-top: 21px;
        margin-bottom: 16px;
    }
    .fin-table {
        font-size: 12px;
    }
    .fin-table thead th,
    .fin-table tbody td {
        padding: 10px 8px;
    }
    .fin-charts__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}


/* Financial-Reports-page */

.report-hero {
    min-height: 553px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../assets/Financial-reports.jpg) center center / cover no-repeat;
}

.report-hero .container,
.report-hero .row {
    min-height: inherit;
}

.report-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.report-hero h1 {
    /* font-size: 52px;
    position: relative;
    left: -9%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000; */
    font-size: 44px;
    position: relative;
    left: -13%;
    top: -30px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.report-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.report-contact+.section {
    padding-top: 72px;
}

@media (max-width: 991.98px) {
    .report-hero {
        min-height: 500px;
        background-position: center center;
    }
    .report-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .report-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .report-hero {
        min-height: 260px;
        width: 124%;
        height: auto;
        background-position: center top;
    }
    .report-hero .row {
        transform: none;
        padding: 0;
    }
    .report-hero .inner {
        max-width: 220px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .report-hero h1 {
        font-size: 19px;
        left: -61%;
        font-weight: 500;
        top: 9px;
        margin-left: 118px;
    }
    .report-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .report-contact+.section {
        padding-top: 48px;
    }
    /* .company {
        margin-top: 0 !important;
    } */
}


/* =========================
   Financial Reports Page Section
   ========================= */

.fin-reports-section {
    padding: 86px 0 96px;
    /* background: #f5f5f5; */
}

.fin-reports-title {
    margin: 0 0 42px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 400;
    color: #111111;
    letter-spacing: -0.02em;
}

.fin-reports-grid {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 30px;
}

.fin-report-card {
    width: 100%;
}

.fin-report-card__media {
    /* background: #ffffff; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12); */
}

.fin-report-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 0.775 / 1;
    object-fit: cover;
}

.fin-report-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 2px 0;
}

.fin-report-card__link,
.fin-report-card__link:hover,
.fin-report-card__link:focus {
    color: #ef1700;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fin-report-card__icon,
.fin-report-card__icon:hover,
.fin-report-card__icon:focus {
    color: #ef1700;
    font-size: 21px;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

@media (max-width: 1199.98px) {
    .fin-reports-title {
        font-size: 52px;
    }
}

@media (max-width: 991.98px) {
    .fin-reports-section {
        padding: 68px 0 80px;
    }
    .fin-reports-title {
        font-size: 46px;
        margin-bottom: 34px;
    }
}

@media (max-width: 767.98px) {
    .fin-reports-section {
        padding: 54px 0 64px;
    }
    .fin-reports-title {
        font-size: 34px;
        margin-bottom: 26px;
    }
    .fin-reports-grid {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 26px;
    }
    .fin-report-card__meta {
        padding-top: 16px;
    }
    .fin-report-card__link,
    .fin-report-card__link:hover,
    .fin-report-card__link:focus {
        font-size: 15px;
    }
    .fin-report-card__icon,
    .fin-report-card__icon:hover,
    .fin-report-card__icon:focus {
        font-size: 25px;
    }
}


/* Corporate */

.corporate-hero {
    min-height: 553px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url(../assets/Corporate.jpg) center center / cover no-repeat;
}

.corporate-hero .container,
.corporate-hero .row {
    min-height: inherit;
}

.corporate-hero .inner {
    max-width: 420px;
    /* padding-left: clamp(32px, 7vw, 105px); */
    padding-top: 24px;
}

.corporate-hero h1 {
    font-size: 46px;
    position: relative;
    left: -13%;
    top: -59px;
    line-height: 1.05;
    font-weight: 500;
    color: #000;
}

.corporate-hero p {
    max-width: 26ch;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.45;
    color: #403C43;
}

.corporate-contact+.section {
    padding-top: 72px;
}

@media (max-width: 991.98px) {
    .corporate-hero {
        min-height: 500px;
        background-position: center center;
    }
    .corporate-hero .inner {
        max-width: 320px;
        padding-left: 24px;
        padding-top: 0;
    }
    .corporate-contact+.section {
        padding-top: 64px;
    }
}

@media (max-width: 575.98px) {
    .corporate-hero {
        min-height: 260px;
        width: 124%;
        height: auto;
        background-position: center top;
    }
    .corporate-hero .row {
        transform: none;
        padding: 0;
    }
    .corporate-hero .inner {
        max-width: 259px;
        padding: 0 0 0 17px;
        margin-left: -19px;
    }
    .corporate-hero h1 {
        /* font-size: 16px;
        left: -51%;
        font-weight: 500;
        top: -14px;
        margin-left: 118px; */
        font-size: 19px;
        left: -50%;
        font-weight: 500;
        top: -14px;
        margin-left: 118px;
    }
    .corporate-hero p {
        font-size: 16px;
        line-height: 1.35;
    }
    .corporate-contact+.section {
        padding-top: 48px;
    }
    .company {
        margin-top: 0 !important;
    }
}


/* =========================
   Financial-Policy Page — Investors / Policyholders Grievance
   ========================= */

.grievance-section {
    padding-top: 64px;
    padding-bottom: 80px;
}

.grievance__page-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.15;
}

.grievance__divider {
    border: none;
    border-top: 1px solid #ccc;
    margin-bottom: 28px;
}

.grievance__section-title {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 28px;
}


/* Two-column contact blocks */

.grievance__contacts {
    margin-bottom: 48px;
}

.grievance__contact-block {
    padding-right: 32px;
}

.grievance__contact-label {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.5;
}

.grievance__contact-text {
    font-size: 13px;
    color: #222;
    line-height: 1.65;
    margin-bottom: 6px;
}

.grievance__contact-text strong {
    font-weight: 600;
}


/* Disclaimer */

.grievance__disclaimer {
    margin-bottom: 40px;
}

.grievance__disclaimer-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.grievance__disclaimer-text {
    font-size: 13px;
    color: #333;
    line-height: 1.75;
    max-width: 820px;
}


/* SECP Banner */

.grievance__secp-banner {
    margin-top: 8px;
}

.grievance__secp-img {
    width: 100%;
    max-width: 780px;
    height: auto;
    display: block;
    border-radius: 4px;
}


/* Responsive */

@media (max-width: 767.98px) {
    .grievance-section {
        padding-top: 40px;
        padding-bottom: 48px;
    }
    .grievance__page-title {
        font-size: 28px;
    }
    .grievance__contact-block {
        padding-right: 0;
        margin-bottom: 32px;
    }
    .grievance__section-title {
        font-size: 16px;
    }
    .grievance__secp-img {
        max-width: 100%;
    }
}


/* =========================
   Final carousel fixes
   ========================= */

.product-strip {
    overflow: hidden;
}

.product-row.owl-carousel {
    display: block;
    padding: 0 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.product-row.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.product-row.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.product-row.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

.product-row.owl-carousel .owl-item>.product-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;
}

@media (max-width: 575.98px) {
    .product-row.owl-carousel {
        padding: 0 10px;
    }
}

.section-container {
    max-width: 1316px;
}

.carousel-section {
    padding: 0 0 34px;
}


/* Desktop breathing room: add left/right padding so card shadows aren't clipped.
   The body has overflow-x:hidden which clips shadows at the edges;
   padding on the section keeps cards away from the clipping boundary. */

@media (min-width: 768px) {
    .carousel-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.section-head {
    margin-bottom: 18px;
}


/* =========================
   Owl Reset / Shared
========================== */


/* .owl-carousel .owl-stage {
    display: flex;
} */

.owl-carousel .owl-item {
    display: flex;
}

.owl-carousel .item {
    width: 100%;
}

.owl-carousel .owl-nav,
.owl-carousel .owl-dots {
    display: none !important;
}


/* =========================
   Testimonials Section
========================== */

.testimonial-card {
    position: relative;
    background: #ffffff;
    /* border: 1px solid #ffffff; */
    border-radius: 18px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03); */
    padding: 32px 28px 26px;
    min-height: 314px;
    border: 2px solid var(--clr-border);
    /* border-radius: 14px; */
    box-shadow: var(--shadow-sm)
}

.testimonial-card:hover {
    transition: all .3s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-mark {
    position: absolute;
    top: 18px;
    left: 26px;
    font-size: 88px;
    line-height: 0.9;
    color: #f4d3d3;
    font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-copy-wrap {
    padding-top: 30px;
}

.testimonial-copy {
    font-size: 16px;
    line-height: 1.9;
    color: #4b4b4b;
    position: relative;
    z-index: 1;
}

.testimonial-divider {
    height: 1px;
    background: #e7e7e7;
    margin: 24px 0 20px;
}

.testimonial-footer {
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 52px;
}

.testimonial-name {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #121212;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 13px;
    line-height: 1.25;
    color: #8e8e8e;
    margin-top: 2px;
}

.testimonial-stars {
    font-size: 18px;
    letter-spacing: 1px;
    color: #f7b500;
    margin-top: 4px;
}


/* =========================
   News Section
========================== */

.news-heading {
    font-size: 40px;
}

.news-title-break {
    display: inline;
}

.news-card {
    background: #ffffff;
    /* border: 1px solid #dddddd; */
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    min-height: 438px;
    border: 2px solid var(--clr-border);
    /* border-radius: 14px; */
    box-shadow: var(--shadow-sm)
}

.news-card:hover {
    transition: all .3s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.news-media {
    min-height: 191px;
    border-radius: 20px 20px 0 0;
}

.news-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.news-tag {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: #7b7b7b;
    font-size: 14px;
    line-height: 1;
    padding: 8px 9px;
    border-radius: 6px;
}

.news-body {
    padding: 16px 22px 24px;
}

.news-date {
    color: #797979;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.news-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.35px;
    margin: 0 0 14px;
    color: #000000;
}

.news-copy {
    color: #797979;
    font-size: 15px;
    line-height: 1.34;
}

.news-cta {
    color: var(--clr-brand);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    margin-top: 38px;
    text-decoration: none;
}

.news-cta:hover {
    text-decoration: underline;
}


/* =========================
   Responsive
========================== */

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 26px;
    }
    .testimonial-card {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .carousel-section {
        padding-bottom: 28px;
    }
    .section-head {
        margin-bottom: 14px;
    }
    .section-title {
        font-size: 26px;
    }
    .section-link {
        font-size: 18px;
    }
    .testimonial-card {
        min-height: 296px;
        padding: 28px 24px 22px;
    }
    .testimonial-quote-mark {
        left: 22px;
        top: 16px;
        font-size: 80px;
    }
    .testimonial-copy-wrap {
        padding-top: 24px;
    }
    .testimonial-copy {
        font-size: 15px;
        line-height: 1.85;
    }
    .news-card {
        min-height: 430px;
    }
    .news-media {
        height: 184px;
    }
    .news-title {
        font-size: 21px;
    }
}

@media (max-width: 575.98px) {
    .news-title-break {
        display: block;
    }
    .section-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .section-title {
        font-size: 24px;
    }
    .testimonial-card {
        min-height: 276px;
        border-radius: 16px;
        padding: 28px 22px 20px;
    }
    .testimonial-copy {
        font-size: 14px;
        line-height: 2;
    }
    .testimonial-divider {
        margin: 18px 0 16px;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
    .testimonial-name {
        font-size: 14px;
    }
    .testimonial-role {
        font-size: 12px;
    }
    .testimonial-stars {
        font-size: 16px;
    }
    .news-card {
        min-height: 408px;
        border-radius: 18px;
    }
    .news-media {
        height: 176px;
    }
    .news-body {
        padding: 14px 18px 20px;
    }
    .news-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .news-copy {
        font-size: 14px;
    }
    .news-cta {
        margin-top: 28px;
        font-size: 13px;
    }
}


/* Property-insurance */

.pi-container {
    max-width: 1220px;
}


/* =========================
   Intro + Tabs
========================== */

.pi-intro-tabs-section {
    padding: 56px 0 0;
}

.pi-intro {
    padding: 0 0 56px;
}

.pi-intro__title {
    font-size: 3rem;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.98px;
    color: #000000;
    margin: 0 0 22px;
}

.pi-intro p {
    margin: 0 0 12px;
    font-size: 1.063rem;
    line-height: 1.45;
    color: #4a4a4a;
    max-width: 1120px;
}

.pi-offerings {
    text-align: center;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
}

.pi-offerings__title {
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.98px;
    color: #000000;
    margin: 0 0 30px;
}

.pi-tabs-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 24px;
    background: #F5F5F5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.pi-tab-btn {
    min-height: 36px;
    padding: 7px 13px;
    border-radius: 7px;
    border: 1px solid #ef2d18;
    background: #fff;
    color: #ef2d18;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: .2s ease;
    white-space: nowrap;
}

.pi-tab-btn:hover,
.pi-tab-btn.is-active {
    background: #ef2d18;
    color: #fff;
}


/* =========================
   Panels
========================== */

.pi-panels-section {
    padding: 54px 0 24px;
}

.pi-panel {
    display: none;
}

.pi-panel.is-active {
    display: block;
}

.pi-copy {
    padding-top: 8px;
}

.pi-panel__title {
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #ef2d18;
    margin: 0 0 20px;
}

.pi-copy p {
    font-size: 1.063rem;
    line-height: 1.48;
    color: #454545;
    margin: 0 0 14px;
    max-width: 565px;
}

.pi-copy__lead {
    padding-bottom: 16px;
    border-bottom: 1px solid #bfbfbf;
    max-width: 500px;
}

.pi-bullets {
    margin: 6px 0 12px 1rem;
    padding: 0;
    color: #444;
}

.pi-bullets li {
    margin: 0 0 7px;
    font-size: 0.95rem;
    line-height: 1.36;
}

.pi-bullets--single {
    margin-top: 8px;
}

.pi-copy__foot {
    padding-top: 8px;
    max-width: 540px;
}

.pi-panel__visual-wrap {
    max-width: 330px;
    margin-left: auto;
    margin-right: 18px;
}

.pi-panel__visual {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.pi-panel__rule {
    height: 1px;
    background: #d7d7d7;
    margin: 44px 0 0;
    width: min(480px, 100%);
}


/* =========================
   Responsive
========================== */

@media (max-width: 1399.98px) {
    .pi-hero {
        min-height: 430px;
    }
    .pi-hero__content-wrap {
        min-height: 430px;
    }
    .pi-hero__shape {
        width: 45%;
        min-width: 470px;
    }
    .pi-tabs-bar {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 24px;
        background: #F5F5F5;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .pi-tab-btn {
        font-size: 14px;
        min-height: 32px;
        padding: 7px 9px;
    }
    .pi-panel__title {
        font-size: 2.5rem;
    }
    .pi-copy p,
    .pi-bullets li {
        font-size: 1.1rem;
    }
    .pi-panels-section {
        padding-top: 42px;
    }
    .pi-panel__visual-wrap {
        max-width: 300px;
        margin: 0 auto;
    }
    .pi-copy {
        text-align: left;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 1.5rem;
        padding-left: 1.rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 1199.98px) {
    .pi-hero {
        min-height: 390px;
    }
    .pi-hero__content-wrap {
        min-height: 390px;
    }
    .pi-hero__shape {
        width: 47%;
        min-width: 420px;
    }
    .pi-intro-tabs-section {
        padding: 56px 0 0;
    }
    .pi-intro {
        padding-bottom: 48px;
    }
    .pi-panel__visual-wrap {
        max-width: 300px;
        margin-right: 0;
    }
    .pi-tab-btn {
        font-size: 10px;
        padding: 7px 11px;
    }
}

@media (max-width: 991.98px) {
    .pi-hero {
        min-height: 330px;
    }
    .pi-hero__content-wrap {
        min-height: 330px;
    }
    .pi-hero__shape {
        width: 50%;
        min-width: 340px;
        clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
    }
    .pi-hero__title {
        font-size: 3rem;
    }
    .pi-intro__title {
        font-size: 2.2rem;
    }
    .pi-offerings__title {
        font-size: 3rem;
    }
    .pi-tabs-bar {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 24px;
        background: #F5F5F5;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .pi-tab-btn {
        font-size: 14px;
        min-height: 34px;
    }
    .pi-panels-section {
        padding-top: 42px;
    }
    .pi-panel__visual-wrap {
        max-width: 300px;
        margin: 0 auto;
    }
    .pi-copy {
        text-align: left;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 1.5rem;
        padding-left: 1.rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .pi-hero {
        min-height: 0;
        background: #f5f5f5;
    }
    .pi-hero__media {
        position: relative;
        height: 260px;
    }
    .pi-hero__image {
        position: absolute;
        inset: 0;
    }
    .pi-hero__shape {
        width: 38%;
        min-width: 135px;
        background: #f5f5f5;
        clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
        box-shadow: 6px 0 0 #ba251f;
    }
    .pi-hero__content-wrap {
        min-height: auto;
        display: block;
        padding-top: 0;
        padding-bottom: 0;
    }
    .pi-hero__content {
        max-width: none;
        margin-left: 0;
        padding: 22px 0 12px;
        text-align: center;
    }
    .pi-hero__title {
        font-size: 2.3rem;
    }
    .pi-intro-tabs-section {
        padding: 56px 0 0;
    }
    .pi-intro {
        padding-bottom: 34px;
    }
    .pi-intro__title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    .pi-intro p {
        font-size: 0.9rem;
        line-height: 1.42;
    }
    .pi-offerings__title {
        font-size: 2.35rem;
        margin-bottom: 22px;
    }
    .pi-tabs-bar {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 20px 24px;
        background: #F5F5F5;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .pi-panel__title {
        font-size: 2rem;
    }
    .pi-copy p,
    .pi-bullets li {
        font-size: 1rem;
    }
    .pi-panel__rule {
        margin-top: 34px;
    }
}

@media (max-width: 575.98px) {
    .pi-hero__media {
        height: 260px;
    }
    .pi-hero__shape {
        width: 34%;
        min-width: 120px;
    }
    .pi-hero__content {
        padding-top: 18px;
        padding-bottom: 8px;
    }
    .pi-hero__title {
        font-size: 2rem;
    }
    .pi-intro-tabs-section {
        padding: 56px 0 0;
    }
    .pi-intro__title {
        font-size: 1.55rem;
    }
    .pi-offerings__title {
        font-size: 1.95rem;
    }
    .pi-panel__title {
        font-size: 1.8rem;
    }
    .pi-tabs-bar {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 24px;
        background: #F5F5F5;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }
    .pi-panel__visual-wrap {
        max-width: 280px;
    }
    .pi-bullets {
        margin-left: 0.95rem;
    }
}


/* =========================
   Property Tabs Full Width Band Fix
========================== */

@media (max-width: 767.98px) {
    .pi-tab-btn {
        font-size: 10px;
        padding: 7px 10px;
    }
}

@media (max-width: 575.98px) {
    .pi-tab-btn {
        font-size: 14px;
        min-height: 32px;
        padding: 7px 9px;
    }
}


/* Travel-Insurance */


/* =========================
   WHY CHOOSE SECTION
   ========================= */

.ti-why {
    padding-top: 64px;
    padding-bottom: 64px;
}

.ti-why__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ti-why__text {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.75;
    max-width: 480px;
    font-weight: 400;
}

.ti-why__card-wrap {
    max-width: 420px;
    width: 100%;
}

.ti-why__img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

@media (max-width: 991.98px) {
    .ti-why {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .ti-why__card-wrap {
        max-width: 340px;
        margin: 0 auto;
    }
}


/* =========================
   SELECT YOUR PLAN SECTION
   ========================= */

.ti-plans {
    padding-top: 70px;
    padding-bottom: 68px;
    background: #fff;
}

.ti-plans__head {
    margin-bottom: 34px;
}

.ti-section-title {
    font-size: clamp(2.4rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 400;
    color: #121212;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.ti-section-sub {
    font-size: 1.02rem;
    line-height: 1.45;
    color: #555;
    font-weight: 400;
    max-width: 690px;
    margin: 0 auto;
}

.ti-plan-row {
    --bs-gutter-y: 24px;
}

.ti-plan-card {
    position: relative;
    height: 267px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(90deg, #a82525 0%, #a82525 46%, #df372b 100%);
    box-shadow: none;
    isolation: isolate;
}

.ti-plan-card::before,
.ti-plan-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}

.ti-plan-card::before {
    background-image: url('../assets/Union-36.png');
    background-position: top right;
    background-size: 176% auto;
    opacity: .06;
    right: -36px;
}

.ti-plan-card__inner {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 28px 24px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ti-plan-card__icon-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    flex: 0 0 auto;
}

.ti-plan-card__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ti-plan-card__name {
    color: #fff;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.15;
    font-weight: 400;
    margin: 0 0 12px;
    max-width: 92%;
}

.ti-plan-card__desc {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.42;
    margin: 0;
    max-width: 95%;
}

@media (max-width: 1199.98px) {
    .ti-plans {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ti-plan-card {
        min-height: 250px;
        height: 100%;
    }
    .ti-plan-card__inner {
        padding: 26px 22px 22px;
    }
    .ti-plan-card__icon-wrap {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
    }
    .ti-plan-card__name {
        max-width: 100%;
    }
    .ti-plan-card__desc {
        font-size: 0.92rem;
        max-width: 100%;
    }
    .ti-plan-card::before {
        background-size: 175% auto;
        opacity: .06;
    }
}

@media (max-width: 767.98px) {
    .ti-plans {
        padding-top: 46px;
        padding-bottom: 46px;
    }
    .ti-plans__head {
        margin-bottom: 24px;
    }
    .ti-section-title {
        font-size: 2.05rem;
        margin-bottom: 10px;
    }
    .ti-section-sub {
        font-size: 0.95rem;
        max-width: 540px;
    }
    .ti-plan-card {
        min-height: 228px;
        border-radius: 18px;
    }
    .ti-plan-card__inner {
        padding: 24px 20px 20px;
    }
    .ti-plan-card__icon-wrap {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    .ti-plan-card::before {
        background-size: 150% auto;
        background-position: top right -18px;
        opacity: .08;
        right: 0;
    }
    .ti-plan-card__name {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .ti-plan-card__desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 575.98px) {
    .ti-plans {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .ti-section-title {
        font-size: 1.95rem;
    }
    .ti-section-sub {
        font-size: 0.9rem;
    }
    .ti-plan-card {
        min-height: 210px;
        height: auto;
        border-radius: 18px;
    }
    .ti-plan-card__inner {
        padding: 22px 18px 20px;
    }
    .ti-plan-card__icon-wrap {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    .ti-plan-card::before {
        background-size: 180% auto;
        background-position: top right -24px;
        opacity: .09;
    }
    .ti-plan-card__name {
        font-size: 1.1rem;
    }
    .ti-plan-card__desc {
        font-size: 0.86rem;
        line-height: 1.38;
    }
}


/* =========================
   BENEFIT TABLE SECTION
   ========================= */

.ti-benefit {
    padding-top: 56px;
    padding-bottom: 64px;
    background: #fafafa;
}


/* Tab Buttons */

.ti-benefit-tabs {
    flex-wrap: wrap;
    gap: 8px !important;
}

.ti-tab-btn {
    padding: 9px 22px;
    border-radius: 8px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    color: #444;
    font-size: 0.9rem;
    font-family: var(--ff-base);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.ti-tab-btn:hover {
    border-color: var(--clr-brand);
    color: var(--clr-brand);
}

.ti-tab-btn--active {
    background: var(--clr-brand);
    border-color: var(--clr-brand);
    color: #fff;
}

.ti-tab-btn--active:hover {
    color: #fff;
}


/* Table */

.ti-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    font-family: var(--ff-base);
    min-width: 580px;
}

.ti-table__header-main th {
    background: var(--clr-brand);
    color: #fff;
    text-align: center;
    padding: 13px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-radius: 0;
}

.ti-table__header-sub th {
    background: #5a5a5a;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}


/* .ti-table__header-sub th:first-child {
    text-align: left;
} */

.ti-table__header-cols th {
    background: #888;
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.ti-table__header-cols th:first-child {
    background: #5a5a5a;
}

.ti-table__limits td {
    background: #e8e8e8;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    padding: 7px 16px;
}

.ti-table__limits td:first-child {
    background: #f2f2f2;
}


/* Category rows */

.ti-table__cat td {
    background: #f0f0f0;
    font-weight: 700;
    font-size: 0.8rem;
    color: #222;
    padding: 9px 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-top: 2px solid #ddd;
}


/* Data rows */

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits) {
    border-bottom: 1px solid #efefef;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits):hover {
    background: #fafafa;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits) td {
    padding: 9px 16px;
    color: #333;
    vertical-align: middle;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits) td:first-child {
    font-weight: 400;
    color: #444;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits) td:not(:first-child) {
    text-align: center;
    font-weight: 500;
    color: #222;
}


/* Alternating rows */

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__limits):nth-child(even) {
    background: #f9f9f9;
}


/* =========================
   BENEFIT TABLE PIXEL MATCH OVERRIDES
   ========================= */

.ti-benefit {
    padding-top: 58px;
    padding-bottom: 64px;
    background: #fafafa;
}

.ti-benefit .container {
    max-width: 1240px;
}

.ti-benefit .text-center {
    margin-bottom: 22px !important;
}

.ti-benefit-tabs {
    flex-wrap: wrap;
    gap: 10px !important;
    margin-bottom: 26px !important;
}

.ti-tab-btn {
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid #ef2d18;
    background: #fff;
    color: #ef2d18;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ti-tab-btn:hover {
    /* border-color: #d71d14;
    color: #d71d14; */
    background: #ef2d18;
    color: #fff;
}

.ti-tab-btn--active {
    background: #d9251a;
    border-color: #d9251a;
    color: #fff;
    font-weight: 700;
}

.ti-tab-btn--active:hover {
    color: #fff;
}

.ti-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

.ti-table {
    width: 100%;
    min-width: 1210px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    background: #fff;
    margin: 0;
}

.ti-col-feature {
    width: 50%;
}

.ti-col-plan {
    width: 25%;
}

.ti-table th,
.ti-table td {
    padding: 6px 14px;
    border: 0 !important;
    line-height: 1.15;
    vertical-align: middle;
}

.ti-table__header-main {
    border-radius: 20px;
}

.ti-table__header-main th:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.ti-table__header-main th {
    background: #e10600 !important;
    color: #fff !important;
    text-align: center;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.ti-table__header-sub th {
    background: #9f9f9f !important;
    color: #fff !important;
    text-align: center;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.015em;
}

.ti-table__header-cols th {
    background: #b6b6b6 !important;
    color: #fff !important;
    text-align: center;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 12px;
}

.ti-table__header-cols th:first-child {
    background: #f2f2f2 !important;
    color: transparent !important;
}

.ti-table__limits td {
    background: #e7e7e7 !important;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #3a3a3a !important;
    padding: 4px 16px;
}

.ti-table__limits td:first-child {
    background: #f5f5f5 !important;
    color: transparent !important;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__assist):nth-child(odd) td {
    background: #f0f0f0 !important;
}

.ti-table tbody tr:not(.ti-table__cat):not(.ti-table__assist):nth-child(even) td {
    background: #e8e8e8 !important;
}

.ti-table__cat td {
    background: #c9c9c9 !important;
    color: #101010 !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

.ti-table td:first-child {
    color: #292929;
    text-align: left;
}

.ti-table td:nth-child(2),
.ti-table td:nth-child(3) {
    text-align: center;
    white-space: nowrap;
    color: #3a3a3a;
}

.ti-table__assist td {
    background: #aeaeae !important;
    color: #fff !important;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.ti-table__assist td:first-child {
    background: #f3f3f3 !important;
    color: transparent !important;
}

@media (max-width: 991.98px) {
    .ti-benefit {
        padding-top: 48px;
        padding-bottom: 56px;
    }
    .ti-table {
        min-width: 1080px;
        font-size: 12px;
    }
    .ti-table__header-main th {
        font-size: 15px;
    }
    .ti-table__cat td,
    .ti-table__assist td {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .ti-benefit-tabs {
        gap: 8px !important;
    }
    .ti-tab-btn {
        font-size: 11px;
        min-height: 38px;
        padding: 8px 14px;
    }
    .ti-table {
        min-width: 980px;
    }
    .ti-table th,
    .ti-table td {
        padding: 5px 12px;
    }
}


/* =========================
   Travel Calculator Section
========================== */

.travel-calculator-section {
    padding: 0 0 5.75rem;
}

.travel-calculator-container {
    max-width: 1110px;
}

.travel-calculator-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #ececec;
}

.travel-calculator-inner {
    padding: 1.95rem 2.95rem 1.55rem;
}

.travel-calculator-title {
    font-size: 1.18rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1e2431;
}

.travel-calculator-rule {
    margin: 1rem 0 1.45rem;
    border-color: #e4e6ea;
    opacity: 1;
}

.travel-radio-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.travel-label-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3b4352;
}

.travel-calculator-form .form-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 0.9rem;
}

.travel-calculator-form .form-check-label {
    font-size: 0.9rem;
    color: #2c3240;
}

.travel-calculator-form .form-check-input {
    width: 0.95rem;
    height: 0.95rem;
    margin-top: 0;
    box-shadow: none !important;
    border-color: #c7cfda;
}

.travel-calculator-form .form-check-input:checked {
    background-color: #ef2d18;
    border-color: #ef2d18;
}

.travel-form-label {
    display: block;
    font-size: 0.72rem;
    line-height: 1.3;
    color: #777f8e;
    margin-bottom: 0.5rem;
}

.travel-form-control {
    min-height: 3.05rem;
    border-color: #cfd6e2;
    border-radius: 0.55rem;
    box-shadow: none !important;
    font-size: 0.92rem;
    color: #212734;
    padding-inline: 0.8rem;
    background-color: #fff;
}

.travel-form-control:focus {
    border-color: #9bb7de;
}

.travel-search-wrap,
.travel-date-wrap {
    position: relative;
}

.travel-search-wrap i,
.travel-date-wrap i {
    position: absolute;
    right: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8d95a5;
    font-size: 1.1rem;
    pointer-events: none;
}

.travel-date-wrap .travel-form-control,
.travel-search-wrap .travel-form-control {
    padding-right: 2.5rem;
}

.travel-days-input {
    max-width: 9.2rem;
    font-weight: 700;
    background: #eef4fb;
    border-color: #b7d3f5;
}

.travel-toggle-row {
    padding-top: 1.35rem;
    margin-top: 0.35rem;
    border-top: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.travel-toggle-copy {
    font-size: 0.85rem;
    color: #8c93a0;
}

.travel-switch-wrap .form-check-input {
    width: 2.95rem;
    height: 1.6rem;
    margin: 0;
    border-color: #d8dbe2;
    box-shadow: none;
    background-color: #e1e3e8;
}

.travel-switch-wrap .form-check-input:checked {
    background-color: #ef2d18;
    border-color: #ef2d18;
}

.travel-total-bar {
    background: #c22b24;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.35rem;
    align-items: center;
    padding: 1.75rem 2.95rem;
}

.travel-total-label {
    font-size: 0.98rem;
    font-weight: 500;
}

.travel-total-price {
    font-size: clamp(2.25rem, 3.5vw, 3.1rem);
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: -0.03em;
}

.travel-book-btn {
    min-width: 7.55rem;
    min-height: 2.45rem;
    background: #fff;
    color: #ef2d18;
    font-size: 0.86rem;
    font-weight: 800;
    border-radius: 0.5rem;
    padding: 0.7rem 1.05rem;
    border: 0;
}

.travel-book-btn:hover {
    background: #fff;
    color: #d9251a;
}

.travel-senior-note {
    padding: 1.75rem 0 0;
    max-width: 70rem;
}

.travel-senior-title {
    color: #ef2d18;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 0.8rem;
}

.travel-senior-list li {
    font-size: 0.94rem;
    color: #1f1f1f;
    margin-bottom: 0.8rem;
}

@media (max-width: 991.98px) {
    .travel-benefit-section .travel-page-container {
        max-width: 100%;
    }
    .travel-section-head {
        margin-bottom: 2.2rem;
    }
    .travel-tab-btn {
        min-width: 11.25rem;
        height: 4rem;
        font-size: 0.95rem;
    }
    .travel-calculator-inner {
        padding: 1.75rem 1.5rem 1.35rem;
    }
    .travel-total-bar {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .travel-benefit-section {
        padding-bottom: 4rem;
    }
    .travel-section-heading {
        font-size: 2.6rem;
    }
    .travel-section-subtitle {
        font-size: 0.98rem;
        padding-top: 0.7rem;
    }
    .travel-benefit-tabs {
        gap: 0.7rem !important;
        margin-bottom: 1.5rem;
    }
    .travel-tab-btn {
        min-width: calc(50% - 0.5rem);
        height: 3.5rem;
        font-size: 0.9rem;
        border-radius: 0.7rem;
    }
    .travel-benefit-table {
        min-width: 960px;
    }
    .travel-calculator-section {
        padding-bottom: 4.25rem;
    }
    .travel-calculator-title {
        font-size: 1.05rem;
    }
    .travel-label-title {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .travel-section-head {
        margin-bottom: 1.75rem;
    }
    .travel-section-heading {
        font-size: 2.2rem;
    }
    .travel-benefit-tabs {
        flex-direction: column;
        align-items: stretch !important;
    }
    .travel-tab-btn {
        width: 100%;
        min-width: 0;
        height: 3.25rem;
        font-size: 0.92rem;
    }
    .travel-benefit-table {
        min-width: 860px;
    }
    .travel-benefit-table th,
    .travel-benefit-table td {
        font-size: 0.74rem;
        padding: 0.3rem 0.7rem;
    }
    .travel-calculator-card {
        border-radius: 0.85rem;
    }
    .travel-calculator-inner {
        padding: 1.4rem 1rem 1.1rem;
    }
    .travel-form-control {
        min-height: 2.85rem;
        font-size: 0.88rem;
    }
    .travel-days-input {
        max-width: 100%;
    }
    .travel-toggle-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .travel-total-bar {
        padding: 1.2rem 1rem 1.3rem;
    }
    .travel-total-price {
        font-size: 2rem;
    }
    .travel-book-btn {
        width: 100%;
        min-width: 0;
    }
    .travel-senior-title {
        font-size: 1rem;
    }
    .travel-senior-list li {
        font-size: 0.88rem;
    }
}


/* Motor-Insurance */


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

.mi-faq-section {
    padding: 60px 0 80px;
    background: #fff;
}

.mi-faq__heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #111;
    line-height: 1.25;
}

.faq-accordion-wrap {
    border-top: 1.5px solid #e0e0e0;
}

.faq-accordion-item {
    border-bottom: 1.5px solid #e0e0e0;
}

.faq-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    transition: color 0.2s;
}

.faq-accordion-btn:hover {
    color: #c0392b;
}

.faq-accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.25s;
}

.faq-accordion-btn[aria-expanded="true"] .faq-accordion-icon {
    color: #c0392b;
}

.faq-accordion-body {
    display: none;
    padding: 0 0 18px 0;
    animation: faqSlideIn 0.25s ease;
}

.faq-accordion-body p {
    margin: 0;
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== PREMIUM BANNER ===== */

.mi-premium-banner-wrap {
    margin-top: 28px;
    margin-bottom: 10px;
}

.mi-premium-banner {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.mi-premium-banner__bg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    min-height: 80px;
    object-fit: cover;
}

.mi-premium-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(16px, 4%, 44px);
}

.mi-premium-banner__left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mi-premium-banner__rate {
    display: inline-block;
    background: #fff;
    color: #222;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 3px;
}

.mi-premium-banner__detail {
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(0.72rem, 1.5vw, 0.9rem);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
}

.mi-premium-banner__right {
    text-align: right;
    flex-shrink: 0;
}

.mi-premium-banner__label {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.72rem, 1.5vw, 0.9rem);
    margin-bottom: 2px;
    white-space: nowrap;
}

.mi-premium-banner__amount {
    display: block;
    color: #fff;
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;
}


/* Mobile adjustments */

@media (max-width: 576px) {
    .mi-premium-banner__bg {
        min-height: 110px;
        object-fit: cover;
        object-position: left center;
    }
    .mi-premium-banner__overlay {
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding: 10px 14px;
    }
    .mi-premium-banner__right {
        text-align: left;
    }
    .mi-faq__heading {
        font-size: 1.4rem;
    }
    .mi-premium-banner__rate {
        display: inline-block;
        background: #fff;
        color: #222;
        font-size: 0.8rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 5px;
        width: fit-content;
        margin-bottom: 3px;
    }
    .mi-premium-banner__detail {
        color: rgba(255, 255, 255, 0.93);
        font-size: clamp(0.6rem, 1.5vw, 0.9rem);
        margin: 0;
        line-height: 1.5;
        white-space: nowrap;
    }
    .mi-premium-banner__label {
        display: block;
        color: rgba(255, 255, 255, 0.88);
        font-size: clamp(0.72rem, 1.5vw, 0.9rem);
        margin-bottom: 2px;
        white-space: nowrap;
    }
    .mi-premium-banner__amount {
        display: block;
        color: #fff;
        font-size: clamp(1.3rem, 3.5vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.5px;
        line-height: 1;
        white-space: nowrap;
    }
}


/* -------------------------
   Vehicle Type Tabs
   ------------------------- */

.mi-vtabs {
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.mi-vtabs__bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 18px 16px;
    flex-wrap: wrap;
}

.mi-vtab {
    padding: 10px 26px;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.mi-vtab:hover {
    border-color: #d40000;
    color: #d40000;
}

.mi-vtab--active,
.mi-vtab--active:hover {
    background: #d40000;
    color: #fff;
    border-color: #d40000;
}


/* -------------------------
   Content Section
   ------------------------- */

.mi-content {
    padding: 56px 0 40px;
    background: #fff;
}

.mi-content__title {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.mi-content__tagline {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 18px;
    line-height: 1.5;
}

.mi-content__text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 14px;
}

.mi-content__side-img {
    width: 100%;
    height: 360px;
    background: #111;
    border-radius: 14px;
    margin-top: 20px;
}

.mi-covers__title {
    font-size: 28px;
    font-weight: 400;
    color: #d40000;
    margin: 40px 0 22px;
    line-height: 1.25;
}

.mi-covers__subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
}

.mi-covers__subtitle--red {
    color: #d40000;
    font-size: 22px;
    font-weight: 400;
    margin-top: 36px;
    margin-bottom: 14px;
}

.mi-covers__list ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 16px;
}

.mi-covers__list ul li {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.mi-covers__bullets {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 18px;
}

.mi-covers__bullets li {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}


/* -------------------------
   Motor Calculator
   ------------------------- */

.mi-calculator {
    padding: 50px 0 70px;
    background: #f0f2f5;
}

.mi-calc-card {
    background: #fff;
    border-radius: 18px;
    padding: 44px 42px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8eaed;
    max-width: 860px;
    margin: 0 auto;
}

.mi-calc__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 6px;
}

.mi-calc__sub {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.mi-calc__hr {
    border: none;
    border-top: 1px solid #e0e3e8;
    margin: 22px 0 28px;
}

.mi-calc__label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 8px;
}

.mi-calc__label-hint {
    font-weight: 400;
    color: #999;
    font-size: 12.5px;
}

.mi-calc__select-wrap {
    position: relative;
}

.mi-calc__select {
    width: 100%;
    padding: 13px 42px 13px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14.5px;
    color: #333;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.mi-calc__select:focus {
    outline: none;
    border-color: #d40000;
    box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.08);
}

.mi-calc__select--dark {
    background-color: #1a2332;
    color: #fff;
    border-color: #1a2332;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.mi-calc__input {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14.5px;
    color: #333;
    background: #fff;
}

.mi-calc__input:focus {
    outline: none;
    border-color: #d40000;
    box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.08);
}


/* Tracker row */

.mi-calc__tracker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 18px;
    background: #fff;
}

.mi-calc__tracker-text {
    font-size: 14.5px;
    color: #333;
}


/* Reuse toggle from travel page (mi- prefix version) */

.mi-toggle {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.mi-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.mi-toggle__track {
    display: block;
    width: 44px;
    height: 24px;
    background: #ddd;
    border-radius: 12px;
    position: relative;
    transition: background 0.25s;
}

.mi-toggle__track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.mi-toggle input:checked+.mi-toggle__track {
    background: #d40000;
}

.mi-toggle input:checked+.mi-toggle__track::after {
    transform: translateX(20px);
}


/* Coverage pill */

.mi-calc__coverage-pill {
    padding: 13px 18px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #333;
}


/* Premium bar */

.mi-calc__premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #d40000 0%, #b91c1c 50%, #7f1d1d 100%);
    border-radius: 14px;
    padding: 26px 32px;
    margin-top: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.mi-calc__premium-left {
    color: #fff;
}

.mi-calc__rate-badge {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.mi-calc__premium-detail {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 3px 0 0;
}

.mi-calc__premium-right {
    text-align: right;
}

.mi-calc__premium-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.mi-calc__premium-amount {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}


/* CTA Button */

.mi-calc__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    background: #d40000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.2s;
}

.mi-calc__cta:hover {
    background: #b91c1c;
    color: #fff;
}


/* -------------------------
   Responsive — Motor Page
   ------------------------- */

@media (max-width: 991.98px) {
    .mi-hero {
        min-height: 340px;
    }
    .mi-hero__inner {
        min-height: 340px;
    }
    .mi-hero__title {
        font-size: 34px;
    }
    .mi-hero__media {
        width: 55%;
    }
    .mi-content__title {
        font-size: 30px;
    }
    .mi-covers__title {
        font-size: 24px;
    }
    .mi-calc-card {
        padding: 32px 28px;
    }
    .mi-calc__premium {
        padding: 22px 24px;
    }
    .mi-calc__premium-amount {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .mi-hero {
        min-height: auto;
    }
    .mi-hero__inner {
        flex-direction: column;
        min-height: auto;
    }
    .mi-hero__text {
        padding: 40px 20px 30px;
        max-width: 100%;
    }
    .mi-hero__title {
        font-size: 30px;
    }
    .mi-hero__media {
        position: relative;
        width: 100%;
        height: 260px;
    }
    .mi-vtabs__bar {
        gap: 8px;
        padding: 14px 12px;
    }
    .mi-vtab {
        padding: 8px 18px;
        font-size: 13px;
    }
    .mi-content {
        padding: 40px 0 30px;
    }
    .mi-content__title {
        font-size: 26px;
    }
    .mi-covers__title {
        font-size: 22px;
    }
    .mi-covers__subtitle--red {
        font-size: 20px;
    }
    .mi-calculator {
        padding: 40px 0 50px;
    }
    .mi-calc-card {
        padding: 24px 18px;
    }
    .mi-calc__title {
        font-size: 20px;
    }
    .mi-calc__premium {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .mi-calc__premium-right {
        text-align: left;
        margin-top: 8px;
    }
    .mi-calc__premium-amount {
        font-size: 34px;
    }
}

@media (max-width: 575.98px) {
    .mi-hero__title {
        font-size: 26px;
    }
    .mi-hero__subtitle {
        font-size: 13.5px;
    }
    .mi-hero__media {
        height: 220px;
    }
    .mi-vtab {
        padding: 7px 14px;
        font-size: 12.5px;
    }
    .mi-content__title {
        font-size: 24px;
    }
    .mi-covers__title {
        font-size: 20px;
        margin-top: 30px;
    }
    .mi-calc__premium-amount {
        font-size: 28px;
    }
    .mi-calc__cta {
        font-size: 14px;
        padding: 15px;
    }
}


/* =========================================================
   END — MOTOR INSURANCE PAGE
   ========================================================= */


/* Marine-health */


/* ===================================================
   Marine Cargo Insurance Page Styles
   Prefix: mci-
   =================================================== */

.mci-page {
    overflow-x: hidden;
}


/* ---------- Hero ---------- */

.mci-hero {
    position: relative;
    min-height: 420px;
    background: url('../assets/marine-hero.png') center center / cover no-repeat;
    background-color: #1a3a5c;
    display: flex;
    align-items: flex-end;
}

.mci-hero__overlay {
    width: 100%;
    padding: 60px 0 50px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
}

.mci-hero__title {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

@media (max-width: 767.98px) {
    .mci-hero {
        min-height: 280px;
    }
    .mci-hero__overlay {
        padding: 40px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .mci-hero {
        min-height: 220px;
    }
    .mci-hero__title {
        font-size: 2rem;
    }
}


/* ---------- Sections ---------- */

.mci-section {
    padding: 56px 0;
}

.mci-section--alt {
    background: #f9f9f9;
}

.mci-section__heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.25;
}

.mci-section__heading--red {
    color: #DA291C;
}

.mci-section__rule {
    border: none;
    border-top: 3px solid #DA291C;
    width: 60px;
    margin: 0 0 24px;
}

.mci-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

.mci-section p strong {
    color: #222;
}


/* ---------- Feature Cards (Clause A/B/C images) ---------- */

.mci-feature-card {
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 240px;
}

.mci-feature-card__img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.mci-feature-card__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    background: linear-gradient(135deg, #DA291C 0%, #a93226 100%);
    color: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 16px;
}

.mci-feature-card__placeholder--dark {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f30 100%);
}

.mci-feature-card__placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.mci-feature-card__placeholder p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .mci-feature-card {
        margin-top: 20px;
        min-height: 200px;
    }
}


/* ---------- Table ---------- */

.mci-table {
    font-size: 0.9rem;
}

.mci-table thead {
    background: #DA291C;
    color: #fff;
}

.mci-table thead th {
    font-weight: 600;
    padding: 12px 14px;
    border-color: #c0392b;
}

.mci-table tbody td {
    padding: 10px 14px;
    vertical-align: middle;
    color: #333;
}

.mci-table tbody tr:nth-child(even) {
    background: #fafafa;
}


/* ---------- Responsive ---------- */

@media (max-width: 575.98px) {
    .mci-section {
        padding: 40px 0;
    }
    .mci-section__heading {
        font-size: 1.4rem;
    }
    .mci-table {
        font-size: 0.78rem;
    }
    .mci-table thead th,
    .mci-table tbody td {
        padding: 8px 10px;
    }
}


/* Global-health */


/* HERO */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    display: block;
    max-height: 420px;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-bubble {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50px 50px 50px 0;
    padding: 28px 36px;
    margin-left: 5%;
    max-width: 320px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.hero-text-bubble h1 {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}


/* WHAT IS */

.section-what {
    padding: 70px 0 50px;
    background: #fff;
}

.section-what h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-what p {
    color: var(--text-mid);
    line-height: 1.78;
    font-size: 0.95rem;
    margin-bottom: 13px;
}

.doctor-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.partner-logo {
    height: 58px;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

.partner-name {
    color: var(--red);
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.partner-text {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.partner-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

@media(max-width:575px) {
    .partner-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* COVERAGE */

.section-coverage {
    padding: 70px 0;
    background: var(--gray-light);
}

.section-coverage h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 38px;
}

.coverage-heading {
    color: var(--red);
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 13px;
}

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

.cov-list li {
    padding: 4px 0 4px 16px;
    position: relative;
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.cov-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

.coverage-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 330px;
}

.cov-extra-title {
    color: var(--red);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    margin: 22px 0 4px;
    line-height: 1.35;
}


/* PLAN CARDS — all 4 static */

.section-plans {
    padding: 70px 0;
    background: #fff;
}

.section-plans h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.plans-outer {
    display: flex;
    align-items: stretch;
}


/* thin red accent bar on far left */

.plans-red-bar {
    width: 32px;
    background: var(--red);
    flex-shrink: 0;
}


/* red bg column containing all ATM cards */

.plans-cards-col {
    background: var(--red);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    gap: 14px;
}

.plan-atm-img {
    width: 170px;
    display: block;
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}


/* right: plan detail rows */

.plans-details-col {
    flex: 1;
    padding: 0 44px;
    min-width: 0;
}

.plan-row {
    padding: 26px 0;
    border-bottom: 1px solid var(--gray-mid);
}

.plan-row:last-child {
    border-bottom: none;
}

.plan-row-name {
    color: var(--red);
    /* font-family: 'Raleway', sans-serif; */
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.plan-row-limit {
    font-size: 1.7rem;
    font-weight: 700;
    /* font-family: 'Raleway', sans-serif; */
    margin-bottom: 2px;
}

.plan-row-sublabel {
    font-size: 0.84rem;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.plan-row-divider {
    border: none;
    border-top: 2px solid var(--red);
    margin: 10px 0;
}

.plan-row-price {
    font-size: 0.87rem;
    color: var(--text-mid);
}

@media(max-width:767px) {
    .plans-outer {
        flex-direction: column;
    }
    .plans-red-bar {
        display: none;
    }
    .plans-cards-col {
        flex-direction: row;
        overflow-x: auto;
        padding: 14px;
        gap: 10px;
        width: 100%;
    }
    .plan-atm-img {
        width: 130px;
    }
    .plans-details-col {
        padding: 16px 12px 0;
    }
}

@media(max-width:480px) {
    .plan-atm-img {
        width: 100px;
    }
}


/* COMPARISON TABLE */

.section-table {
    padding: 70px 0;
    background: var(--gray-light);
}

.section-table h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 32px;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-top-img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 28px;
    display: block;
}

.span-cell {
    text-align: center !important;
    background: #fdf0f0 !important;
    color: var(--text-dark) !important;
}

.check {
    color: var(--red);
    font-size: 1rem;
    text-align: center;
}

.table-note {
    color: var(--red);
    font-size: 0.82rem;
    margin-top: 12px;
    font-style: italic;
}


/* CALCULATOR */

.section-calc {
    padding: 70px 0;
    background: #fff;
}

.calc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
    padding: 40px 36px;
    max-width: 620px;
    margin: 0 auto;
}

.calc-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.calc-subtitle {
    color: var(--red);
    font-size: 0.87rem;
    margin-bottom: 26px;
}

.calc-label {
    font-size: 0.81rem;
    color: var(--text-mid);
    margin-bottom: 5px;
    display: block;
}

.calc-input {
    width: 100%;
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    padding: 10px 13px;
    font-size: 0.93rem;
    outline: none;
    transition: border-color .2s;
}

.calc-input:focus {
    border-color: var(--red);
}

.calc-select {
    width: 100%;
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    padding: 10px 13px;
    font-size: 0.93rem;
    appearance: none;
    cursor: pointer;
    outline: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 13px center #fff;
}

.calc-result {
    background: var(--red);
    border-radius: 8px;
    padding: 18px 22px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.gross-badge {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.77rem;
    display: inline-block;
    margin-bottom: 4px;
}

.prem-label {
    font-size: 0.87rem;
}

.prem-val {
    font-size: 1.05rem;
    font-weight: 700;
}

.total-label {
    font-size: 0.77rem;
    opacity: .9;
    text-align: right;
}

.total-val {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: right;
}

.ben-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-mid);
    font-size: 0.87rem;
}

.ben-label {
    color: var(--text-mid);
}

.ben-val {
    font-weight: 600;
    text-align: right;
}

.btn-proceed {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    margin-top: 24px;
    font-family: 'Raleway', sans-serif;
    transition: background .2s;
}

.btn-proceed:hover {
    background: var(--red-dark);
}

@media(max-width:480px) {
    .calc-card {
        padding: 26px 18px;
    }
    .calc-result {
        flex-direction: column;
    }
    .total-label,
    .total-val {
        text-align: left;
    }
}


/* FAQ */

.section-faq {
    padding: 70px 0;
    background: var(--gray-light);
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 28px;
}

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

.faq-nav li {
    padding: 6px 0;
    font-size: 0.93rem;
    cursor: pointer;
    color: var(--text-mid);
    transition: color .2s;
}

.faq-nav li:hover,
.faq-nav li.active {
    color: var(--red);
    text-decoration: underline;
}

.faq-item {
    border-top: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 0.93rem;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--text-mid);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 16px;
    color: var(--text-mid);
    font-size: 0.87rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}


/* health-Insurance */


/* ====== HERO ====== */

.hi-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #eaeaea;
}

.hi-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.hi-hero__white-blob {
    position: absolute;
    left: -2%;
    top: 0;
    width: 42%;
    height: 100%;
    background: #fff;
    border-radius: 0 55% 55% 0 / 0 50% 50% 0;
    z-index: 2;
}

@media (max-width: 991px) {
    .hi-hero__white-blob {
        width: 55%;
        border-radius: 0 60% 60% 0 / 0 50% 50% 0;
    }
}

@media (max-width: 767px) {
    .hi-hero {
        min-height: 260px;
    }
    .hi-hero__white-blob {
        width: 65%;
    }
}

@media (max-width: 480px) {
    .hi-hero {
        min-height: 220px;
    }
    .hi-hero__white-blob {
        width: 75%;
    }
}

.hi-hero__text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    padding-left: clamp(24px, 5vw, 80px);
    max-width: 38%;
}

@media (max-width: 767px) {
    .hi-hero__text {
        max-width: 60%;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .hi-hero__text {
        max-width: 72%;
        padding-left: 16px;
    }
}

.hi-hero__title {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin: 0 0 12px;
}

.hi-hero__sub {
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    color: #555;
    margin: 0;
    font-weight: 500;
}


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

.hi-intro {
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--clr-border);
}

.hi-intro__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.hi-intro__text {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 400;
}

.hi-intro__text--red {
    color: var(--clr-brand);
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.7;
}

.hi-intro__extra {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.hi-intro__extra.is-open {
    max-height: 500px;
}

.hi-see-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-brand);
    font-size: 0.97rem;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-top: 10px;
}

.hi-see-more:hover {
    text-decoration: underline;
}


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

.hi-coverage {
    padding: 60px 0 20px;
}

.hi-coverage__head {
    text-align: center;
    margin-bottom: 48px;
}

.hi-coverage__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.hi-coverage__sub {
    font-size: 0.95rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}


/* Coverage blocks */

.hi-cover-block {
    padding: 0 0 60px;
}

.hi-cover-block__label {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--clr-brand);
    margin-bottom: 10px;
}

.hi-cover-block__desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.65;
}

.hi-cover-block__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}

@media (max-width: 575px) {
    .hi-cover-block__cols {
        grid-template-columns: 1fr;
    }
}

.hi-cover-block__cols ul {
    padding-left: 18px;
    margin: 0;
}

.hi-cover-block__cols ul li {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.55;
    font-weight: 400;
}

.hi-cover-block__note {
    font-size: 0.82rem;
    color: #777;
    font-style: italic;
    margin-top: 10px;
    font-weight: 400;
}

.hi-cover-block__img {
    width: 100%;
    min-height: 474px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 767px) {
    .hi-cover-block__img {
        min-height: 333px;
        margin-bottom: 24px;
    }
}


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

.hi-links {
    padding: 10px 0 60px;
}

.hi-links a {
    display: block;
    color: var(--clr-brand);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 8px;
}

.hi-links a:hover {
    color: var(--clr-brand-dark);
}


/* ====== SHARED HEADER/FOOTER (from main.css fallback) ====== */

.btn-brand {
    background: var(--clr-btn);
    border: 0;
    border-radius: 10px;
    padding: .85rem 2rem;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    border: 1px solid var( --bs-btn-border-color);
}


/* HAMZA */

.btn-brand:hover {
    background: transparent;
    /* color: rgba(227, 29, 22, 1); */
    color: var(--new-hover);
    border: 1px solid var( --bs-btn-border-color);
}


/* =========================
   Connect Form — Contact / Complaints Tabs
   ========================= */

.connect-form__tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.connect-form__tab {
    background: none;
    border: none;
    padding: 8px 16px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    position: relative;
    transition: color .18s;
}

.connect-form__tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-brand, #da291c);
    transform: scaleX(0);
    transition: transform .18s;
}

.connect-form__tab.is-active {
    color: var(--clr-brand, #da291c);
}

.connect-form__tab.is-active::after {
    transform: scaleX(1);
}


/* ═══════════════════════════════════════════════════
   DOWNLOADS PAGE
═══════════════════════════════════════════════════ */

.downloads-page {
    padding: 48px 0 80px;
    background: #f5f5f5;
}

.downloads-page-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}


/* ── Accordion wrapper ── */

.dl-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ── Single accordion item ── */

.dl-accordion-item {
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--clr-brand, #da291c);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.dl-accordion-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}


/* ── Accordion trigger button ── */

.dl-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.dl-accordion-trigger:hover {
    background: rgba(0, 0, 0, 0.015);
}

.dl-accordion-trigger__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.01em;
}

.dl-accordion-trigger__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-brand, #da291c);
    font-size: 1.3rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.dl-accordion-item.is-open .dl-accordion-trigger__icon {
    transform: rotate(45deg);
}


/* ── Accordion panel ── */

.dl-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.dl-accordion-panel__inner {
    padding: 0 28px 24px;
}


/* ── Individual download row ── */

.dl-file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.dl-file-row:last-child {
    border-bottom: none;
}

.dl-file-row:hover {
    background: #fafafa;
}

.dl-file-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}


/* ── PDF badge ── */

.dl-file-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 26px;
    padding: 0 8px;
    background: #fef2f2;
    color: var(--clr-brand, #da291c);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.dl-file-name {
    font-size: 0.88rem;
    color: #374151;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ── Download button ── */

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border: 1.5px solid var(--clr-brand, #da291c);
    border-radius: 6px;
    background: transparent;
    color: var(--clr-brand, #da291c);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dl-btn:hover {
    background: var(--clr-brand, #da291c);
    color: #fff;
}

.dl-btn:hover .dl-btn-icon {
    filter: brightness(0) invert(1);
}

.dl-btn-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    transition: filter 0.2s ease;
}


/* ── Responsive ── */

@media (max-width: 767.98px) {
    .downloads-page {
        padding: 32px 0 56px;
    }
    .dl-accordion-trigger {
        padding: 15px 18px;
    }
    .dl-accordion-trigger__title {
        font-size: 0.88rem;
    }
    .dl-accordion-panel__inner {
        padding: 0 18px 18px;
    }
    .dl-file-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 12px;
    }
    .dl-btn {
        align-self: flex-end;
    }
    .dl-file-name {
        white-space: normal;
        font-size: 0.84rem;
    }
}

@media (max-width: 479.98px) {
    .downloads-page-title {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }
    .dl-accordion-trigger {
        padding: 13px 14px;
    }
    .dl-accordion-trigger__title {
        font-size: 0.82rem;
    }
    .dl-accordion-panel__inner {
        padding: 0 10px 14px;
    }
    .dl-file-row {
        padding: 10px 8px;
    }
    .dl-file-badge {
        min-width: 34px;
        height: 22px;
        font-size: 0.6rem;
    }
    .dl-file-name {
        font-size: 0.8rem;
    }
    .dl-btn {
        padding: 6px 14px;
        font-size: 0.76rem;
    }
    .dl-btn-icon {
        width: 12px;
        height: 12px;
    }
}

    /* ── Job Detail Page Styles ── */
        .job-detail-hero {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            padding: 48px 0 36px;
        }

        .job-detail-hero h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 0;
            align-items: center;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--clr-brand, #d0021b);
        }

        .job-meta span {
            color: var(--clr-brand, #d0021b);
        }

        .job-meta .separator {
            margin: 0 8px;
            color: var(--clr-brand, #d0021b);
        }

        /* ── Main Content Area ── */
        .job-detail-body {
            padding: 48px 0 64px;
        }

        /* ── Description Card ── */
        .job-info-section h2 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .job-info-section p {
            color: #444;
            line-height: 1.75;
            font-size: 0.95rem;
        }

        .job-info-section ul {
            padding-left: 0;
            list-style: none;
            margin-bottom: 0;
        }

        .job-info-section ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: #444;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .job-info-section ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 8px;
            height: 8px;
            background-color: var(--clr-brand, #d0021b);
            border-radius: 50%;
        }

        /* ── Application Card ── */
        .apply-card {
            background: #fff;
            border: 1px solid #e2e2e2;
            border-radius: 10px;
            padding: 32px 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 100px;
        }

        .apply-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .apply-card .apply-subtitle {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 24px;
        }

        .apply-card .form-label {
            font-size: 0.88rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
        }

        .apply-card .form-control,
        .apply-card .form-select {
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 10px 14px;
            font-size: 0.9rem;
            color: #444;
            transition: border-color 0.2s;
        }

        .apply-card .form-control:focus,
        .apply-card .form-select:focus {
            border-color: var(--clr-brand, #d0021b);
            box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
            outline: none;
        }

        .apply-card .form-control::placeholder {
            color: #aaa;
        }

        /* File upload */
        .file-upload-zone {
            border: 2px dashed #ccc;
            border-radius: 8px;
            padding: 28px 16px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            background: #fafafa;
            position: relative;
        }

        .file-upload-zone:hover {
            border-color: var(--clr-brand, #d0021b);
            background: #fff5f5;
        }

        .file-upload-zone input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }

        .file-upload-zone .upload-text {
            font-size: 0.88rem;
            color: #555;
            margin-bottom: 4px;
        }

        .file-upload-zone .upload-hint {
            font-size: 0.78rem;
            color: #999;
        }

        /* Textarea */
        .apply-card textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        /* Submit btn */
        .btn-submit-application {
            background-color: var(--clr-brand, #d0021b);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
            padding: 14px;
            width: 100%;
            transition: background 0.2s, transform 0.1s;
            text-transform: uppercase;
        }

        .btn-submit-application:hover {
            background-color: #b0011a;
            color: #fff;
            transform: translateY(-1px);
        }

        .btn-submit-application:active {
            transform: translateY(0);
        }

        /* Dividers between sections */
        .job-info-section + .job-info-section {
            margin-top: 36px;
            padding-top: 32px;
            border-top: 1px solid #ebebeb;
        }

        @media (max-width: 991px) {
            .apply-card {
                position: static;
                margin-top: 40px;
            }

            .job-detail-hero {
                padding: 32px 0 24px;
            }

            .job-detail-body {
                padding: 32px 0 48px;
            }
        }

        @media (max-width: 575px) {
            .apply-card {
                padding: 24px 18px;
            }

            .job-meta {
                font-size: 0.82rem;
            }
        }




    /* agar center layout hai */
        .abu-dhabi__content p {
    color: rgba(255, 255, 255, .95);
    font-weight: 400 !important;
    font-size: 1.5rem;
    line-height: 1.45;
    max-width: 1120px;
    margin: 0 auto;
}

        /* =========================================================
       VERY TOP STRIP
    ========================================================= */
        /* =========================================================
       ARTICLE PAGE
    ========================================================= */
        
        .article-page {
            /* background: #f3f3f3; */
            padding: 72px 0 88px;
            min-height: 720px;
        }
        
        .article-wrap {
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }
        
        .article-title {
            margin: 0;
            font-size: 40px;
            line-height: 1.08;
            font-weight: 700;
            color: #444;
            letter-spacing: -0.8px;
        }
        
        .article-meta {
            margin-top: 16px;
            font-size: 14px;
            color: #7a7a7a;
            line-height: 1.5;
        }
        
        .article-hero-image {
            margin-top: 28px;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            background: #d9dee6;
        }
        
        .article-hero-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }
        
        .article-content {
            margin-top: 28px;
            text-align: left;
            color: #666;
            font-size: 16px;
            line-height: 1.55;
        }
        
        .article-content p {
            margin: 0 0 18px;
        }
        /* =========================================================
       RESPONSIVE
    ========================================================= */
        
        @media (max-width: 991.98px) {
            .article-page {
                padding: 40px 0 60px;
            }
            .article-wrap {
                max-width: 100%;
            }
            .article-title {
                font-size: 32px;
            }
            .article-meta {
                font-size: 13px;
            }
            .article-hero-image img {
                height: 320px;
            }
            .article-content {
                font-size: 15px;
            }
        }
        
        @media (max-width: 767.98px) {
            .article-page {
                padding: 32px 0 48px;
            }
            .article-title {
                font-size: 27px;
                line-height: 1.12;
            }
            .article-meta {
                font-size: 12px;
            }
            .article-hero-image {
                margin-top: 22px;
                border-radius: 10px;
            }
            .article-hero-image img {
                height: 220px;
            }
            .article-content {
                margin-top: 22px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 575.98px) {
            .container {
                padding-left: 22px;
                padding-right: 22px;
            }
            .article-title {
                font-size: 24px;
            }
            .article-hero-image img {
                height: 190px;
            }
            .article-content {
                font-size: 12px;
            }
        }


         /* =============================================
           FULL-SCREEN HERO WRAPPER
        ============================================= */
        .welcome-page {
            position: relative;
            width: 100vw;
            height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #c5c9ce;
        }

        /* Hero background image — right-aligned, covers the full right portion */
        .welcome-page__bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
            user-select: none;
            pointer-events: none;
        }

        /* Subtle left-side fade so the card reads clearly against the bg */
        .welcome-page__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(195, 200, 205, 0.82) 0%,
                rgba(195, 200, 205, 0.55) 28%,
                rgba(195, 200, 205, 0.10) 55%,
                transparent 100%
            );
            z-index: 1;
        }

        /* =============================================
           LAYOUT CONTAINER
        ============================================= */
        .welcome-page__container {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 5vw;
        }

        /* =============================================
           CARD
        ============================================= */
        .welcome-card {
            background: rgba(248, 248, 248, 0.93);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: var(--radius-card);
            box-shadow:
                0 4px 6px rgba(0, 0, 0, 0.04),
                0 20px 50px rgba(0, 0, 0, 0.13);
            padding: 48px 44px 52px;
            width: 100%;
            max-width: 460px;
            animation: cardFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        @keyframes cardFadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---- Logo ---- */
        .welcome-card__logo {
            display: block;
            width: 190px;
            margin: 0 auto 28px;
        }

        /* ---- Welcome title ---- */
        .welcome-card__title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: var(--clr-brand) !important;
            text-align: center;
            margin: 0 0 8px;
            letter-spacing: -0.01em;
        }

        /* ---- Subtitle ---- */
        .welcome-card__subtitle {
            font-size: 14.5px;
            color: #5a5a5a;
            text-align: center;
            margin: 0 0 28px;
            font-weight: 400;
            line-height: 1.4;
        }

        /* ---- Divider ---- */
        .welcome-card__divider {
            height: 1px;
            background: #e0e0e0;
            margin: 0 0 24px;
            border: none;
        }

        /* ---- Form label ---- */
        .welcome-card__label {
            display: block;
            font-size: 13.5px;
            font-weight: 600;
            color: #222;
            margin-bottom: 9px;
            letter-spacing: 0.01em;
        }

        /* ---- Select ---- */
        .welcome-card__select-wrapper {
            position: relative;
            margin-bottom: 24px;
        }

        .welcome-card__select {
            width: 100%;
            appearance: none;
            -webkit-appearance: none;
            border: 1.5px solid #d4d4d4;
            border-radius: 10px;
            padding: 13px 46px 13px 16px;
            font-family: var(--ff-base);
            font-size: 15px;
            color: #1f1f1f;
            background: #fff;
            cursor: pointer;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            outline: none;
        }

        .welcome-card__select:focus {
            border-color: var(--clr-brand);
            box-shadow: 0 0 0 3px rgba(215, 25, 25, 0.12);
        }

        /* Custom chevron icon */
        .welcome-card__select-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #888;
            font-size: 16px;
            line-height: 1;
        }

        /* ---- CTA Button ---- */
        .welcome-card__btn {
            display: block;
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            background: var(--grad-red);
            color: #fff;
            font-family: var(--ff-base);
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-align: center;
            cursor: pointer;
            transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 16px rgba(215, 25, 25, 0.35);
            text-decoration: none;
        }

        .welcome-card__btn:hover {
            opacity: 0.92;
            transform: translateY(-1px);
            box-shadow: 0 6px 22px rgba(215, 25, 25, 0.42);
            color: #fff;
        }

        .welcome-card__btn:active {
            transform: translateY(0);
            opacity: 1;
        }

        /* =============================================
           RESPONSIVE
        ============================================= */
        @media (max-width: 575.98px) {
            html, body {
                overflow: auto;
            }

            .welcome-page {
                height: auto;
                min-height: 100vh;
                align-items: flex-start;
                padding-top: 0;
                overflow: visible;
            }

            .welcome-page__bg {
                height: 100%;
                min-height: 100vh;
                object-position: 70% center;
            }

            .welcome-page__overlay {
                background: rgba(195, 200, 205, 0.72);
            }

            .welcome-page__container {
                padding: 40px 20px 48px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .welcome-card {
                max-width: 100%;
                padding: 36px 28px 42px;
                margin: 0;
            }
        }

        @media (min-width: 576px) and (max-width: 767.98px) {
            .welcome-card {
                max-width: 400px;
            }

            .welcome-page__container {
                padding: 0 32px;
            }
        }

        @media (min-width: 1400px) {
            .welcome-card {
                max-width: 490px;
            }
        }
        .footer-col {
    border-left: 2px solid #f2f2f2 !important;
}
