/* =====================================================
   Shared Home Section Tokens
   ===================================================== */
.hs-section {
    --hs-primary: var(--theme-color, #0f3d5e);
    --hs-secondary: var(--theme-color2, #0b7285);
    --hs-dark: #172033;
    --hs-text: #1f2937;
    --hs-muted: #667085;
    --hs-light: #f6f9fc;
    --hs-white: #ffffff;
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.hs-section-inner {
    position: relative;
    z-index: 2;
}

.hs-section a {
    text-decoration: none;
}

.hs-section img {
    max-width: 100%;
}

.hs-heading {
    margin-bottom: 26px;
}

.hs-heading .site-title {
    font-weight: 800;
}

.hs-kicker,
.hs-about-pro-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(15, 61, 94, 0.08);
    color: var(--about-primary, var(--hs-primary));
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.85px;
    margin-bottom: 12px;
}

.hs-about-editor,
.hs-about-pro-editor {
    color: var(--hs-text);
    line-height: 1.82;
    text-align: justify;
}

.hs-about-pro-editor p:last-child {
    margin-bottom: 0;
}

.hs-about-pro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 50px;
    border: 0;
    background: linear-gradient(135deg, var(--about-primary, var(--hs-primary)), var(--about-secondary, var(--hs-secondary)));
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 36px rgba(15, 61, 94, 0.18);
    transition: all 0.3s ease;
}

.hs-about-pro-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
    box-shadow: 0 22px 48px rgba(15, 61, 94, 0.24);
}



.hs-about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.hs-about-reveal.hs-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Default Layout - kept stable
   ===================================================== */
.hs-about-default {
    background: #ffffff;
}

.hs-about-default .hs-about-text-card,
.hs-about-default .hs-governing-wrap {
    height: 100%;
    position: relative;
}

.hs-about-default .hs-governing-img img,
.hs-governing-img img {
    width: 145px !important;
    height: 145px !important;
    object-fit: cover;
}

.hs-about-default .hs-governing-card,
.hs-governing-card {
    border: 1px solid rgba(15, 61, 94, 0.18);
    border-bottom: 5px solid var(--hs-primary);
    background: #ffffff;
}

/* =====================================================
   About Layout 1 - Editorial Split + Admin Board
   ===================================================== */
.hs-about-pro-l1 {
    background:
        radial-gradient(circle at 8% 10%, rgba(15, 61, 94, 0.11), transparent 34%),
        radial-gradient(circle at 94% 88%, rgba(11, 114, 133, 0.13), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.hs-about-pro-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 61, 94, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 61, 94, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    opacity: 0.7;
}

.hs-about-pro-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.14;
}

.hs-about-pro-shape-one {
    width: 280px;
    height: 280px;
    background: var(--about-primary);
    top: -120px;
    right: -90px;
}

.hs-about-pro-shape-two {
    width: 220px;
    height: 220px;
    background: var(--about-secondary);
    bottom: -90px;
    left: -70px;
}

.hs-about-l1-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.hs-about-l1-content {
    padding: 36px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 61, 94, 0.10);
    box-shadow: 0 28px 80px rgba(23, 32, 51, 0.10);
}

.hs-about-l1-title .hs-heading {
    margin-bottom: 18px;
}

.hs-about-l1-content .hs-about-pro-editor {
    margin-bottom: 22px;
}

.hs-about-l1-board {
    padding: 24px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    box-shadow: 0 28px 80px rgba(15, 61, 94, 0.22);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.hs-about-l1-board::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.07);
    right: -70px;
    bottom: -70px;
}

.hs-about-l1-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.hs-about-l1-board-head span {
    font-size: 22px;
    font-weight: 900;
}

.hs-about-l1-board-head i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hs-about-l1-member-grid {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.hs-about-l1-member-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    transition: all 0.3s ease;
}

.hs-about-l1-member-card:hover {
    transform: translateX(6px);
}

.hs-about-l1-member-img {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    overflow: hidden;
    flex: 0 0 74px;
}

.hs-about-l1-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-about-l1-member-content h5 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 17px;
    font-weight: 900;
}

.hs-about-l1-member-content span {
    color: var(--about-primary);
    font-size: 13px;
    font-weight: 800;
}

/* =====================================================
   About Layout 2 - Dark Premium Console
   ===================================================== */
.hs-about-pro-l2 {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.09), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(11, 114, 133, 0.20), transparent 30%),
        linear-gradient(135deg, #121a2a, #172033);
    color: #ffffff;
}

.hs-about-l2-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 38px 38px;
}

.hs-about-l2-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: stretch;
}

.hs-about-l2-governance,
.hs-about-l2-content {
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.hs-about-l2-governance {
    padding: 26px;
}

.hs-about-l2-content {
    padding: 36px;
}

.hs-about-l2-content .site-title,
.hs-about-l2-content .hs-about-pro-editor,
.hs-about-l2-content .hs-about-pro-editor * {
    color: #ffffff;
}

.hs-about-l2-content .hs-about-pro-editor {
    opacity: 0.88;
}

.hs-about-l2-side-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hs-about-l2-side-title i {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hs-about-l2-side-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.hs-about-l2-member-list {
    display: grid;
    gap: 14px;
}

.hs-about-l2-member {
    display: grid;
    grid-template-columns: auto 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 13px;
    border-radius: 20px;
    background: rgba(255,255,255,0.10);
    transition: all 0.3s ease;
}

.hs-about-l2-member:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-4px);
}

.hs-about-l2-number {
    width: 35px;
    height: 35px;
    border-radius: 13px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.hs-about-l2-member img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    object-fit: cover;
}

.hs-about-l2-member h5 {
    color: #ffffff;
    margin: 0 0 4px;
    font-weight: 900;
    font-size: 16px;
}

.hs-about-l2-member span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 700;
}

.hs-about-l2-action {
    margin-top: 24px;
}

/* =====================================================
   About Layout 3 - Timeline Story Layout
   ===================================================== */
.hs-about-pro-l3 {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.hs-about-l3-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(15,61,94,0.18), transparent);
}

.hs-about-l3-header {
    text-align: center;
    margin-bottom: 28px;
}

.hs-about-l3-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.hs-about-l3-about-card,
.hs-about-l3-admin-card {
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15,61,94,0.10);
    box-shadow: 0 22px 70px rgba(23,32,51,0.08);
}

.hs-about-l3-about-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.hs-about-l3-about-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-secondary));
}

.hs-about-l3-quote {
    position: absolute;
    right: 28px;
    top: 18px;
    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
    color: rgba(15,61,94,0.06);
    font-weight: 900;
}

.hs-about-l3-about-card .hs-about-pro-editor {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

.hs-about-l3-admin-card {
    padding: 26px;
}

.hs-about-l3-admin-head {
    margin-bottom: 20px;
}

.hs-about-l3-admin-head h3 {
    margin: 0;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.hs-about-l3-timeline {
    position: relative;
    display: grid;
    gap: 16px;
}

.hs-about-l3-timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(15,61,94,0.13);
}

.hs-about-l3-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid rgba(15,61,94,0.08);
    transition: all 0.3s ease;
}

.hs-about-l3-timeline-item:hover {
    transform: translateX(6px);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(23,32,51,0.08);
}

.hs-about-l3-dot {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hs-about-l3-timeline-item img {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    object-fit: cover;
}

.hs-about-l3-timeline-item h5 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.hs-about-l3-timeline-item span {
    color: var(--about-primary);
    font-size: 13px;
    font-weight: 800;
}

/* =====================================================
   About Layout 4 - Bento Layout
   ===================================================== */
.hs-about-pro-l4 {
    background:
        radial-gradient(circle at top left, rgba(15,61,94,0.12), transparent 36%),
        #ffffff;
}

.hs-about-l4-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15,61,94,0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.45;
}

.hs-about-l4-bento {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-areas:
        "about head"
        "about members";
    gap: 22px;
    align-items: stretch;
}

.hs-about-l4-about {
    grid-area: about;
    padding: 36px;
    border-radius: 36px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(23,32,51,0.10);
    border: 1px solid rgba(15,61,94,0.10);
}

.hs-about-l4-about .hs-about-pro-editor {
    margin-bottom: 22px;
}

.hs-about-l4-heading-card {
    grid-area: head;
    min-height: 190px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 26px 70px rgba(15,61,94,0.20);
}

.hs-about-l4-heading-card i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hs-about-l4-heading-card h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    margin: 0;
}

.hs-about-l4-members {
    grid-area: members;
    display: grid;
    gap: 14px;
}

.hs-about-l4-member {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15,61,94,0.10);
    box-shadow: 0 18px 45px rgba(23,32,51,0.07);
    transition: all 0.3s ease;
}

.hs-about-l4-member:hover {
    transform: translateY(-5px);
}

.hs-about-l4-member img {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    object-fit: cover;
    flex: 0 0 auto;
}

.hs-about-l4-member h5 {
    margin: 0 0 4px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.hs-about-l4-member span {
    color: var(--about-primary);
    font-size: 13px;
    font-weight: 800;
}

/* =====================================================
   About Layout 5 - Gateway Panel Layout
   ===================================================== */
.hs-about-pro-l5 {
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.hs-about-l5-ribbon {
    position: absolute;
    inset: 0 auto 0 0;
    width: 36%;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    clip-path: polygon(0 0, 84% 0, 100% 100%, 0 100%);
    opacity: 0.95;
}

.hs-about-l5-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    right: -90px;
    top: -90px;
    border: 42px solid rgba(15,61,94,0.07);
}

.hs-about-l5-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 28px;
    align-items: stretch;
}

.hs-about-l5-main,
.hs-about-l5-panel {
    position: relative;
    border-radius: 36px;
    box-shadow: 0 30px 86px rgba(23,32,51,0.12);
}

.hs-about-l5-main {
    padding: 38px;
    background: #ffffff;
    border: 1px solid rgba(15,61,94,0.10);
}

.hs-about-l5-main-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
}

.hs-about-l5-panel {
    padding: 28px;
    background: #172033;
    color: #ffffff;
    overflow: hidden;
}

.hs-about-l5-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(11,114,133,0.34), transparent 38%);
}

.hs-about-l5-panel-title {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.hs-about-l5-panel-title h3 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    font-weight: 900;
}

.hs-about-l5-member-wall {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.hs-about-l5-member {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 13px;
    border-radius: 24px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.3s ease;
}

.hs-about-l5-member:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.hs-about-l5-member-img {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    overflow: hidden;
}

.hs-about-l5-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-about-l5-member-info h5 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.hs-about-l5-member-info span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 800;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1199.98px) {
    .hs-about-l1-grid,
    .hs-about-l2-shell,
    .hs-about-l3-wrap,
    .hs-about-l5-layout {
        grid-template-columns: 1fr;
    }

    .hs-about-l4-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "about"
            "head"
            "members";
    }

    .hs-about-l5-ribbon {
        width: 100%;
        height: 260px;
        clip-path: none;
        opacity: 0.12;
    }
}

@media (max-width: 991.98px) {
    .hs-section {
        padding: 55px 0;
    }

    .hs-about-l1-content,
    .hs-about-l2-content,
    .hs-about-l3-about-card,
    .hs-about-l4-about,
    .hs-about-l5-main {
        padding: 28px;
    }

    .hs-about-l2-member {
        grid-template-columns: auto 64px minmax(0, 1fr);
    }

    .hs-about-l2-member img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 767.98px) {
    .hs-about-l5-main-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hs-about-pro-btn {
        width: 100%;
    }

    .hs-about-l3-timeline-item {
        grid-template-columns: 36px 64px minmax(0, 1fr);
        gap: 10px;
    }

    .hs-about-l3-dot {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }

    .hs-about-l3-timeline-item img {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .hs-section {
        padding: 44px 0;
    }

    .hs-about-l1-content,
    .hs-about-l1-board,
    .hs-about-l2-governance,
    .hs-about-l2-content,
    .hs-about-l3-about-card,
    .hs-about-l3-admin-card,
    .hs-about-l4-about,
    .hs-about-l4-heading-card,
    .hs-about-l5-main,
    .hs-about-l5-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .hs-about-pro-editor {
        font-size: 14px;
        line-height: 1.72;
    }

    .hs-about-l1-member-card,
    .hs-about-l4-member {
        align-items: flex-start;
    }

    .hs-about-l1-member-img,
    .hs-about-l4-member img {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        flex-basis: 62px;
    }

    .hs-about-l2-member {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hs-about-l3-line {
        display: none;
    }

    .hs-about-l3-timeline::before {
        display: none;
    }

    .hs-about-l3-timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hs-about-l5-member {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* ================= ABOUT LAYOUT 3 - DIAGONAL PREMIUM SPLIT ================= */

.hs-about-l3x {
    position: relative;
    background: #f6f9fc;
    overflow: hidden;
}

.hs-about-l3x-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 61, 94, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 61, 94, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.hs-about-l3x-angle {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, var(--about-primary) 0%, var(--about-secondary) 42%, transparent 42.2%);
    opacity: 0.96;
    clip-path: polygon(0 0, 52% 0, 35% 100%, 0% 100%);
}

.hs-about-l3x-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hs-about-l3x-circle-one {
    width: 340px;
    height: 340px;
    left: -120px;
    top: -120px;
    border: 48px solid rgba(255, 255, 255, 0.12);
}

.hs-about-l3x-circle-two {
    width: 230px;
    height: 230px;
    right: -80px;
    bottom: -80px;
    background: rgba(15, 61, 94, 0.08);
}

.hs-about-l3x-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 38px;
}

.hs-about-l3x-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.hs-about-l3x-single {
    grid-template-columns: 1fr;
}

.hs-about-l3x-content-card {
    min-height: 100%;
    padding: 42px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 30px 90px rgba(23, 32, 51, 0.14);
    position: relative;
    overflow: hidden;
}

.hs-about-l3x-content-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -120px;
    top: -120px;
    background: linear-gradient(135deg, rgba(15, 61, 94, 0.10), rgba(11, 114, 133, 0.10));
}

.hs-about-l3x-content-card::after {
    content: "";
    position: absolute;
    inset: auto 42px 0 42px;
    height: 7px;
    border-radius: 50px 50px 0 0;
    background: linear-gradient(90deg, var(--about-primary), var(--about-secondary));
}

.hs-about-l3x-content-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.hs-about-l3x-number {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(15, 61, 94, 0.24);
    flex: 0 0 auto;
}

.hs-about-l3x-content-top h3 {
    margin: 0;
    color: #111827;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 950;
    line-height: 1.12;
}

.hs-about-l3x-content-top span {
    display: block;
    width: 86px;
    height: 5px;
    margin-top: 12px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-secondary));
}

.hs-about-l3x-editor {
    position: relative;
    z-index: 2;
    color: #344054;
    font-size: 16px;
    line-height: 1.88;
    text-align: justify;
}

.hs-about-l3x-editor p:last-child {
    margin-bottom: 0;
}

.hs-about-l3x-bottom {
    position: relative;
    z-index: 2;
    margin-top: 28px;
}

.hs-about-l3x-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(15, 61, 94, 0.20);
    transition: all 0.3s ease;
}

.hs-about-l3x-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 61, 94, 0.28);
}

.hs-about-l3x-admin-panel {
    padding: 28px;
    border-radius: 36px;
    background: #111827;
    box-shadow: 0 30px 90px rgba(17, 24, 39, 0.22);
    position: relative;
    overflow: hidden;
}

.hs-about-l3x-admin-panel::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: -95px;
    top: -95px;
    background: rgba(255, 255, 255, 0.08);
}

.hs-about-l3x-admin-panel::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    left: -75px;
    bottom: -75px;
    border: 30px solid rgba(255, 255, 255, 0.06);
}

.hs-about-l3x-admin-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hs-about-l3x-admin-head span {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.hs-about-l3x-admin-head h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 950;
    line-height: 1.2;
    margin: 0;
}

.hs-about-l3x-admin-head i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.hs-about-l3x-admin-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 15px;
}

.hs-about-l3x-admin-item {
    display: grid;
    grid-template-columns: 42px 78px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all 0.3s ease;
}

.hs-about-l3x-admin-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.13);
}

.hs-about-l3x-admin-count {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 950;
}

.hs-about-l3x-admin-img img {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    object-fit: cover;
    background: #ffffff;
    border: 4px solid rgba(255, 255, 255, 0.18);
}

.hs-about-l3x-admin-info h5 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.hs-about-l3x-admin-info span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
}

/* Animation */
.hs-about-l3x .hs-about-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.hs-about-l3x .hs-about-reveal.hs-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hs-about-l3x-angle {
        clip-path: polygon(0 0, 70% 0, 46% 100%, 0% 100%);
    }

    .hs-about-l3x-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .hs-about-l3x-angle {
        clip-path: polygon(0 0, 100% 0, 100% 230px, 0 310px);
    }

    .hs-about-l3x-content-card,
    .hs-about-l3x-admin-panel {
        border-radius: 28px;
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    .hs-about-l3x-heading {
        margin-bottom: 28px;
    }

    .hs-about-l3x-content-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .hs-about-l3x-number {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        font-size: 18px;
    }

    .hs-about-l3x-editor {
        font-size: 15px;
        line-height: 1.75;
    }

    .hs-about-l3x-admin-item {
        grid-template-columns: 34px 66px 1fr;
        gap: 11px;
    }

    .hs-about-l3x-admin-img img {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .hs-about-l3x-content-card,
    .hs-about-l3x-admin-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .hs-about-l3x-btn {
        width: 100%;
        justify-content: center;
    }

    .hs-about-l3x-admin-head {
        flex-direction: column;
    }

    .hs-about-l3x-admin-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hs-about-l3x-admin-count {
        display: none;
    }

    .hs-about-l3x-admin-img img {
        width: 88px;
        height: 88px;
    }
}

/* =====================================================
   Common Governing Slider For About Layout 1 to 5
   Add this at the END of about.css
   ===================================================== */

.hs-about-gov-slider-box {
    position: relative;
    height: 100%;
    padding: 24px;
    border-radius: 34px;
    overflow: hidden;
}

.hs-about-gov-slider-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hs-about-gov-slider-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.hs-about-gov-slider-head span {
    display: inline-flex;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hs-about-gov-slider-head h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 950;
}

.hs-about-gov-slider-head i {
    width: 54px;
    height: 54px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hs-about-governing-slider {
    position: relative;
    z-index: 2;
}

.hs-about-governing-slider .owl-stage {
    display: flex;
}

.hs-about-governing-slider .owl-item {
    display: flex;
}

.hs-about-governing-slider .item {
    width: 100%;
    display: flex;
}

.hs-about-gov-slide-card {
    width: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 20px;
    transition: all 0.32s ease;
}

.hs-about-gov-slide-card:hover {
    transform: translateY(-6px);
}

.hs-about-gov-card-count {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 950;
}

.hs-about-gov-img {
    width: 132px;
    height: 132px;
    margin: 10px auto 18px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hs-about-gov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-about-gov-info {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hs-about-gov-info h5 {
    margin: 0 0 7px;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
}

.hs-about-gov-info span {
    display: inline-flex;
    justify-content: center;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.hs-about-governing-slider .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hs-about-governing-slider .owl-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hs-about-governing-slider .owl-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.hs-about-governing-slider .owl-dots button span {
    width: 8px !important;
    height: 8px !important;
    margin: 0 !important;
    border-radius: 50px !important;
    transition: all 0.25s ease;
}

.hs-about-governing-slider .owl-dots button.active span {
    width: 24px !important;
}

/* Layout 1 slider theme */
.hs-about-gov-theme-l1 {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    box-shadow: 0 28px 80px rgba(15, 61, 94, 0.22);
    color: #ffffff;
}

.hs-about-gov-theme-l1::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -85px;
    bottom: -90px;
    border-radius: 50%;
    border: 34px solid rgba(255, 255, 255, 0.08);
}

.hs-about-gov-theme-l1 .hs-about-gov-slider-head h3,
.hs-about-gov-theme-l1 .hs-about-gov-slider-head span {
    color: #ffffff;
}

.hs-about-gov-theme-l1 .hs-about-gov-slider-head i {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

.hs-about-gov-theme-l1 .hs-about-gov-slide-card {
    background: rgba(255,255,255,0.94);
    color: #111827;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.hs-about-gov-theme-l1 .hs-about-gov-card-count {
    background: rgba(15,61,94,0.08);
    color: var(--about-primary);
}

.hs-about-gov-theme-l1 .hs-about-gov-img {
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15,61,94,0.16);
}

.hs-about-gov-theme-l1 .hs-about-gov-info h5 {
    color: #111827;
}

.hs-about-gov-theme-l1 .hs-about-gov-info span {
    color: var(--about-primary);
}

.hs-about-gov-theme-l1 .owl-nav button {
    background: #ffffff !important;
    color: var(--about-primary) !important;
}

.hs-about-gov-theme-l1 .owl-dots button span {
    background: rgba(255,255,255,0.45) !important;
}

.hs-about-gov-theme-l1 .owl-dots button.active span {
    background: #ffffff !important;
}

/* Layout 2 slider theme */
.hs-about-gov-theme-l2 {
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 30px 90px rgba(0,0,0,0.24);
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-slider-head h3,
.hs-about-gov-theme-l2 .hs-about-gov-slider-head span {
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-slider-head i {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-slide-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-card-count {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-img {
    border: 5px solid rgba(255,255,255,0.16);
}

.hs-about-gov-theme-l2 .hs-about-gov-info h5 {
    color: #ffffff;
}

.hs-about-gov-theme-l2 .hs-about-gov-info span {
    color: rgba(255,255,255,0.72);
}

.hs-about-gov-theme-l2 .owl-nav button {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-l2 .owl-dots button span {
    background: rgba(255,255,255,0.28) !important;
}

.hs-about-gov-theme-l2 .owl-dots button.active span {
    background: #ffffff !important;
}

/* Layout 3 slider theme */
.hs-about-gov-theme-l3 {
    background: #111827;
    box-shadow: 0 30px 90px rgba(17, 24, 39, 0.22);
    color: #ffffff;
}

.hs-about-gov-theme-l3::before {
    background: radial-gradient(circle at top right, rgba(11,114,133,0.24), transparent 42%);
}

.hs-about-gov-theme-l3 .hs-about-gov-slider-head h3,
.hs-about-gov-theme-l3 .hs-about-gov-slider-head span {
    color: #ffffff;
}

.hs-about-gov-theme-l3 .hs-about-gov-slider-head i {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
}

.hs-about-gov-theme-l3 .hs-about-gov-slide-card {
    background: #ffffff;
    color: #111827;
}

.hs-about-gov-theme-l3 .hs-about-gov-card-count {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
}

.hs-about-gov-theme-l3 .hs-about-gov-info h5 {
    color: #111827;
}

.hs-about-gov-theme-l3 .hs-about-gov-info span {
    color: var(--about-primary);
}

.hs-about-gov-theme-l3 .owl-nav button {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-l3 .owl-dots button span {
    background: rgba(255,255,255,0.28) !important;
}

.hs-about-gov-theme-l3 .owl-dots button.active span {
    background: #ffffff !important;
}

/* Layout 4 slider theme */
.hs-about-l4-bento-slider {
    grid-template-areas:
        "about slider"
        "about slider";
}

.hs-about-l4-slider-area {
    grid-area: slider;
}

.hs-about-gov-theme-l4 {
    background: #ffffff;
    border: 1px solid rgba(15,61,94,0.10);
    box-shadow: 0 28px 80px rgba(23,32,51,0.10);
}

.hs-about-gov-theme-l4 .hs-about-gov-slider-head span {
    color: var(--about-primary);
}

.hs-about-gov-theme-l4 .hs-about-gov-slider-head h3 {
    color: #111827;
}

.hs-about-gov-theme-l4 .hs-about-gov-slider-head i {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
}

.hs-about-gov-theme-l4 .hs-about-gov-slide-card {
    background:
        radial-gradient(circle at top right, rgba(11,114,133,0.12), transparent 42%),
        #f8fafc;
    border: 1px solid rgba(15,61,94,0.08);
}

.hs-about-gov-theme-l4 .hs-about-gov-card-count {
    background: rgba(15,61,94,0.08);
    color: var(--about-primary);
}

.hs-about-gov-theme-l4 .hs-about-gov-info h5 {
    color: #111827;
}

.hs-about-gov-theme-l4 .hs-about-gov-info span {
    color: var(--about-primary);
}

.hs-about-gov-theme-l4 .owl-nav button {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary)) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-l4 .owl-dots button span {
    background: rgba(15,61,94,0.22) !important;
}

.hs-about-gov-theme-l4 .owl-dots button.active span {
    background: var(--about-primary) !important;
}

/* Layout 5 slider theme */
.hs-about-gov-theme-l5 {
    background: #172033;
    color: #ffffff;
    box-shadow: 0 30px 86px rgba(23,32,51,0.12);
}

.hs-about-gov-theme-l5::before {
    background: radial-gradient(circle at top right, rgba(11,114,133,0.34), transparent 38%);
}

.hs-about-gov-theme-l5 .hs-about-gov-slider-head h3,
.hs-about-gov-theme-l5 .hs-about-gov-slider-head span {
    color: #ffffff;
}

.hs-about-gov-theme-l5 .hs-about-gov-slider-head i {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.hs-about-gov-theme-l5 .hs-about-gov-slide-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
}

.hs-about-gov-theme-l5 .hs-about-gov-card-count {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.hs-about-gov-theme-l5 .hs-about-gov-img {
    border: 5px solid rgba(255,255,255,0.12);
}

.hs-about-gov-theme-l5 .hs-about-gov-info h5 {
    color: #ffffff;
}

.hs-about-gov-theme-l5 .hs-about-gov-info span {
    color: rgba(255,255,255,0.72);
}

.hs-about-gov-theme-l5 .owl-nav button {
    background: rgba(255,255,255,0.13) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-l5 .owl-dots button span {
    background: rgba(255,255,255,0.28) !important;
}

.hs-about-gov-theme-l5 .owl-dots button.active span {
    background: #ffffff !important;
}

/* Responsive slider fixes */
@media (max-width: 1199.98px) {
    .hs-about-l4-bento-slider {
        grid-template-columns: 1fr;
        grid-template-areas:
            "about"
            "slider";
    }
}

@media (max-width: 991.98px) {
    .hs-about-gov-slider-box {
        padding: 22px;
        border-radius: 28px;
    }

    .hs-about-gov-slide-card {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hs-about-gov-slider-box {
        padding: 18px;
        border-radius: 24px;
    }

    .hs-about-gov-slider-head {
        flex-direction: column;
    }

    .hs-about-gov-slider-head i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .hs-about-gov-slide-card {
        min-height: 260px;
        border-radius: 22px;
        padding: 18px;
    }

    .hs-about-gov-img {
        width: 112px;
        height: 112px;
        border-radius: 28px;
    }

    .hs-about-gov-info h5 {
        font-size: 16px;
    }
}
/* =====================================================
   ABOUT LAYOUT 3 + 4 FRESH RESPONSIVE REDESIGN
   Paste at the END of public/assets/frontend/css/home-sections/about.css
   ===================================================== */

/* ================= Layout 3: Premium split slab ================= */
.hs-about-fresh-three {
    position: relative;
    overflow: hidden;
    background: #f5f8fc;
}

.hs-about-f3-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 61, 94, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 61, 94, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.72;
    pointer-events: none;
}

.hs-about-f3-slab {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    background: linear-gradient(145deg, var(--about-primary), var(--about-secondary));
    clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}

.hs-about-f3-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hs-about-f3-ring-one {
    width: 310px;
    height: 310px;
    left: -125px;
    top: -115px;
    border: 48px solid rgba(255, 255, 255, 0.12);
}

.hs-about-f3-ring-two {
    width: 230px;
    height: 230px;
    right: -85px;
    bottom: -90px;
    background: rgba(15, 61, 94, 0.07);
}

.hs-about-f3-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.hs-about-f3-single {
    grid-template-columns: 1fr;
}

.hs-about-f3-about {
    min-height: 100%;
    padding: 40px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.70);
    box-shadow: 0 30px 90px rgba(23, 32, 51, 0.14);
    position: relative;
    overflow: hidden;
}

.hs-about-f3-about::before {
    content: "";
    position: absolute;
    right: -110px;
    top: -110px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(15, 61, 94, 0.055);
}

.hs-about-f3-title-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hs-about-f3-title-no {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(15, 61, 94, 0.22);
}

.hs-about-f3-title-text .hs-heading {
    margin-bottom: 0;
}

.hs-about-f3-title-text .site-title {
    color: #111827;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
    font-weight: 950;
}

.hs-about-f3-editor {
    position: relative;
    z-index: 2;
    color: #344054;
    font-size: 16px;
    line-height: 1.86;
    text-align: justify;
}

.hs-about-f3-editor p:last-child {
    margin-bottom: 0;
}

.hs-about-f3-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(15, 61, 94, 0.20);
    transition: all 0.28s ease;
}

.hs-about-f3-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
    box-shadow: 0 22px 48px rgba(15, 61, 94, 0.28);
}

.hs-about-f3-governing {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
}

.hs-about-f3-governing-cover {
    min-height: 15px;
    padding: 57px;
    border-radius: 34px;
    background: #111827;
    color: #ffffff;
    box-shadow: 0 26px 76px rgba(17, 24, 39, 0.20);
    position: relative;
    overflow: hidden;
}

.hs-about-f3-governing-cover::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.055);
}

.hs-about-f3-governing-cover span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 18px;
}

.hs-about-f3-governing-cover h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    margin: 0;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.16;
    font-weight: 950;
}

.hs-about-gov-theme-f3 {
    background: #ffffff;
    border: 1px solid rgba(15, 61, 94, 0.10);
    box-shadow: 0 26px 76px rgba(23, 32, 51, 0.10);
    color: #111827;
}

.hs-about-gov-theme-f3 .hs-about-gov-slider-head {
    display: none;
}

.hs-about-gov-theme-f3 .hs-about-gov-slide-card {
    background:
        radial-gradient(circle at top right, rgba(11, 114, 133, 0.12), transparent 42%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(15, 61, 94, 0.08);
    box-shadow: 0 16px 42px rgba(23, 32, 51, 0.07);
}

.hs-about-gov-theme-f3 .hs-about-gov-card-count {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
}

.hs-about-gov-theme-f3 .hs-about-gov-img {
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 61, 94, 0.13);
}

.hs-about-gov-theme-f3 .hs-about-gov-info h5 {
    color: #111827;
}

.hs-about-gov-theme-f3 .hs-about-gov-info span {
    color: var(--about-primary);
}

.hs-about-gov-theme-f3 .owl-nav button {
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary)) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-f3 .owl-dots button span {
    background: rgba(15, 61, 94, 0.22) !important;
}

.hs-about-gov-theme-f3 .owl-dots button.active span {
    background: var(--about-primary) !important;
}

/* ================= Layout 4: Centered layered journal ================= */
.hs-about-fresh-four {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hs-about-f4-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(15, 61, 94, 0.12), transparent 34%),
        radial-gradient(circle at 86% 86%, rgba(11, 114, 133, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.hs-about-f4-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hs-about-f4-orb-one {
    width: 290px;
    height: 290px;
    top: -115px;
    right: -95px;
    background: rgba(15, 61, 94, 0.08);
}

.hs-about-f4-orb-two {
    width: 210px;
    height: 210px;
    bottom: -90px;
    left: -75px;
    border: 38px solid rgba(11, 114, 133, 0.10);
}

.hs-about-f4-frame {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 26px;
}

.hs-about-f4-main {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 42px;
    border-radius: 38px;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 94, 0.10);
    box-shadow: 0 30px 90px rgba(23, 32, 51, 0.11);
    position: relative;
    overflow: hidden;
}

.hs-about-f4-main::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 8px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-secondary));
}

.hs-about-f4-main::after {
    content: "";
    position: absolute;
    left: -95px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 34px solid rgba(15, 61, 94, 0.045);
}

.hs-about-f4-main-head {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 20px;
}

.hs-about-f4-main-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 16px;
    box-shadow: 0 18px 42px rgba(15, 61, 94, 0.20);
}

.hs-about-f4-main-head .hs-heading {
    margin-bottom: 0;
}

.hs-about-f4-main-head .site-title {
    color: #111827;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
    font-weight: 950;
}

.hs-about-f4-editor {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    color: #344054;
    font-size: 16px;
    line-height: 1.86;
    text-align: justify;
}

.hs-about-f4-editor p:last-child {
    margin-bottom: 0;
}

.hs-about-f4-action {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.hs-about-f4-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(15, 61, 94, 0.20);
    transition: all 0.28s ease;
}

.hs-about-f4-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
    box-shadow: 0 22px 48px rgba(15, 61, 94, 0.28);
}

.hs-about-f4-governing {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.hs-about-f4-governing-head {
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(145deg, var(--about-primary), var(--about-secondary));
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 61, 94, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.hs-about-f4-governing-head::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 32px solid rgba(255, 255, 255, 0.09);
}

.hs-about-f4-governing-head span {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    margin-bottom: 20px;
}

.hs-about-f4-governing-head h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    margin: 0;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.16;
    font-weight: 950;
}

.hs-about-gov-theme-f4 {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.20);
}

.hs-about-gov-theme-f4 .hs-about-gov-slider-head {
    display: none;
}

.hs-about-gov-theme-f4 .hs-about-gov-slide-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.hs-about-gov-theme-f4 .hs-about-gov-card-count {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.hs-about-gov-theme-f4 .hs-about-gov-img {
    border: 5px solid rgba(255, 255, 255, 0.12);
}

.hs-about-gov-theme-f4 .hs-about-gov-info h5 {
    color: #ffffff;
}

.hs-about-gov-theme-f4 .hs-about-gov-info span {
    color: rgba(255, 255, 255, 0.72);
}

.hs-about-gov-theme-f4 .owl-nav button {
    background: rgba(255, 255, 255, 0.13) !important;
    color: #ffffff !important;
}

.hs-about-gov-theme-f4 .owl-dots button span {
    background: rgba(255, 255, 255, 0.28) !important;
}

.hs-about-gov-theme-f4 .owl-dots button.active span {
    background: #ffffff !important;
}

/* ================= Mobile and tablet fixes for fresh Layout 3 + 4 ================= */
@media (max-width: 1199.98px) {
    .hs-about-f3-shell {
        grid-template-columns: 1fr;
    }

    .hs-about-f3-slab {
        width: 100%;
        height: 310px;
        clip-path: none;
        opacity: 0.16;
    }

    .hs-about-f4-governing {
        grid-template-columns: 1fr;
    }

    .hs-about-f4-governing-head {
        min-height: 190px;
    }
}

@media (max-width: 991.98px) {
    .hs-about-f3-about,
    .hs-about-f3-governing-cover,
    .hs-about-f4-main,
    .hs-about-f4-governing-head {
        border-radius: 30px;
        padding: 28px;
    }

    .hs-about-f3-title-row {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .hs-about-f3-title-no {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 18px;
    }

    .hs-about-gov-theme-f3,
    .hs-about-gov-theme-f4 {
        border-radius: 30px;
    }
}

@media (max-width: 767.98px) {
    .hs-about-f3-title-row {
        grid-template-columns: 1fr;
    }

    .hs-about-f3-editor,
    .hs-about-f4-editor {
        font-size: 15px;
        line-height: 1.76;
    }

    .hs-about-f4-main-head {
        text-align: left;
    }

    .hs-about-f4-action {
        justify-content: flex-start;
    }

    .hs-about-f4-governing-head {
        min-height: 160px;
    }
}

@media (max-width: 575.98px) {
    .hs-about-f3-about,
    .hs-about-f3-governing-cover,
    .hs-about-f4-main,
    .hs-about-f4-governing-head {
        padding: 20px;
        border-radius: 24px;
    }

    .hs-about-f3-btn,
    .hs-about-f4-btn {
        width: 100%;
    }

    .hs-about-f4-action {
        justify-content: center;
    }

    .hs-about-f4-governing {
        gap: 16px;
    }

    .hs-about-gov-theme-f3,
    .hs-about-gov-theme-f4 {
        border-radius: 24px;
    }

    .hs-about-gov-theme-f3 .hs-about-gov-slide-card,
    .hs-about-gov-theme-f4 .hs-about-gov-slide-card {
        min-height: 250px;
    }
}

/* =====================================================
   About Layout 1 - Governing Slider Arrow Distance Fix
   ===================================================== */

.hs-about-pro-l1 .hs-about-gov-slider-box {
    position: relative;
    overflow: visible !important;
}

.hs-about-pro-l1 .hs-about-governing-slider {
    position: relative;
    overflow: visible !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-stage-outer {
    overflow: hidden;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: -28px !important;
    right: -28px !important;
    width: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-prev,
.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: var(--about-primary, #0f3d5e) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    pointer-events: all !important;
    box-shadow: 0 10px 25px rgba(15, 61, 94, 0.22) !important;
    transition: all 0.3s ease !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-prev {
    margin-left: 0 !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-next {
    margin-right: 0 !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button:hover {
    background: var(--about-secondary, #0b7285) !important;
    color: #ffffff !important;
}

.hs-about-pro-l1 .hs-about-governing-slider .owl-nav button i {
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav {
        left: -18px !important;
        right: -18px !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-prev,
    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-next {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav {
        left: 6px !important;
        right: 6px !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-prev,
    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-next {
        width: 34px !important;
        height: 34px !important;
        font-size: 13px !important;
    }
}
/* =====================================================
   ABOUT LAYOUT 1 - FULL MOBILE RESPONSIVE FIX
   Paste at END of about.css
   ===================================================== */

/* Tablet and below */
@media (max-width: 991.98px) {

    .hs-about-pro-l1 {
        padding: 55px 0 !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-l1-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        align-items: stretch !important;
    }

    .hs-about-pro-l1 .hs-about-l1-content {
        width: 100% !important;
        padding: 28px !important;
        border-radius: 26px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-title .site-title,
    .hs-about-pro-l1 .site-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l1 .hs-about-pro-editor {
        font-size: 15px !important;
        line-height: 1.75 !important;
        text-align: justify !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 22px !important;
        border-radius: 26px !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head {
        gap: 12px !important;
        margin-bottom: 16px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head i {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 16px !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-stage-outer {
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slide-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-img {
        width: 120px !important;
        height: 120px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hs-about-pro-l1 .hs-about-gov-img img {
        width: 120px !important;
        height: 120px !important;
        object-fit: cover !important;
    }

    .hs-about-pro-l1 .hs-about-gov-info h5 {
        font-size: 18px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l1 .hs-about-gov-info span {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .hs-about-pro-l1 .hs-about-pro-shape-one,
    .hs-about-pro-l1 .hs-about-pro-shape-two {
        opacity: 0.07 !important;
    }
}


/* Mobile */
@media (max-width: 575.98px) {

    .hs-about-pro-l1 {
        padding: 42px 0 !important;
    }

    .hs-about-pro-l1 .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-content {
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }

    .hs-about-pro-l1 .hs-about-pro-label {
        font-size: 11px !important;
        padding: 6px 13px !important;
        margin-bottom: 10px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-title .site-heading {
        margin-bottom: 14px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-title .site-title,
    .hs-about-pro-l1 .site-title {
        font-size: 23px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l1 .hs-about-pro-editor {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .hs-about-pro-l1 .hs-about-pro-editor p {
        margin-bottom: 12px !important;
    }

    .hs-about-pro-l1 .hs-about-pro-btn {
        width: auto !important;
        min-height: 38px !important;
        padding: 9px 16px !important;
        font-size: 13px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-box {
        padding: 18px 14px !important;
        border-radius: 22px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head h3 {
        font-size: 20px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-head i {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-item {
        overflow: hidden !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slide-card {
        padding: 16px 12px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .hs-about-pro-l1 .hs-about-gov-card-count {
        font-size: 12px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-img {
        width: 105px !important;
        height: 105px !important;
        margin: 0 auto 12px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-img img {
        width: 105px !important;
        height: 105px !important;
        object-fit: cover !important;
    }

    .hs-about-pro-l1 .hs-about-gov-info h5 {
        font-size: 16px !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l1 .hs-about-gov-info span {
        font-size: 13px !important;
        line-height: 1.35 !important;
        display: block !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 14px !important;
        pointer-events: auto !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-prev,
    .hs-about-pro-l1 .hs-about-governing-slider .owl-nav button.owl-next {
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        margin: 0 !important;
        background: var(--about-primary, #0f3d5e) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }

    .hs-about-pro-l1 .hs-about-governing-slider .owl-dots {
        margin-top: 10px !important;
    }

    .hs-about-pro-l1 .hs-about-pro-pattern {
        opacity: 0.35 !important;
    }

    .hs-about-pro-l1 .hs-about-pro-shape {
        display: none !important;
    }
}


/* Very small phones */
@media (max-width: 360px) {

    .hs-about-pro-l1 .hs-about-l1-content {
        padding: 20px 14px !important;
    }

    .hs-about-pro-l1 .hs-about-l1-title .site-title,
    .hs-about-pro-l1 .site-title {
        font-size: 21px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slider-box {
        padding: 16px 10px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-img,
    .hs-about-pro-l1 .hs-about-gov-img img {
        width: 92px !important;
        height: 92px !important;
    }
}

/* =====================================================
   ABOUT LAYOUT 2 - MOBILE RESPONSIVE + SLIDER ARROW FIX
   Paste at END of about.css
   ===================================================== */

/* Single section case */
.hs-about-pro-l2 .hs-about-l2-shell.hs-about-l2-single {
    grid-template-columns: 1fr !important;
}

.hs-about-pro-l2 .hs-about-l2-shell.hs-about-l2-single > div {
    width: 100% !important;
    max-width: 100% !important;
}

/* Prevent grid overflow */
.hs-about-pro-l2 .hs-about-l2-shell > div,
.hs-about-pro-l2 .hs-about-l2-governance,
.hs-about-pro-l2 .hs-about-l2-content,
.hs-about-pro-l2 .hs-about-gov-slider-box {
    min-width: 0 !important;
}

/* Desktop arrow distance */
.hs-about-pro-l2 .hs-about-gov-slider-box {
    position: relative !important;
    overflow: visible !important;
}

.hs-about-pro-l2 .hs-about-governing-slider {
    position: relative !important;
    overflow: visible !important;
}

.hs-about-pro-l2 .hs-about-governing-slider .owl-stage-outer {
    overflow: hidden !important;
}

.hs-about-pro-l2 .hs-about-governing-slider .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: -22px !important;
    right: -22px !important;
    width: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    pointer-events: none !important;
    z-index: 20 !important;
    margin: 0 !important;
}

.hs-about-pro-l2 .hs-about-governing-slider .owl-nav button.owl-prev,
.hs-about-pro-l2 .hs-about-governing-slider .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--about-secondary, #0b7285) !important;
    color: #ffffff !important;
    border: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: all !important;
    font-size: 14px !important;
    line-height: 1 !important;
    margin: 0 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease !important;
}

.hs-about-pro-l2 .hs-about-governing-slider .owl-nav button:hover {
    background: #ffffff !important;
    color: var(--about-primary, #0f3d5e) !important;
}

.hs-about-pro-l2 .hs-about-governing-slider .owl-nav button i {
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Tablet */
@media (max-width: 991.98px) {

    .hs-about-pro-l2 {
        padding: 55px 0 !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-l2-shell {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content {
        padding: 30px !important;
        border-radius: 28px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px !important;
        border-radius: 28px !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-head h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-head i {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content .site-title,
    .hs-about-pro-l2 .site-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l2 .hs-about-pro-editor {
        font-size: 15px !important;
        line-height: 1.75 !important;
        text-align: justify !important;
        overflow-wrap: break-word !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slide-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img,
    .hs-about-pro-l2 .hs-about-gov-img img {
        width: 120px !important;
        height: 120px !important;
        object-fit: cover !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-nav {
        left: 8px !important;
        right: 8px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .hs-about-pro-l2 {
        padding: 42px 0 !important;
    }

    .hs-about-pro-l2 .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-shell {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content {
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }

    .hs-about-pro-l2 .hs-about-pro-label {
        font-size: 11px !important;
        padding: 6px 13px !important;
        margin-bottom: 10px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content .site-heading {
        margin-bottom: 14px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content .site-title,
    .hs-about-pro-l2 .site-title {
        font-size: 23px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l2 .hs-about-pro-editor {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .hs-about-pro-l2 .hs-about-pro-editor p {
        margin-bottom: 12px !important;
    }

    .hs-about-pro-l2 .hs-about-pro-btn {
        min-height: 38px !important;
        padding: 9px 16px !important;
        font-size: 13px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-box {
        padding: 18px 14px !important;
        border-radius: 22px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-head {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-head h3 {
        font-size: 20px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-head i {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-item {
        overflow: hidden !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slide-card {
        padding: 16px 12px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .hs-about-pro-l2 .hs-about-gov-card-count {
        font-size: 12px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img {
        width: 105px !important;
        height: 105px !important;
        margin: 0 auto 12px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img img {
        width: 105px !important;
        height: 105px !important;
        object-fit: cover !important;
    }

    .hs-about-pro-l2 .hs-about-gov-info h5 {
        font-size: 16px !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
        word-break: break-word !important;
    }

    .hs-about-pro-l2 .hs-about-gov-info span {
        font-size: 13px !important;
        line-height: 1.35 !important;
        display: block !important;
        word-break: break-word !important;
    }

    /* On mobile, keep arrows below slider so they do not overlap the card */
    .hs-about-pro-l2 .hs-about-governing-slider .owl-nav {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 14px !important;
        pointer-events: auto !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-nav button.owl-prev,
    .hs-about-pro-l2 .hs-about-governing-slider .owl-nav button.owl-next {
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        margin: 0 !important;
        background: var(--about-secondary, #0b7285) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }

    .hs-about-pro-l2 .hs-about-governing-slider .owl-dots {
        margin-top: 10px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-grid-bg {
        opacity: 0.45 !important;
    }
}

/* Very small phones */
@media (max-width: 360px) {

    .hs-about-pro-l2 .hs-about-l2-content {
        padding: 20px 14px !important;
    }

    .hs-about-pro-l2 .hs-about-l2-content .site-title,
    .hs-about-pro-l2 .site-title {
        font-size: 21px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slider-box {
        padding: 16px 10px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img,
    .hs-about-pro-l2 .hs-about-gov-img img {
        width: 92px !important;
        height: 92px !important;
    }
}

/* =====================================================
   ABOUT GOVERNING SLIDER - BIGGER PHOTO SIZE
   Paste at END of about.css
   ===================================================== */

/* Desktop */
.hs-about-gov-img {
    width: 175px !important;
    height: 175px !important;
    margin: 0 auto 18px !important;
}

.hs-about-gov-img img {
    width: 175px !important;
    height: 175px !important;
    object-fit: cover !important;
}

/* For old/default governing card also */
.hs-governing-img img,
.hs-about-default .hs-governing-img img {
    width: 175px !important;
    height: 175px !important;
    object-fit: cover !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .hs-about-gov-img {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto 16px !important;
    }

    .hs-about-gov-img img {
        width: 150px !important;
        height: 150px !important;
    }

    .hs-governing-img img,
    .hs-about-default .hs-governing-img img {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hs-about-gov-img {
        width: 135px !important;
        height: 135px !important;
        margin: 0 auto 14px !important;
    }

    .hs-about-gov-img img {
        width: 135px !important;
        height: 135px !important;
    }

    .hs-governing-img img,
    .hs-about-default .hs-governing-img img {
        width: 135px !important;
        height: 135px !important;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hs-about-gov-img {
        width: 120px !important;
        height: 120px !important;
    }

    .hs-about-gov-img img {
        width: 120px !important;
        height: 120px !important;
    }

    .hs-governing-img img,
    .hs-about-default .hs-governing-img img {
        width: 120px !important;
        height: 120px !important;
    }
}


/* =====================================================
   ABOUT LAYOUT 3 - MOBILE RESPONSIVE + GOVERNING SLIDER FIX
   Paste at END of about.css
   ===================================================== */

/* Basic overflow safety */
.hs-about-fresh-three,
.hs-about-fresh-three * {
    box-sizing: border-box;
}

.hs-about-fresh-three {
    overflow: hidden !important;
}

.hs-about-fresh-three .hs-about-f3-shell,
.hs-about-fresh-three .hs-about-f3-about,
.hs-about-fresh-three .hs-about-f3-governing,
.hs-about-fresh-three .hs-about-gov-slider-box {
    min-width: 0 !important;
}

/* Single section case */
.hs-about-fresh-three .hs-about-f3-shell.hs-about-f3-single {
    grid-template-columns: 1fr !important;
}

.hs-about-fresh-three .hs-about-f3-shell.hs-about-f3-single > div {
    width: 100% !important;
    max-width: 100% !important;
}

/* Desktop arrow distance */
.hs-about-fresh-three .hs-about-gov-slider-box {
    position: relative !important;
    overflow: visible !important;
}

.hs-about-fresh-three .hs-about-governing-slider {
    position: relative !important;
    overflow: visible !important;
}

.hs-about-fresh-three .hs-about-governing-slider .owl-stage-outer {
    overflow: hidden !important;
}

.hs-about-fresh-three .hs-about-governing-slider .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: -22px !important;
    right: -22px !important;
    width: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    pointer-events: none !important;
    z-index: 20 !important;
    margin: 0 !important;
}

.hs-about-fresh-three .hs-about-governing-slider .owl-nav button.owl-prev,
.hs-about-fresh-three .hs-about-governing-slider .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--about-primary, #0f3d5e) !important;
    color: #ffffff !important;
    border: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: all !important;
    font-size: 14px !important;
    line-height: 1 !important;
    margin: 0 !important;
    box-shadow: 0 12px 28px rgba(15, 61, 94, 0.25) !important;
}

.hs-about-fresh-three .hs-about-governing-slider .owl-nav button:hover {
    background: var(--about-secondary, #0b7285) !important;
    color: #ffffff !important;
}

/* Tablet */
@media (max-width: 991.98px) {

    .hs-about-fresh-three {
        padding: 55px 0 !important;
    }

    .hs-about-fresh-three .hs-about-f3-shell {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .hs-about-fresh-three .hs-about-f3-about,
    .hs-about-fresh-three .hs-about-f3-governing {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hs-about-fresh-three .hs-about-f3-about {
        padding: 30px !important;
        border-radius: 28px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-row {
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-no {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        font-size: 18px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text {
        min-width: 0 !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text .site-title,
    .hs-about-fresh-three .site-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-f3-editor {
        font-size: 15px !important;
        line-height: 1.75 !important;
        text-align: justify !important;
        overflow-wrap: break-word !important;
    }

    .hs-about-fresh-three .hs-about-f3-governing-cover {
        padding: 26px !important;
        border-radius: 28px !important;
        text-align: center !important;
    }

    .hs-about-fresh-three .hs-about-f3-governing-cover h3 {
        font-size: 25px !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px !important;
        border-radius: 28px !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-gov-slide-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        border-radius: 22px !important;
        text-align: center !important;
    }

    .hs-about-fresh-three .hs-about-gov-img,
    .hs-about-fresh-three .hs-about-gov-img img {
        width: 170px !important;
        height: 170px !important;
        object-fit: cover !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-nav {
        left: 8px !important;
        right: 8px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .hs-about-fresh-three {
        padding: 42px 0 !important;
    }

    .hs-about-fresh-three .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hs-about-fresh-three .hs-about-f3-shell {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
    }

    .hs-about-fresh-three .hs-about-f3-about {
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-row {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-no {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 14px !important;
        font-size: 15px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text {
        min-width: 0 !important;
        width: 100% !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text .site-heading {
        margin-bottom: 12px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text .site-title,
    .hs-about-fresh-three .site-title {
        font-size: 22px !important;
        line-height: 1.28 !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-f3-editor {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .hs-about-fresh-three .hs-about-f3-editor p {
        margin-bottom: 12px !important;
    }

    .hs-about-fresh-three .hs-about-f3-btn {
        min-height: 38px !important;
        padding: 9px 16px !important;
        font-size: 13px !important;
    }

    .hs-about-fresh-three .hs-about-f3-governing-cover {
        padding: 20px 16px !important;
        border-radius: 22px !important;
        text-align: center !important;
        margin-bottom: 16px !important;
    }

    .hs-about-fresh-three .hs-about-f3-governing-cover span {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .hs-about-fresh-three .hs-about-f3-governing-cover h3 {
        font-size: 21px !important;
        line-height: 1.25 !important;
        margin: 0 !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-box {
        padding: 18px 14px !important;
        border-radius: 22px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-head {
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 14px !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-head > div {
        width: 100% !important;
        text-align: center !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-head h3 {
        font-size: 20px !important;
        line-height: 1.25 !important;
        text-align: center !important;
        margin: 0 auto !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-item {
        overflow: hidden !important;
    }

    .hs-about-fresh-three .hs-about-gov-slide-card {
        padding: 18px 12px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .hs-about-fresh-three .hs-about-gov-card-count {
        font-size: 12px !important;
    }

    .hs-about-fresh-three .hs-about-gov-img {
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto 16px !important;
    }

    .hs-about-fresh-three .hs-about-gov-img img {
        width: 160px !important;
        height: 160px !important;
        object-fit: cover !important;
    }

    .hs-about-fresh-three .hs-about-gov-info h5 {
        font-size: 17px !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
        word-break: break-word !important;
    }

    .hs-about-fresh-three .hs-about-gov-info span {
        font-size: 13px !important;
        line-height: 1.35 !important;
        display: block !important;
        word-break: break-word !important;
    }

    /* Mobile arrows below slider */
    .hs-about-fresh-three .hs-about-governing-slider .owl-nav {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 14px !important;
        pointer-events: auto !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-nav button.owl-prev,
    .hs-about-fresh-three .hs-about-governing-slider .owl-nav button.owl-next {
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        margin: 0 !important;
        background: var(--about-primary, #0f3d5e) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }

    .hs-about-fresh-three .hs-about-governing-slider .owl-dots {
        margin-top: 10px !important;
    }

    .hs-about-fresh-three .hs-about-f3-ring,
    .hs-about-fresh-three .hs-about-f3-slab {
        display: none !important;
    }

    .hs-about-fresh-three .hs-about-f3-bg {
        opacity: 0.4 !important;
    }
}

/* Very small phones */
@media (max-width: 360px) {

    .hs-about-fresh-three .hs-about-f3-about {
        padding: 20px 14px !important;
    }

    .hs-about-fresh-three .hs-about-f3-title-text .site-title,
    .hs-about-fresh-three .site-title {
        font-size: 20px !important;
    }

    .hs-about-fresh-three .hs-about-gov-slider-box {
        padding: 16px 10px !important;
    }

    .hs-about-fresh-three .hs-about-gov-img,
    .hs-about-fresh-three .hs-about-gov-img img {
        width: 145px !important;
        height: 145px !important;
    }
}

/* ================= ABOUT LAYOUT 1 GOVERNING IMAGE MOBILE SIZE FIX ================= */

.hs-about-pro-l1 .hs-about-gov-img {
    width: 180px !important;
    height: 180px !important;
    margin: 12px auto 20px auto !important;
    border-radius: 50% !important;
    padding: 5px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hs-about-pro-l1 .hs-about-gov-img img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .hs-about-pro-l1 .hs-about-gov-img {
        width: 165px !important;
        height: 165px !important;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hs-about-pro-l1 .hs-about-gov-img {
        width: 180px !important;
        height: 180px !important;
        margin-bottom: 22px !important;
    }

    .hs-about-pro-l1 .hs-about-gov-slide-card {
        min-height: 330px !important;
        padding: 26px 18px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .hs-about-pro-l1 .hs-about-gov-img {
        width: 250px !important;
        height: 250px !important;
    }
}

/* ================= ABOUT LAYOUT 2 GOVERNING IMAGE MOBILE FIX - SQUARE STYLE ================= */

/* Desktop / default square image */
.hs-about-pro-l2 .hs-about-gov-img {
    width: 145px !important;
    height: 145px !important;
    margin: 12px auto 18px auto !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    padding: 5px !important;
}

.hs-about-pro-l2 .hs-about-gov-img img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Tablet */
@media (max-width: 991.98px) {
    .hs-about-pro-l2 .hs-about-gov-img {
        width: 165px !important;
        height: 165px !important;
        border-radius: 24px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img img {
        border-radius: 20px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slide-card {
        min-height: 320px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hs-about-pro-l2 .hs-about-gov-img {
        width: 185px !important;
        height: 185px !important;
        margin-bottom: 22px !important;
        border-radius: 26px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img img {
        border-radius: 22px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slide-card {
        min-height: 350px !important;
        padding: 28px 18px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-info h5 {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .hs-about-pro-l2 .hs-about-gov-info span {
        font-size: 14px !important;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .hs-about-pro-l2 .hs-about-gov-img {
        width: 190px !important;
        height: 190px !important;
        border-radius: 24px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-img img {
        border-radius: 20px !important;
    }

    .hs-about-pro-l2 .hs-about-gov-slide-card {
        min-height: 330px !important;
    }
}