* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    -webkit-text-size-adjust: 100%;
}

/* Page enter transition (triggered from service card navigation) */
body.page-enter-from-bottom {
    opacity: 0;
    transform: translate3d(0, 100vh, 0);
    will-change: transform, opacity;
}

body.page-enter-from-bottom.page-enter-active {
    animation: page-enter-from-bottom 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes page-enter-from-bottom {
    from {
        opacity: 0;
        transform: translate3d(0, 100vh, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Reverse page enter transition (used when pressing Back/Exit) */
body.page-enter-from-top {
    opacity: 0;
    transform: translate3d(0, -100vh, 0);
    will-change: transform, opacity;
}

body.page-enter-from-top.page-enter-active {
    animation: page-enter-from-top 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes page-enter-from-top {
    from {
        opacity: 0;
        transform: translate3d(0, -100vh, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Legacy class kept harmless */
body.page-exit-to-down {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    will-change: transform, opacity;
}

body.page-exit-to-down.page-exit-active {
    animation: page-exit-to-down 520ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes page-exit-to-down {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-enter-from-bottom,
    body.page-enter-from-bottom.page-enter-active,
    body.page-enter-from-top,
    body.page-enter-from-top.page-enter-active,
    body.page-exit-to-down,
    body.page-exit-to-down.page-exit-active {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: relative;
    z-index: 100;
    min-height: 108px;
    height: auto;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Navbar scroll behavior - only on home page */
.home-page .navbar {
    position: fixed;
    bottom: -100px !important;
    top: auto !important;
    left: 0;
    right: 0;
    transition: bottom 0.4s ease, top 0.1s linear, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.home-page .navbar.navbar-visible {
    opacity: 1;
    pointer-events: auto;
}

.home-page .navbar.navbar-visible:not(.navbar-sticky) {
    bottom: 0 !important;
    top: auto !important;
}

.home-page .navbar.navbar-sticky {
    position: fixed !important;
    bottom: auto !important;
    top: 0 !important;
    opacity: 1;
    pointer-events: auto;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
    pointer-events: none;
}

.nav-logo {
    position: relative;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #16a34a;
}

.nav-logo-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #16a34a;
    background: #22c55e;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3);
}

.nav-logo-placeholder.show {
    display: block;
}

.menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.menu li {
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: #111;
    line-height: 24px;
    font-family: Metropolis, "Nirmala Text", "Segoe UI", system-ui, sans-serif;
}

.menu .menu-link {
    color: #000;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-style: normal;
    font-weight: inherit;
    line-height: inherit;
}

.menu .menu-link:hover {
    color: #0d6efd;
}

.menu .active {
    border-bottom: 2px solid #111;
    padding-bottom: 4px;
}

.menu .active .menu-link {
    color: #111;
}

.contact-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-btn.contact-btn--nav-active {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85);
    outline: 2px solid #111;
    outline-offset: 2px;
}

.navbar-end {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

/* Desktop: center nav links in the bar; logo left, contact stays right */
@media (min-width: 993px) {
    .navbar-end .menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        margin: 0;
    }
}

.nav-toggle {
    display: none;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    color: #111;
}

.nav-toggle:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.site-nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.site-nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.site-nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    background-color: #eef1f4;
    position: relative;
}

/* Home hero only: cow watermark behind content (real <img> so URL matches asset() / subpaths) */
.home-page .hero-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.home-page .hero-watermark img {
    width: min(98vw, 1500px);
    max-height: 120vh;
    height: auto;
    object-fit: contain;
    /* Source art is very pale mint lines — needs stronger presence to read on #eef1f4 */
    opacity: 0.55;
    filter: contrast(1.35) saturate(1.15);
    mix-blend-mode: multiply;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 156px;
    height: 156px;
    object-fit: contain;
}

.reg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #16a34a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
}

.reg-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.hero h1 {
    color: #16a34a;
    text-align: center;
    font-family: Metropolis, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-transform: uppercase;
}

.hero h1 .hero-title-line1 {
    display: block;
    text-align: center;
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero h1 .hero-title-line2 {
    display: block;
    text-align: center;
}

.hero-title-keep {
    white-space: nowrap;
}

.hero p {
    display: block;
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 32px;
    color: #444;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.hero p .hero-sub-line1 {
    white-space: nowrap;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px 60px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    flex: 1;
    min-width: 220px;
    transition: background 0.2s ease;
}

.hero-btn:hover {
    background: #0b5ed7;
}

.hero-btn--pay {
    background: #16a34a;
}

.hero-btn--pay:hover {
    background: #15803d;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffffff;
    padding: 80px 60px;
    /* Hardware acceleration for smooth scrolling */
    will-change: transform;
    transform: translateZ(0);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-direction: row;
}

/* LEFT SIDE - picture at left (must appear first) */
.about-left {
    flex: 0 0 450px;
    min-width: 0;
    order: 0;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #059669;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.about-tag .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

/* IMAGE */
.about-image {
    margin: 0;
    margin-top: -15px;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    border: 1px solid #000;
    display: block;
}

/* RIGHT SIDE - description at right (must appear second) */
.about-right {
    flex: 1;
    min-width: 0;
    margin-top: 31px;
    order: 1;
    display: flex;
    flex-direction: column;
}

.about-right p {
    font-size: 16px;
    color: #222;
    line-height: 1.75;
    margin-bottom: 20px;
    margin-top: 0;
}

/* BUTTON */
.about-btn-wrap {
    text-align: right;
    margin-top: 20px;
    margin-bottom: 0;
}

.about-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .about-section {
        padding: 60px 24px;
    }
    .about-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    .about-left {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    .about-right {
        margin-top: 0;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, #85AEDE 0%, #89A4C6 100%);
    padding: 80px 60px 90px;
    /* Hardware acceleration for smooth scrolling */
    will-change: transform;
    transform: translateZ(0);
}

.services-header {
    width: 100%;
    margin: 0 0 44px 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    text-align: left;
}

.services-header-text {
    flex: 0 1 auto;
    min-width: 280px;
    text-align: left;
}

.services-title {
    font-family: "Nirmala Text", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: left;
}

.services-subtitle {
    font-size: 16px;
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.services-cta-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
}

.services-cta-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

.services-scroll-wrap {
    margin: 0 -60px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Hardware acceleration for smooth scrolling */
    will-change: scroll-position;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.services-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.services-scroll {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    width: max-content;
    /* Hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
}

.service-card-new {
    flex-shrink: 0;
    width: 320px;
    background: #DCEAFB;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 200px;
    background: #e8e8e8;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    padding: 24px;
    background: #DCEAFB;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 14px;
    color: rgba(17, 17, 17, 0.78);
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 14px 40px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    align-self: center;
}

.service-card-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

@media (max-width: 900px) {
    .services-section {
        padding: 60px 24px 70px;
    }
    .services-header {
        margin-bottom: 32px;
    }
    .services-title {
        font-size: 28px;
    }
    .services-scroll-wrap {
        margin: 0 -24px;
    }
    .services-scroll {
        padding: 0 24px;
        gap: 20px;
    }
    .service-card-new {
        width: 280px;
    }
    .service-card-img {
        height: 180px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-image: url("/images/why.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 60px;
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Hardware acceleration for smooth scrolling */
    will-change: transform;
    transform: translateZ(0);
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    /* Glass effect box */
    background: rgba(255, 252, 240, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 48px 56px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.cta-container h2 {
    font-family: "Nirmala Text", sans-serif;
    font-size: 38px;
    font-weight: 900 !important;
    color: #111;
    margin-bottom: 10px;
    text-shadow: 0 0 0 #000, 0.35px 0 #000, -0.35px 0 #000;
    -webkit-text-stroke: 0.35px #000;
}

.cta-subtitle {
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    color: rgba(17, 17, 17, 0.75);
    margin-bottom: 26px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
    background: #f3c34a;
    color: #1a1a1a;
    min-width: 160px;
}

.cta-btn.secondary {
    background: #d9b24a;
}

.cta-panels {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 32px;
    align-items: start;
    max-width: 1008px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.cta-panel {
    position: relative;
    isolation: isolate;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    display: flex;
    padding: 40px 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 400px;
    height: 400px;
    text-align: left;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0b410 0%, #e8d4a4 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.14),
        0 4px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.cta-panel:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.cta-panel:hover::before {
    opacity: 1;
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.16),
        0 6px 14px rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    .cta-panel {
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-panel::before {
        transition: opacity 0.2s ease;
    }

    .cta-panel:hover {
        transform: none;
    }
}

.cta-panel h3 {
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 14px;
}

.cta-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 22px;
}

.cta-panel li {
    position: relative;
    padding-left: 28px;
    color: #000;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.cta-panel li::before {
    content: "📌";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 1;
    filter: grayscale(1);
}

.cta-panel-image {
    padding: 0;
    overflow: hidden;
}

.cta-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .cta-section {
        padding: 60px 24px;
        min-height: auto;
    }

    .cta-container {
        padding: 36px 24px;
        border-radius: 16px;
    }

    .cta-container h2 {
        font-size: 30px;
    }

    .cta-panels {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cta-panel {
        width: 100%;
        max-width: 488px;
        height: auto;
        min-height: 455px;
    }
}

/* ===== UNLOCK / VIDEO SECTION ===== */
.unlock-section {
    background: #b8c5d1;
    padding: 100px 60px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    /* Hardware acceleration for smooth scrolling */
    will-change: transform;
    transform: translateZ(0);
}

.unlock-wrap {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 480px);
    gap: 36px;
    align-items: center;
    background: #000000;
    border-radius: 16px;
    padding: 28px 48px;
    min-height: 0;
}

.unlock-content {
    padding-right: 20px;
    text-align: left;
}

.unlock-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 8px 0;
    text-align: left;
}

.unlock-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 14px 0;
    text-align: left;
}

.unlock-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.unlock-btn:hover {
    opacity: 0.9;
}

.unlock-media {
    border-radius: 10px;
    overflow: hidden;
    background: #0d0e11;
    max-width: 480px;
}

.unlock-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 320px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .unlock-section {
        padding: 70px 24px;
    }

    .unlock-wrap {
        grid-template-columns: 1fr;
        padding: 32px 28px;
        gap: 28px;
    }

    .unlock-content {
        padding-right: 0;
    }

    .unlock-title {
        font-size: 22px;
    }

    .unlock-media {
        order: -1;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #fafafa;
    padding: 80px 60px 90px;
    position: relative;
    z-index: 2;
}

.faq-heading {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 0 0 48px 0;
}

.faq-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

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

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-chevron {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-chevron::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 0;
    transition: transform 0.3s ease, margin 0.3s ease;
}

.faq-item.is-open .faq-chevron::after {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    padding: 0 20px;
    border-top: 1px solid transparent;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out, border-color 0.25s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 320px;
    padding: 16px 20px 18px 20px;
    border-top-color: #e5e5e5;
}

.faq-answer p {
    margin: 0;
    padding-left: 4px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Legacy: keep aria-expanded styling if JS hasn't run yet */
.faq-item [aria-expanded="true"] .faq-chevron::after {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.faq-cta-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 36px 28px 32px;
    text-align: center;
    position: sticky;
    top: 24px;
}

.faq-cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-cta-icon svg {
    width: 40px;
    height: 40px;
}

.faq-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
}

.faq-cta-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 24px 0;
}

.faq-cta-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: opacity 0.2s;
}

.faq-cta-btn:hover {
    opacity: 0.9;
}

@media (max-width: 900px) {
    .faq-section {
        padding: 60px 24px 70px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-cta-card {
        position: static;
    }
}

/* ===== SUPPORT BANNER (Expert assistance) ===== */
.support-banner {
    background: linear-gradient(135deg, #5b8fd6 0%, #6b9dd4 50%, #7aa8dc 100%);
    padding: 56px 60px 52px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset;
}

.support-banner-inner {
    max-width: 100%;
    margin: 0;
    padding-right: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.support-banner-left {
    text-align: left;
    padding-right: 20px;
    margin-left: 56px;
    justify-self: start;
}

.support-banner-left .support-banner-btn {
    margin-top: 4px;
}

.support-banner-title {
    font-family: "Nirmala Text", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.25;
    white-space: nowrap;
}

.support-banner-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 24px 0;
    line-height: 1.5;
    white-space: nowrap;
}

.support-banner-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.support-banner-btn:hover {
    opacity: 0.92;
}

.support-banner-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-left: 200px;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: left;
    flex: 0 1 auto;
    min-width: 260px;
}

.support-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.support-feature-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
}

.support-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.support-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    min-width: 200px;
}

.support-feature-text strong {
    color: #FFF;
    font-family: "Nirmala Text", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.support-feature-text span {
    color: #FFF;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.support-person {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 42vw;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.support-person img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}

@media (max-width: 992px) {
    .support-banner-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding-right: 0;
    }

    .support-banner-left {
        text-align: center;
        padding-right: 0;
        margin-left: 0;
    }

    .support-banner-right {
        flex-direction: column;
        justify-content: center;
    }

    .support-features {
        align-items: center;
        text-align: center;
    }

    .support-feature {
        justify-content: center;
    }

    .support-person {
        position: relative;
        width: 200px;
        max-width: none;
        height: auto;
        margin: 24px auto 0;
    }
}

@media (max-width: 768px) {
    .support-banner {
        padding: 48px 24px 40px;
    }

    .support-banner-title,
    .support-banner-desc {
        white-space: normal;
    }

    .support-banner-title {
        font-size: 24px;
    }

    .support-person {
        width: 180px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-page {
    /* Pale white-green at top → slightly darker light green at bottom */
    background: linear-gradient(180deg, #f4fbf6 0%, #e8f5e9 50%, #d4edda 100%);
    padding: 0 0 80px 0;
    min-height: calc(100vh - 108px);
    position: relative;
    overflow: visible;
}

/* Services page: remove extra bottom space so footer sits flush */
.about-page.services-page {
    padding-bottom: 0;
    min-height: auto;
}

html.services-page-root {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html.services-page-root {
        scroll-behavior: auto;
    }
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    background: #ffffff;
}

.gallery-hero {
    background: #bfe1ff;
    padding: 110px 48px 0;
    overflow: hidden;
}

.gallery-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 20px;
}

.gallery-hero-left {
    text-align: center;
    padding-top: 10px;
}

.gallery-hero-title {
    margin: 0 0 6px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.gallery-hero-subtitle {
    margin: 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.75);
}

.gallery-hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gallery-hero-image {
    width: min(1120px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    .gallery-hero {
        padding: 96px 20px 0;
    }

    .gallery-hero-title {
        font-size: 32px;
    }
}

/* ===== CAREERS PAGE ===== */
.careers-page {
    background: #ffffff;
    min-height: 100vh;
}

.careers-hero {
    background: #e1fde8;
    padding: clamp(72px, 14vh, 120px) 48px clamp(56px, 10vh, 88px);
}

.careers-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.careers-hero-content {
    text-align: left;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #008e44;
    color: #ffffff;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    padding: 9px 28px;
    border-radius: 5px;
    margin: 0 0 22px 0;
}

.careers-hero-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #15ff5e;
    flex-shrink: 0;
    box-shadow:
        0 0 6px 2px rgba(21, 255, 94, 0.55),
        0 0 12px 4px rgba(21, 255, 94, 0.35);
}

.careers-hero-title {
    margin: 0 0 18px 0;
    color: #009444;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.careers-hero-title-line {
    display: block;
}

.careers-hero-lead {
    margin: 0 0 28px 0;
    color: #000;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 34em;
}

.careers-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.careers-btn {
    display: inline-block;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.careers-btn-primary {
    background: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.careers-btn-primary:hover {
    opacity: 0.94;
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.careers-btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #93c5fd;
}

.careers-btn-outline:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: #3b82f6;
    color: #2563eb;
}

.careers-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    .careers-hero {
        padding: 56px 20px 48px;
    }

    .careers-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-hero-visual {
        order: 2;
    }

    .careers-hero-content {
        order: 1;
    }

}

/* Careers — shared section headings */
.careers-about-title,
.careers-why-title,
.careers-jobs-title,
.careers-apply-title {
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Careers — About Our Careers */
.careers-about {
    background: #ffffff;
    padding: clamp(64px, 10vw, 100px) 48px clamp(72px, 12vw, 110px);
}

.careers-about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.careers-about-header {
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 72px);
}

.careers-about-title {
    margin: 0 0 16px 0;
}

.careers-about-accent {
    display: block;
    width: 56px;
    height: 3px;
    margin: 0 auto 20px;
    background: #22c55e;
    border-radius: 2px;
}

.careers-about-subtitle {
    margin: 0 auto;
    max-width: 36em;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #4b5563;
}

.careers-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.careers-about-card {
    position: relative;
    isolation: isolate;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    padding: clamp(26px, 3.5vw, 36px) clamp(22px, 3vw, 28px) clamp(28px, 3.5vw, 38px);
    margin: 0;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid transparent;
    transition: transform 0.28s ease;
}

.careers-about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(180deg, #c8fedf 0%, #62ffa5 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 10px 28px rgba(15, 61, 38, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.35) inset;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.careers-about-card:hover {
    transform: translateY(-2px);
}

.careers-about-card:hover::before {
    opacity: 1;
    box-shadow:
        0 14px 36px rgba(15, 61, 38, 0.16),
        0 6px 14px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

@media (prefers-reduced-motion: reduce) {
    .careers-about-card {
        transition: transform 0.2s ease;
    }

    .careers-about-card::before {
        transition: opacity 0.2s ease;
    }

    .careers-about-card:hover {
        transform: none;
    }
}

.careers-about-icon-wrap {
    margin-bottom: 22px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-about-icon-wrap-discipline {
    padding-right: 8px;
}

.careers-about-icon {
    width: 100px;
    height: 100px;
    display: block;
}

.careers-about-card-title {
    margin: 0 0 14px 0;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
}

.careers-about-card-text {
    margin: 0;
    font-family: "Nirmala Text", "Nirmala UI", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #000000;
    max-width: 28em;
}

@media (max-width: 768px) {
    .careers-about {
        padding: 48px 20px 64px;
    }

    .careers-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-about-header {
        margin-bottom: 40px;
    }

    .careers-about-subtitle {
        font-size: 15px;
    }
}

/* Careers — Why Join Us */
.careers-why {
    background: #eefcf5;
    padding: clamp(64px, 10vw, 100px) 48px clamp(72px, 12vw, 110px);
}

.careers-why-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.careers-why-header {
    text-align: center;
    margin-bottom: clamp(44px, 7vw, 64px);
}

.careers-why-title {
    margin: 0 0 16px 0;
}

.careers-why-accent {
    display: block;
    width: 56px;
    height: 3px;
    margin: 0 auto 18px;
    background: #22c55e;
    border-radius: 2px;
}

.careers-why-subtitle {
    margin: 0 auto;
    max-width: 40em;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #0a0a0a;
}

.careers-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

.careers-why-card {
    position: relative;
    isolation: isolate;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 20px;
    padding: clamp(22px, 3vw, 30px) clamp(16px, 2vw, 22px) clamp(24px, 3vw, 32px);
    margin: 0;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid transparent;
    transition: transform 0.28s ease;
}

.careers-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(180deg, #c8fedf 0%, #62ffa5 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 10px 28px rgba(15, 61, 38, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.35) inset;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.careers-why-card:hover {
    transform: translateY(-2px);
}

.careers-why-card:hover::before {
    opacity: 1;
    box-shadow:
        0 14px 36px rgba(15, 61, 38, 0.16),
        0 6px 14px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

@media (prefers-reduced-motion: reduce) {
    .careers-why-card:hover {
        transform: none;
    }

    .careers-why-card::before {
        transition: opacity 0.2s ease;
    }
}

.careers-why-icon-wrap {
    margin-bottom: 20px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-why-icon {
    width: 92px;
    height: 92px;
    display: block;
}

.careers-why-card-title {
    margin: 0 0 12px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

.careers-why-card-text {
    margin: 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    max-width: 22em;
}

@media (max-width: 1024px) {
    .careers-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
}

@media (max-width: 600px) {
    .careers-why {
        padding: 48px 20px 64px;
    }

    .careers-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-why-header {
        margin-bottom: 36px;
    }

    .careers-why-subtitle {
        font-size: 15px;
    }

    .careers-why-card-text {
        max-width: 36em;
    }
}

/* Careers — Job Positions */
.careers-jobs {
    background: #ffffff;
    padding: clamp(64px, 10vw, 100px) 48px clamp(72px, 12vw, 110px);
}

.careers-jobs-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.careers-jobs-header {
    text-align: center;
    margin-bottom: clamp(44px, 7vw, 64px);
}

.careers-jobs-title {
    margin: 0 0 16px 0;
}

.careers-jobs-accent {
    display: block;
    width: 56px;
    height: 3px;
    margin: 0 auto 18px;
    background: #22c55e;
    border-radius: 2px;
}

.careers-jobs-subtitle {
    margin: 0 auto;
    max-width: 40em;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #0a0a0a;
}

.careers-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
}

.careers-job-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: linear-gradient(180deg, #a7f3d0 0%, #98ffc3 100%);
    border-radius: 12px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 20px rgba(15, 61, 38, 0.06);
}

.careers-job-card-title {
    margin: 0 0 12px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0a0a0a;
}

.careers-job-card-desc {
    margin: 0 0 18px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #0a0a0a;
    flex-grow: 0;
}

.careers-job-card-list {
    margin: 0 0 22px 0;
    padding: 0 0 0 1.15em;
    font-family: "Nirmala Text", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #0a0a0a;
    list-style-type: disc;
}

.careers-job-card-list li {
    margin-bottom: 6px;
}

.careers-job-card-list li:last-child {
    margin-bottom: 0;
}

.careers-job-apply {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    padding: 14px 20px;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: #007bff;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.careers-job-apply:hover {
    background: #0069d9;
    color: #ffffff;
}

@media (max-width: 900px) {
    .careers-jobs-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .careers-jobs {
        padding: 48px 20px 64px;
    }

    .careers-jobs-header {
        margin-bottom: 36px;
    }

    .careers-jobs-grid {
        max-width: none;
    }

    .careers-jobs-subtitle {
        font-size: 15px;
    }

    .careers-job-card {
        padding: 24px 20px 20px;
    }
}

/* Careers — Apply Now */
.careers-apply {
    background: #dffbe5;
    padding: clamp(40px, 7vw, 72px) clamp(24px, 4vw, 48px) clamp(48px, 8vw, 80px);
}

.careers-apply-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.careers-apply-card {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: clamp(28px, 4vw, 40px);
}

.careers-apply-title {
    margin: 0 0 20px 0;
}

.careers-apply-rule {
    height: 1px;
    background: #d1d5db;
    margin: 0 0 28px 0;
}

.careers-apply-flash {
    margin: 0 0 20px 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
}

.careers-apply-flash--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.careers-apply-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.careers-apply-flash-title {
    margin: 0 0 8px 0;
    font-weight: 600;
}

.careers-apply-flash-list {
    margin: 0;
    padding-left: 1.25rem;
}

.careers-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.careers-apply-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.careers-apply-field--full {
    margin-bottom: 8px;
}

.careers-apply-label {
    color: #000000;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.careers-apply-input,
.careers-apply-textarea {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 10px 12px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    color: #111827;
}

.careers-apply-input:focus-visible,
.careers-apply-textarea:focus-visible,
.careers-apply-select:focus-visible {
    outline: 2px solid #0080ff;
    outline-offset: 1px;
}

.careers-apply-file:has(.careers-apply-file-input:focus-visible) {
    outline: 2px solid #0080ff;
    outline-offset: 1px;
}

.careers-apply-input::placeholder,
.careers-apply-textarea::placeholder {
    color: #9ca3af;
}

.careers-apply-textarea {
    resize: vertical;
    min-height: 120px;
}

.careers-apply-select-wrap {
    position: relative;
}

.careers-apply-select {
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 10px 40px 10px 12px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    color: #111827;
    cursor: pointer;
}

.careers-apply-select-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.careers-apply-file {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.careers-apply-file:hover {
    border-color: #9ca3af;
    background: #fafafa;
}

.careers-apply-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
}

.careers-apply-file-ui {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    pointer-events: none;
}

.careers-apply-file-icon {
    flex-shrink: 0;
    color: #6b7280;
}

.careers-apply-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.careers-apply-submit {
    background-color: #0080ff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 60px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.careers-apply-submit:hover {
    background-color: #0066cc;
}

.careers-apply-submit:active {
    transform: translateY(1px);
}

.careers-apply-submit:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .careers-apply-grid {
        grid-template-columns: 1fr;
    }

    .careers-apply-submit {
        width: 100%;
        max-width: 320px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ===== CAREERS: Job detail (e.g. Manager) ===== */
.job-detail-page .job-detail-hero {
    background: linear-gradient(105deg, #14532d 0%, #166534 28%, #22c55e 72%, #4ade80 100%);
    padding: 28px 48px 48px;
    color: #fff;
}

.job-detail-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.job-detail-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.job-detail-back {
    color: #fff;
    text-decoration: none;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    transition: opacity 0.15s ease;
}

.job-detail-back:hover {
    opacity: 1;
    text-decoration: underline;
}

.job-detail-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.job-detail-close:hover {
    background: rgba(255, 255, 255, 0.32);
    color: #fff;
}

.job-detail-title {
    margin: 0 0 10px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.job-detail-location {
    margin: 0 0 28px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.job-detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.job-detail-hero .careers-btn-primary.job-detail-hero-btn {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.job-detail-hero .careers-btn-primary.job-detail-hero-btn:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.job-detail-btn-outline {
    display: inline-block;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.job-detail-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.job-detail-main {
    background: #fff;
    padding: 48px 24px 56px;
    border-bottom: 1px solid #e5e7eb;
}

.job-detail-inner {
    max-width: 720px;
    margin: 0 auto;
}

.job-detail-block {
    margin-bottom: 36px;
}

.job-detail-block:last-child {
    margin-bottom: 0;
}

.job-detail-block-title {
    margin: 0 0 14px 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
}

.job-detail-text {
    margin: 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
}

.job-detail-ol {
    margin: 0;
    padding-left: 1.35rem;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.job-detail-ol li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.job-detail-ol li::marker {
    font-weight: 700;
    color: #166534;
}

.job-detail-ul {
    margin: 0;
    padding-left: 1.25rem;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
}

.job-detail-ul li {
    margin-bottom: 8px;
}

.job-detail-ul--plain {
    list-style: disc;
    padding-left: 1.35rem;
}

.job-detail-ul--plain li::marker {
    color: #166534;
}

.job-detail-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 8px 0 28px;
}

.job-detail-divider--bottom {
    margin: 32px 0 0;
}

@media (max-width: 640px) {
    .job-detail-page .job-detail-hero {
        padding: 20px 18px 36px;
    }

    .job-detail-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .job-detail-hero-actions .careers-btn,
    .job-detail-btn-outline {
        text-align: center;
    }
}

.about-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background-image: url("/images/wall.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

.about-page-hero {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 18vh, 140px) 48px 56px;
}

/* Services page - move content down a bit */
.services-page-hero {
    padding-top: clamp(280px, 38vh, 340px);
}

.about-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-hero-left {
    text-align: left;
}

.about-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1b5e20;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 10px;
    margin: 0 0 28px 0;
}

.about-page-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.about-page-title {
    color: #000;
    font-family: "Nirmala Text", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.about-hero-title-line {
    display: block;
    text-align: left;
}

/* Services hero heading color (green) */
.services-page .about-hero-title-line {
    color: #1b5e20;
}

.services-underline-image {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.services-underline-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-page-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    text-align: left;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

/* Orange-yellow gradient left to right, dark text – match reference image */
.about-hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #FFE082 0%, #FFC107 50%, #FFB300 100%);
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.about-hero-btn:hover {
    opacity: 0.92;
}

/* Services page specific styles */
.services-hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.services-hero-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.services-hero-btn-primary {
    background: #0d6efd;
    color: #fff;
    border: none;
}

.services-hero-btn-primary:hover {
    background: #0b5ed7;
    color: #fff;
}

.services-hero-btn-secondary {
    background: #fff;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.services-hero-btn-secondary:hover {
    background: #f0f7ff;
    color: #0b5ed7;
    border-color: #0b5ed7;
}

/* ===== SERVICES PAGE: Our Services Section ===== */
.services-our-services-section {
    background: #E5E5E5;
    padding: 80px 60px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-our-services-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-our-services-title {
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    margin: 0 0 60px 0;
}

.services-our-services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.services-our-services-card {
    background: linear-gradient(73deg, #06BBFC 0%, #046F96 100%);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-our-services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.services-our-services-icon {
    width: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    flex-wrap: wrap;
    gap: 4px;
}

.services-our-services-icon svg {
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.services-our-services-icon svg[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

.services-our-services-icon img {
    width: auto;
    height: 100%;
    max-height: 80px;
    object-fit: contain;
}

.services-our-services-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.services-our-services-card-desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 32px 0;
    flex: 1;
}

.services-our-services-btn {
    display: inline-block;
    background: #FFC107;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.services-our-services-btn:hover {
    background: #FFB300;
    transform: translateY(-2px);
    color: #000;
}

@media (max-width: 900px) {
    .services-our-services-section {
        padding: 60px 40px;
    }
    
    .services-our-services-title {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    
    .services-our-services-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-our-services-card {
        padding: 32px 24px;
    }
}

/* ===== SERVICES PAGE: Main Products Section ===== */
.services-main-products-section {
    background: #fff;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.services-main-products-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.services-main-products-title {
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 16px 0;
}

.services-main-products-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #22c55e;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.services-main-products-desc {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 48px;
}

.services-main-products-scroll-wrap {
    margin: 0 -60px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    /* Hardware acceleration for smooth scrolling */
    will-change: scroll-position;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.services-main-products-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.services-main-products-scroll {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    width: max-content;
    /* Hardware acceleration */
    transform: translateZ(0);
    will-change: transform;
}

.services-main-product-card {
    flex-shrink: 0;
    width: 320px;
    background: #f5f5f5;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-main-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.services-main-product-card:hover {
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4), 0 0 12px rgba(34, 197, 94, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #22c55e;
    transform: translateY(-2px);
}

.services-main-product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-main-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-main-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.services-main-product-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .services-main-products-section {
        padding: 60px 40px;
    }
    
    .services-main-products-title {
        font-size: 32px;
    }
    
    .services-main-products-scroll-wrap {
        margin: 0 -40px;
    }
    
    .services-main-products-scroll {
        padding: 0 40px;
        gap: 20px;
    }
    
    .services-main-product-card {
        width: 280px;
        padding: 28px 20px;
    }
}

/* ===== SERVICES PAGE: Loans Section ===== */
.services-loans-section {
    background: #fff;
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

.services-loans-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.services-loans-title {
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 64px 0 16px 0;
}

.services-loans-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #22c55e;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.services-loans-desc {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 48px;
}

.services-loans-scroll-wrap {
    margin: 0 -60px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.services-loans-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.services-loans-scroll {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    width: max-content;
}

.services-loan-card {
    flex-shrink: 0;
    width: 320px;
    background: #f5f5f5;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-loan-card:hover {
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4), 0 0 12px rgba(34, 197, 94, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #22c55e;
    transform: translateY(-2px);
}

.services-loan-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.services-loan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-loan-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-loan-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.services-loan-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES PAGE: Premium Products Section ===== */
/* Break out to viewport from inside .services-main-products-inner: 50% = parent width, not viewport */
.services-pp-wrap {
    margin: 48px 0 0;
    width: 100vw;
    position: relative;
    left: auto;
    right: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 0;
    overflow: hidden;
}

.services-pp-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-pp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle starfield over background (reference: Premium Products header area) */
.services-pp-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 10% 18%, rgba(255, 255, 255, 0.85) 0%, transparent 100%),
        radial-gradient(1px 1px at 22% 42%, rgba(255, 255, 255, 0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 12%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 48% 55%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 62% 22%, rgba(255, 255, 255, 0.75) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 38%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 65%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 72%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 62%, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
    opacity: 0.65;
}

.services-pp-inner {
    position: relative;
    z-index: 2;
    padding: 56px 40px 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-pp-title {
    color: #FFF;
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 12px 0;
}

.services-pp-line {
    display: block;
    width: 60px;
    height: 4px;
    background: #00c853;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.services-pp-desc {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-family: "Nirmala Text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 auto 40px;
    max-width: 720px;
}

/* Premium Products: glassmorphism cards — tall narrow columns (reference) */
.services-pp-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 48px;
    justify-content: center;
    /* Same row height for both cards (Mobile Banking matches Surety Bonds) */
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
}

.services-pp-card {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    width: 100%;
    max-width: 300px;
    justify-self: center;
    align-self: stretch;
    /* Slightly taller cards; content can still grow beyond this */
    min-height: 468px;
    display: flex;
    flex-direction: column;
    /* Hover highlight (lift up) */
    transition: transform 240ms ease, box-shadow 240ms ease;
    will-change: transform;
    background: linear-gradient(
        155deg,
        rgba(88, 48, 160, 0.42) 0%,
        rgba(30, 18, 72, 0.55) 45%,
        rgba(20, 35, 90, 0.48) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-pp-card:hover,
.services-pp-card:focus-within {
    transform: translateY(-12px);
    box-shadow:
        0 34px 76px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.services-pp-card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    opacity: 1;
    overflow: hidden;
}

/* Orange / amber neon — top & left (Mobile Banking) */
.services-pp-card--mobile .services-pp-card-glow {
    box-shadow:
        inset 0 2px 0 rgba(255, 200, 100, 0.85),
        inset 2px 0 0 rgba(255, 190, 80, 0.75),
        0 0 32px rgba(255, 170, 60, 0.25),
        0 0 60px rgba(255, 140, 40, 0.12);
    background: linear-gradient(
        135deg,
        rgba(255, 200, 100, 0.18) 0%,
        transparent 42%,
        transparent 100%
    );
}

/* Green / cyan neon — top & left (Surety Bonds, reference) */
.services-pp-card--surety .services-pp-card-glow {
    box-shadow:
        inset 0 2px 0 rgba(72, 255, 200, 0.75),
        inset 2px 0 0 rgba(34, 211, 238, 0.7),
        0 0 32px rgba(34, 211, 238, 0.2),
        0 0 56px rgba(16, 185, 129, 0.12);
    background: linear-gradient(
        135deg,
        rgba(45, 212, 191, 0.16) 0%,
        transparent 42%,
        transparent 100%
    );
}

.services-pp-card-body {
    position: relative;
    z-index: 1;
    padding: 36px 22px 36px;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Extra row height goes below the button — keeps list→button gap tight */
.services-pp-card-body::after {
    content: "";
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

.services-pp-card-title {
    margin: 0 0 10px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    
}

.services-pp-card-sub {
    margin: 0 0 22px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    max-width: 260px;
}

.services-pp-card-list {
    margin: 0 0 16px;
    padding: 0 4px 0 18px;
    text-align: left;
    align-self: stretch;
    list-style: disc;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

.services-pp-card-list li {
    margin-bottom: 6px;
    padding-left: 4px;
}

.services-pp-card-list li::marker {
    color: rgba(255, 255, 255, 0.55);
}

.services-pp-card-btn {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1208;
    background: linear-gradient(180deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(251, 191, 36, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-pp-card-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(251, 191, 36, 0.35);
}

/* Diagonal ribbon — bottom-right corner (reference) */
.services-pp-ribbon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
    border-bottom-right-radius: 17px;
}

.services-pp-ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 9px 0;
    bottom: 22px;
    right: -58px;
    transform: rotate(-42deg);
    transform-origin: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, #ea580c 0%, #fbbf24 50%, #fde047 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ===== SERVICES PAGE: Why Choose Our Services ===== */
.services-why-section {
    background: #fff;
    padding: 70px 20px;
}

.services-why-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-why-title {
    margin: 0;
    font-family: "Nirmala Text", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.services-why-subtitle {
    margin: 14px auto 44px;
    max-width: 860px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}

.services-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 6px 0;
}

.services-why-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #111827;
    flex-shrink: 0;
}

.services-why-icon svg {
    width: 100%;
    height: 100%;
}

.services-why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.services-why-item-title {
    margin: 12px 0 10px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.services-why-item-desc {
    margin: 0;
    max-width: 320px;
    font-family: "Nirmala Text", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== SERVICES PAGE: Start Your Financial Journey CTA ===== */
.services-journey-section {
    background: radial-gradient(1200px 500px at 50% 40%, rgba(255, 255, 255, 0.10) 0%, rgba(0, 0, 0, 0) 60%),
                #000;
    width: 100vw;
    position: relative;
    left: auto;
    right: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* Top breathing room only — figure sits flush to bottom of black band */
    padding: 72px 0 0;
    min-height: 420px;
    overflow: visible;
}

.services-journey-inner {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0 auto;
    min-height: 240px;
    padding: 0 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-journey-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 42px 54px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.services-journey-title {
    margin: 0 0 10px 0;
    color: #fff;
    font-family: "Nirmala Text", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.services-journey-subtitle {
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Nirmala Text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.services-journey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.30);
    min-width: 160px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.services-journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.36);
}

/* yay.png: full-height right, flush bottom, overlaps card (reference layout) */
.services-journey-figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(46vw, 520px);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.services-journey-figure-img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

.services-journey-figure svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .services-loans-section {
        padding: 60px 40px;
    }
    
    .services-loans-title {
        font-size: 32px;
    }
    
    .services-loans-scroll-wrap {
        margin: 0 -40px;
    }
    
    .services-loans-scroll {
        padding: 0 40px;
        gap: 20px;
    }
    
    .services-loan-card {
        width: 280px;
        padding: 28px 20px;
    }

    .services-pp-wrap {
        margin: 32px 0 0;
        min-height: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .services-pp-inner {
        padding: 40px 20px 48px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .services-pp-title {
        font-size: 32px;
    }

    .services-pp-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .services-pp-cards {
        grid-template-columns: 1fr;
        gap: 28px;
        width: 100%;
        max-width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
        justify-items: center;
    }

    .services-pp-card {
        min-height: 440px;
        max-width: 100%;
        width: 100%;
    }

    .services-pp-card:hover,
    .services-pp-card:focus-within {
        transform: translateY(-8px);
    }

    .services-pp-card-body {
        padding: 32px 20px 34px;
    }

    .services-pp-card-title {
        font-size: 19px;
    }

    .services-pp-ribbon {
        width: 100px;
        height: 100px;
    }

    .services-pp-ribbon span {
        width: 170px;
        font-size: 9px;
        bottom: 18px;
        right: -52px;
    }

    .services-why-section {
        padding: 56px 18px;
    }

    .services-why-title {
        font-size: 28px;
    }

    .services-why-subtitle {
        margin-bottom: 34px;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .services-why-item-desc {
        max-width: 520px;
    }

    .services-journey-section {
        padding: 56px 0 0;
        min-height: 0;
    }

    .services-journey-inner {
        padding-bottom: 28px;
    }

    .services-journey-card {
        padding: 34px 22px;
        border-radius: 12px;
    }

    .services-journey-title {
        font-size: 28px;
    }

    .services-journey-figure {
        display: none;
    }
}

/* Masonry-style image boxes with different sizes using CSS Grid */
.about-hero-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, minmax(100px, auto));
    gap: 4px;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    align-items: start;
}

.about-hero-image-box {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #fff;
    position: relative;
    min-height: 0;
}

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

/* Top-left → Medium image: spans 2 columns and 2 rows */
.about-hero-box-top-left-medium {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    margin-top: 45px;
}

/* Top-right → Large vertical image: spans 2 columns and 3 rows */
.about-hero-box-top-right-large-vertical {
    grid-column: 3 / span 2;
    grid-row: 1 / span 3;
}

/* Bottom-left → Large image: spans 2 columns and 3 rows */
.about-hero-box-bottom-left-large {
    grid-column: 1 / span 2;
    grid-row: 3 / span 3;
}

/* Bottom-right → Medium horizontal image: spans 2 columns and 2 rows */
.about-hero-box-bottom-right-medium-horizontal {
    grid-column: 3 / span 2;
    grid-row: 4 / span 2;
}

@media (max-width: 900px) {
    .about-hero-images {
        max-width: 100%;
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, minmax(80px, auto));
        gap: 4px;
    }
    
    .about-hero-box-top-left-medium {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
    
    .about-hero-box-top-right-large-vertical {
        grid-column: 3 / span 1;
        grid-row: 1 / span 3;
    }
    
    .about-hero-box-bottom-left-large {
        grid-column: 1 / span 2;
        grid-row: 3 / span 3;
    }
    
    .about-hero-box-bottom-right-medium-horizontal {
        grid-column: 2 / span 2;
        grid-row: 4 / span 2;
    }
}

/* ===== ABOUT PAGE: Founded on Trust, Driven by Community ===== */
.about-trust-section {
    position: relative;
    z-index: 1;
    padding: 72px 24px 64px;
    background: #E5E5E5;
}

.about-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.about-trust-left {
    flex: 1 1 420px;
    min-width: 0;
}

.about-trust-title {
    font-family: Metropolis, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin: 0 0 24px 0;
}

.about-trust-para {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.about-trust-para:last-of-type {
    margin-bottom: 28px;
}

.about-trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-trust-stat {
    display: flex;
    flex-direction: column;
}

.about-trust-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #00A74D;
    line-height: 1.2;
}

.about-trust-stat-label {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 4px;
}

/* Modern Fintech Feature Cards Container */
.about-trust-cards {
    flex: 1 1 480px;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

/* Modern Fintech Card Design */
.about-trust-card {
    background: transparent;
    border-radius: 18px !important;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 286px;
    min-width: 0;
    border-top: 8px solid #6f5c7d;
}

.about-trust-card:hover {
    transform: none;
}

/* Colored top border bar */
.about-trust-card::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 9px;
    border-radius: 18px 18px 0 0 !important;
}

.about-trust-card-community::before {
    background: #7c3aed;
}

.about-trust-card-recognized::before {
    background: #00A74D;
}

.about-trust-card-community {
    border-top-color: #5a38ff;
}

.about-trust-card-recognized {
    border-top-color: #00a63a;
}

/* Card content wrapper */
.about-trust-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: calc(100% - 8px);
    margin-top: 8px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-trust-card:hover .about-trust-card-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.16);
}

/* Circular icon container */
.about-trust-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
}

.about-trust-icon-community { 
    background: #e0e7ff;
}

.about-trust-icon-recognized { 
    background: #d1fae5;
}

.about-trust-card-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.about-trust-card-icon svg {
    width: 100%;
    height: 100%;
}

.about-trust-icon-community .about-trust-card-icon {
    color: #7c3aed;
}

.about-trust-icon-recognized .about-trust-card-icon {
    color: #00A74D;
}

/* Card title */
.about-trust-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin: 0;
    line-height: 1.25;
}

/* Card description */
.about-trust-card-text {
    font-size: 16px;
    color: #111827;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .about-trust-section { 
        padding: 56px 20px 48px; 
    }
    
    .about-trust-inner { 
        flex-direction: column; 
        gap: 32px; 
    }
    
    .about-trust-title { 
        font-size: 26px; 
    }
    
    .about-trust-stats { 
        gap: 28px; 
    }
    
    .about-trust-stat-value { 
        font-size: 28px; 
    }
    
    .about-trust-cards { 
        flex: 1 1 auto; 
        flex-direction: row;
        gap: 20px;
    }
    
    .about-trust-card {
        flex: 1 1 auto;
        padding: 24px;
        min-height: 0;
    }
    
    .about-trust-card-content {
        gap: 10px;
    }
    
    .about-trust-card-icon-wrap {
        width: 56px;
        height: 56px;
    }
    
    .about-trust-card-heading {
        font-size: 21px;
    }
    
    .about-trust-card-text {
        font-size: 15px;
    }
}

/* ===== ABOUT PAGE: Technological Adoption & Infrastructure ===== */
.about-tech-section {
    position: relative;
    z-index: 1;
    padding: 72px 24px 80px;
    background: #E5E5E5;
}

.about-tech-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-tech-title {
    font-family: Metropolis, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 12px 0;
}

.about-tech-line {
    display: block;
    width: 60px;
    height: 4px;
    background: #00A74D;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.about-tech-subtitle {
    font-size: 16px;
    color: #444;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 640px;
    line-height: 1.6;
}

.about-tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* About tech cards aligned with trust-card visual style */
.about-tech-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    min-height: 286px;
    border-top: 8px solid #6f5c7d;
}

.about-tech-card::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-radius: 0;
}

.about-tech-card-blue { border-top-color: #26a69a; }
.about-tech-card-purple { border-top-color: #9c27b0; }
.about-tech-card-yellow { border-top-color: #ffc107; }

.about-tech-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
}

.about-tech-card-icon-blue { background: #d9f7ff; }
.about-tech-card-icon-purple { background: #f0ddff; }
.about-tech-card-icon-yellow { background: #fff8cc; }

.about-tech-card-icon {
    width: 28px;
    height: 28px;
    display: block;
    color: #0f172a;
}

.about-tech-card-icon svg {
    width: 100%;
    height: 100%;
}

.about-tech-card-heading {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: left;
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.about-tech-card-text {
    font-size: 16px;
    color: #111827;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

@media (max-width: 900px) {
    .about-tech-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-tech-card-heading {
        font-size: 20px;
    }

    .about-tech-card-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-tech-section {
        padding: 56px 20px 64px;
    }
    .about-tech-title {
        font-size: 26px;
    }
    .about-tech-subtitle {
        margin-bottom: 36px;
    }
    .about-tech-cards {
        grid-template-columns: 1fr;
    }
    .about-tech-card-heading {
        font-size: 19px;
    }
    .about-tech-card-text {
        font-size: 14px;
    }
}

/* ===== ABOUT PAGE: Visionary Leadership ===== */
.about-leadership-section {
    padding: 72px 24px 56px;
    background: #f5f5f5;
    margin-bottom: 0;
}

.about-leadership-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-leadership-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 12px 0;
}

.about-leadership-line {
    display: block;
    width: 56px;
    height: 4px;
    background: #00A74D;
    margin: 0 auto 40px;
    border-radius: 2px;
}

.about-leadership-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-leadership-cards--single {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.about-leadership-card {
    display: flex;
    flex-direction: row;
    min-height: 340px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-leadership-card-img {
    flex: 0 0 42%;
    position: relative;
    min-height: 340px;
    background: #e5e5e5;
}

.about-leadership-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.about-leadership-card-pic {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: sans-serif;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.about-leadership-card-content {
    flex: 1;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.about-leadership-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.about-leadership-role {
    font-size: 14px;
    color: #333;
    margin: 0 0 14px 0;
}

.about-leadership-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

@media (max-width: 640px) {
    .about-leadership-cards {
        grid-template-columns: 1fr;
    }
    .about-leadership-card {
        flex-direction: column;
    }
    .about-leadership-card-img {
        flex: none;
        min-height: 220px;
    }
}

/* ===== ABOUT PAGE: Our Core Strengths – standalone section below Visionary Leadership ===== */
.about-strengths-section {
    position: relative;
    display: block;
    margin-top: 0;
    padding: 72px 24px 0;
    background: #f0f2f5;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Lower block: pat.png as integrated background behind Vision/Mission (no 3D transform — avoids thin “strip”) */
.about-strengths-lower {
    position: relative;
    margin-top: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 36px 24px 72px;
    overflow: hidden;
    background: #f0f2f5;
}

.about-strengths-lower::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
    background-color: #f0f2f5;
    background-image: url("/images/pat.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    pointer-events: none;
}

/* Blend top of lower band into solid gray so pattern reads behind cards, not under the icon row */
.about-strengths-lower::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: min(42%, 200px);
    z-index: 1;
    background: linear-gradient(
        to bottom,
        #f0f2f5 0%,
        rgba(240, 242, 245, 0.88) 55%,
        transparent 100%
    );
    pointer-events: none;
}

.about-strengths-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.about-strengths-inner--vm {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.about-strengths-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    animation: fadeInUp 0.8s ease-out;
}

.about-strengths-line {
    display: block;
    width: 56px;
    height: 4px;
    background: #99cc33;
    margin: 0 auto 28px;
    border-radius: 2px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.about-strengths-intro {
    font-size: 16px;
    color: #444;
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-strengths-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.about-strengths-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    background: transparent;
}

.about-strengths-feature:hover {
    background: #e8f5e9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.about-strengths-feature:hover .about-strengths-feature-icon {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-strengths-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-strengths-feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.4s ease;
}

.about-strengths-feature:hover .about-strengths-feature-icon::before {
    opacity: 0.3;
    transform: scale(2);
}

.about-strengths-feature-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-strengths-feature:hover .about-strengths-feature-icon svg {
    transform: scale(1.1);
}

.about-strengths-icon-reliability {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.about-strengths-icon-member {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.about-strengths-icon-future {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.about-strengths-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.about-strengths-feature-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-width: 260px;
    margin: 0;
}

.about-strengths-vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-strengths-vm-card {
    background: linear-gradient(105deg, #2ee6ff 0%, #0099d4 42%, #005a8c 100%);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow:
        0 4px 6px rgba(0, 40, 80, 0.12),
        0 18px 42px rgba(0, 80, 140, 0.28);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-strengths-vm-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 8px 12px rgba(0, 40, 80, 0.15),
        0 22px 48px rgba(0, 80, 140, 0.35);
}

.about-strengths-vm-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.about-strengths-vm-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 900px) {
    .about-strengths-features {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-strengths-vm {
        grid-template-columns: 1fr;
    }

    .about-strengths-lower {
        padding-bottom: 56px;
    }
}

@media (max-width: 640px) {
    .about-strengths-section {
        padding: 48px 20px 0;
    }
    .about-strengths-title {
        font-size: 26px;
    }
    .about-strengths-vm-card {
        padding: 28px 24px;
    }
    .about-strengths-vm-title {
        font-size: 20px;
    }
    .about-strengths-lower {
        margin-left: -20px;
        margin-right: -20px;
        padding: 28px 20px 48px;
    }
}

/* ===== ABOUT PAGE: Be part of a Growing Financial Family (image scrolls first, then gloss box) ===== */
.about-family-section {
    position: relative;
    min-height: 200vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
    justify-content: flex-start;
}

/* Tall block: family.png - sticky when scrolling */
.about-family-img-block {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-color: #c4a35a;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: visible;
    display: block;
}

/* Foggy overlay effect at the top of the image */
.about-family-fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    transition: opacity 0.3s ease;
    will-change: opacity;
    z-index: 2;
}

/* Wrapper for glossy box - allows it to scroll normally */
.about-family-glossy-wrapper {
    position: relative;
    width: 100%;
    margin-top: -120px;
    z-index: 3;
    pointer-events: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Glossy box at the bottom - scrolls normally with footer */
.about-family-glossy-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 48px 40px 52px;
    text-align: center;
    pointer-events: auto;
}

.about-family-glossy-inner {
    max-width: 560px;
    margin: 0 auto;
}

.about-family-glossy-title {
    color: #fff;
    text-align: center;
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: normal;
    margin: 0 0 20px 0;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.about-family-glossy-desc {
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 1.65;
    margin: 0 0 32px 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.about-family-glossy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.about-family-glossy-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", sans-serif;
    font-style: normal;
    text-decoration: none;
    border: none;
    /* Box type buttons (not pill) */
    border-radius: 6px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 40%, #ff9800 70%, #ff6f00 100%);
    background-size: 200% 200%;
    box-shadow:
        0 4px 14px rgba(255, 193, 7, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-shadow: none;
}

.about-family-glossy-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 193, 7, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .about-family-img-block {
        min-height: 60vh;
    }
    .about-family-fog-overlay {
        height: 40%;
    }
    .about-family-glossy-box {
        padding: 36px 24px 40px;
        border-radius: 0;
    }
    .about-family-glossy-title {
        font-size: clamp(26px, 6vw, 40px);
    }
    .about-family-glossy-desc {
        font-size: 15px;
    }
    .about-family-glossy-buttons {
        flex-direction: column;
    }
    .about-family-glossy-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== ABOUT PAGE: Our Unwavering Commitment (blue banner) ===== */
/* Commitment box when standalone (e.g. other pages) */
.about-commitment-section {
    padding: 0 24px 72px;
    background: #f5f5f5;
}

/* Commitment box inside Visionary Leadership section */
.about-leadership-commitment-wrap {
    margin-top: 48px;
}

.about-commitment-inner {
    max-width: 1140px;
    margin: 0 auto;
    background: #1976d2;
    border-radius: 14px;
    padding: 48px 56px;
}

.about-commitment-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 18px 0;
}

.about-commitment-desc {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 780px;
}

@media (max-width: 768px) {
    .about-leadership-section { padding: 56px 20px 48px; }
    .about-leadership-title { font-size: 26px; }
    .about-commitment-inner { padding: 36px 24px; }
    .about-commitment-title { font-size: 24px; }
    .about-commitment-desc { font-size: 15px; }
}

.about-panel {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px 48px;
    position: relative;
    z-index: 1;
    counter-reset: about-section;
}

.about-page-block {
    margin-bottom: 28px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    counter-increment: about-section;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-page-block::before {
    content: "0" counter(about-section);
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(13, 110, 253, 0.12);
    line-height: 1;
}

.about-page-block:nth-child(odd) {
    border-left: 5px solid #0d6efd;
}

.about-page-block:nth-child(even) {
    border-left: 5px solid #059669;
}

.about-page-block:last-child {
    margin-bottom: 0;
}

.about-page-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-page-heading::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #0d6efd;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3);
}

.about-page-block:nth-child(even) .about-page-heading::before {
    background: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.3);
}

.about-page-subheading {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin: 20px 0 10px 0;
    padding-left: 20px;
    border-left: 3px solid rgba(13, 110, 253, 0.5);
}

.about-page-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 14px 0;
}

.about-page-block p:last-child {
    margin-bottom: 0;
}

.about-page-block p strong {
    color: #0f172a;
}

/* Leadership cards */
.about-page-block-leadership::before {
    content: none;
}

/* Scoped to .about-page-block-leadership only (e.g. home page block) – do not affect .about-leadership-section */
.about-page-block-leadership .about-leadership-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 8px;
}

.about-page-block-leadership .about-leadership-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 14px;
    border: 1px solid rgba(13, 110, 253, 0.12);
}

.about-page-block-leadership .about-leadership-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0d6efd, #2563eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.about-page-block-leadership .about-leadership-content strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-page-block-leadership .about-leadership-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

a.nav-logo {
    display: block;
    position: relative;
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    text-decoration: none;
}

.contact-btn {
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-page {
        padding: 0 0 60px 0;
    }
    .about-page-hero {
        padding: 48px 20px 40px;
    }
    .about-hero-inner {
        flex-direction: column;
        gap: 32px;
    }
    .about-hero-left {
        min-width: 100%;
    }
    .about-page-title {
        font-size: 32px;
        line-height: 48px;
    }
    .about-page-tagline {
        font-size: 14px;
    }
    .about-panel {
        padding: 0 16px 36px;
    }
    .about-page-block {
        margin-bottom: 20px;
        padding: 24px 20px;
    }
    .about-page-block::before {
        font-size: 36px;
        top: 16px;
        right: 16px;
    }
    .about-page-heading {
    font-size: 17px;
    }
    .about-page-block-leadership .about-leadership-card {
        flex-direction: column;
        padding: 20px;
    }
    .about-page-block-leadership .about-leadership-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #d4e4f2 0%, #e8f0f6 50%, #f5f9fc 100%);
    padding: 60px 60px 32px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    clear: both;
    transform: translateZ(0);
    will-change: transform;
    width: 100%;
}

/* Footer on Services page should be full-bleed */
.services-page .site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

/* Footer inside family section - scrolls with glossy box */
.about-family-section .site-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: 100vw;
    min-height: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 32px !important;
    box-sizing: border-box;
    margin-bottom: -80px !important;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-logo {
    position: relative;
    flex-shrink: 0;
    width: 84px;
    height: 84px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
}

.footer-logo-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #16a34a;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.footer-logo-placeholder.show {
    display: block;
}

.footer-company-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    margin: 0;
}

.footer-about-text {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px 0;
}

.footer-heading-line {
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.2);
    margin-bottom: 16px;
}

.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-item {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-icon {
    flex-shrink: 0;
    font-size: 14px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.footer-btn:hover {
    opacity: 0.9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1877f2;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.footer-social-link.yt {
    background: #ff0000;
    font-size: 12px;
}

.footer-social-link:first-of-type + .footer-social-link {
    background: #111;
}

.footer-social-link.in {
    background: #0a66c2;
    font-size: 11px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-links a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.footer-app-btn span {
    font-size: 14px;
    font-weight: 600;
}

.footer-app-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-actions {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 24px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-actions {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-right {
        width: 100%;
        justify-content: flex-start;
    }

   
}
/* ===== INFRASTRUCTURE SECTION (ADVANCED GRID) ===== */

.infrastructure-section {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

/* Title */
.infra-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Green line */
.infra-line {
    width: 60px;
    height: 3px;
    background: #22c55e;
    margin: 0 auto 15px;
    border-radius: 2px;
}

/* Subtitle */
.infra-subtitle {
    color: #555;
    font-size: 14px;
    margin-bottom: 40px;
}

/* 🔥 MAIN GRID */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    grid-auto-rows: 160px;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* Boxes */
.box {
    border-radius: 10px;
    overflow: hidden;
    /* Grid/flex: allow cells to shrink so overflow stays inside the row */
    min-height: 0;
    min-width: 0;
}

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

/* img9: keep image inside cell (no % height overflow) — use object-position for framing */
.infra-grid img.infra-img9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 72%;
}

/* Sizes */
.box.small {
    height: 160px;
}

.box.tall {
    grid-row: span 2;
    height: auto;
}

.box.wide {
    grid-column: span 2;
    height: 200px;
}
/* Special placements */
.box.bottom-wide {
    grid-column: span 2;
    height: 200px;
}

.box.bottom-tall {
    grid-row: span 2;
    height: auto;
}
@media (max-width: 900px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .box.bottom-wide,
    .box.bottom-tall,
    .box.tall {
        grid-column: auto;
        grid-row: auto;
        height: 180px;
    }
}

@media (max-width: 500px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .box.small,
    .box.bottom-wide,
    .box.bottom-tall,
    .box.tall {
        height: 180px;
    }
}

/* ===== CONTACT PAGE — starting section (mint + perspective grid) ===== */
/* One continuous mint behind hero + form (no lighter “white” band below) */
.contact-page {
    background-color: #dff3ea;
}

.contact-page .contact-hero {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 72px 28px 88px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.contact-hero-grid {
    position: absolute;
    left: 50%;
    top: -18%;
    width: 170%;
    height: 90%;
    margin-left: -85%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(140, 165, 155, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 165, 155, 0.2) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: center top;
    transform: perspective(520px) rotateX(68deg);
    transform-origin: center top;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 5vw, 56px);
}

.contact-hero-title {
    margin: 0;
    font-size: clamp(2.25rem, 4.2vw, 3.65rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.03em;
    line-height: 1.1;
    flex: 0 0 auto;
}

.contact-hero-lead {
    margin: 0;
    font-size: clamp(15px, 1.35vw, 17px);
    font-weight: 400;
    color: #424242;
    line-height: 1.65;
    max-width: 540px;
    flex: 1 1 auto;
    text-align: left;
}

@media (max-width: 768px) {
    .contact-page .contact-hero {
        padding: 56px 20px 64px;
        min-height: 260px;
    }

    .contact-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-hero-lead {
        max-width: 100%;
    }
}

/* ===== CONTACT PAGE — form + office + hours (reference layout) ===== */
.contact-main {
    background: transparent;
    padding: 24px 0 72px;
}

.contact-main-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 28px;
    align-items: start;
}

.contact-flash {
    grid-column: 1 / -1;
    margin: 0 0 12px;
    padding: 14px 18px;
    background: #d1e7dd;
    border: 1px solid #badbcc;
    border-radius: 10px;
    color: #0f5132;
    font-size: 15px;
}

.contact-flash--error {
    background: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.contact-flash-list {
    margin: 0;
    padding-left: 1.25rem;
}

.contact-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.contact-card-title {
    margin: 0 0 12px;
    font-size: 1.28rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.contact-card-rule {
    height: 1px;
    background: #dcdcdc;
    margin-bottom: 22px;
}

.contact-form .contact-field {
    margin-bottom: 18px;
}

.contact-form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #111;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #9a9a9a;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.18);
}

.contact-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form-actions {
    margin-top: 6px;
}

.contact-send-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact-send-btn:hover {
    background: #0b5ed7;
}

.contact-send-btn:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-office-card {
    display: flex;
    flex-direction: column;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
    background: #f5f5f5;
}

.contact-info-icon--phone {
    background: #fff0e8;
}

.contact-info-icon--email {
    background: #e8f2ff;
}

.contact-info-icon--pin {
    background: #f3e8ff;
}

.contact-info-body {
    min-width: 0;
}

.contact-info-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: #111;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
}

a.contact-info-value:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.contact-info-address {
    margin: 0;
}

.contact-office-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
    padding-top: 4px;
}

.contact-map-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.contact-map-btn:hover {
    background: #0b5ed7;
    text-decoration: none;
}

.contact-map-btn:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.contact-hours-block {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-hours-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
    background: #f0faf5;
}

.contact-hours-icon--lunch {
    background: #f5f5f5;
}

.contact-hours-text {
    min-width: 0;
}

.contact-hours-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.contact-hours-time {
    display: block;
    font-size: 14px;
    color: #444;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
    }

    .contact-hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-form-row--2 {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 22px 18px 20px;
    }

    .contact-main {
        padding-bottom: 56px;
    }
}

/* ===== CONTACT PAGE — branch locations ("Prefer a Direct Approach?") ===== */
.contact-branches {
    background: #f2f2f2;
    padding: 56px 24px 72px;
}

.contact-branches-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-branches-title {
    margin: 0 0 32px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: left;
}

.contact-branches-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.branch-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 22px 20px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.branch-card-title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
}

.branch-card .branch-card-rule {
    height: 1px;
    background: #dcdcdc;
    margin-bottom: 20px;
}

.branch-card-body {
    flex: 1;
}

.branch-card-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.branch-card-row:last-child {
    margin-bottom: 0;
}

.branch-row-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 10px;
}

.branch-row-icon--phone {
    background: #ffe8f0;
}

.branch-row-icon--email {
    background: #e8f2ff;
}

.branch-row-icon--pin {
    background: #f3e8ff;
}

.branch-row-text {
    min-width: 0;
}

.branch-row-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.branch-row-value {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    text-decoration: none;
    word-break: break-word;
}

a.branch-row-value:hover {
    color: #0d6efd;
    text-decoration: underline;
}

p.branch-row-value--multiline {
    margin: 0;
}

.branch-card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 20px;
}

@media (max-width: 900px) {
    .contact-branches-grid {
        grid-template-columns: 1fr;
    }

    .contact-branches {
        padding: 44px 20px 56px;
    }
}

/* ===== CONTACT PAGE — financial assistance CTA (glass over photo) ===== */
.contact-financial-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background-color: #e5e0d6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-financial-cta-scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.contact-financial-cta-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.contact-financial-cta-glass {
    text-align: center;
    padding: 48px 40px 52px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(60, 60, 60, 0.22);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-financial-cta-title {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.contact-financial-cta-sub {
    margin: 0 0 28px;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.55;
}

.contact-financial-cta-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
}

.contact-financial-cta-btn:hover {
    background: #0b5ed7;
    text-decoration: none;
}

.contact-financial-cta-btn:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 3px;
}

/* Anchor scroll: form section clears fixed navbar */
#get-in-touch {
    scroll-margin-top: 88px;
}

@media (max-width: 600px) {
    .contact-financial-cta {
        min-height: 360px;
        padding: 48px 18px;
    }

    .contact-financial-cta-glass {
        padding: 36px 22px 40px;
    }
}

/* ===== MOBILE BANKING PAGE ===== */
@font-face {
    font-family: "Nirmala Text";
    src: local("Nirmala Text"), local("Nirmala UI");
}

.mb-page {
    background: #f4f8ff;
}

.mb-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 74px);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 34px 24px 40px;
    overflow: hidden;
}

.mb-hero::after {
    content: "";
    position: absolute;
    inset: -14px;
    background-image: inherit;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: blur(7px);
    transform: scale(1.03);
    z-index: 0;
}

.mb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(232, 241, 252, 0.22);
    pointer-events: none;
    z-index: 1;
}

.mb-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    isolation: isolate;
}

.mb-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    color: #0e1630;
    font-size: 48px;
    line-height: 1;
    margin: 0 0 8px;
}

.mb-page .mb-hero .mb-hero-title {
    margin: 0;
    position: relative;
    z-index: 3;
    color: #000;
    text-align: center;
    /* Nirmala Text is a Windows system font; it is NOT on Google Fonts — avoid broken @font-face fallbacks to Times. */
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", system-ui, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900 !important;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-shadow: 0 0 0 #000, 0.35px 0 #000, -0.35px 0 #000;
    -webkit-text-stroke: 0.35px #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mb-hero-line {
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: #00a86b;
    margin: 8px auto 12px;
}

.mb-hero-desc {
    margin: 0 auto 24px;
    text-align: center;
    max-width: 920px;
    color: #18263f;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

.mb-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(220px, 300px) minmax(240px, 1fr);
    grid-template-areas:
        "left-top . right-top"
        "left-bottom girl right-bottom";
    /* Reduce horizontal gap so the 4 boxes move closer to the girl */
    gap: 16px 6px;
    align-items: start;
}

.mb-card {
    background: #fff;
    border: 1px solid #38dd60;
    border-radius: 14px;
    padding: 18px 20px 16px;
    box-shadow: 0 9px 22px rgba(16, 53, 114, 0.1);
    width: 100%;
    max-width: 420px;
    min-height: 206px;
}

.mb-card--normal-savings {
    grid-area: left-top;
    justify-self: end;
}

.mb-card--normal-current {
    grid-area: left-bottom;
    justify-self: end;
}

.mb-card--primary-savings {
    grid-area: right-top;
    justify-self: start;
}

.mb-card--express-current {
    grid-area: right-bottom;
    justify-self: start;
}

.mb-card-title {
    margin: 0 0 12px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
}

.mb-card-list {
    margin: 0;
    padding-left: 18px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    color: #212121;
    font-size: 14px;
    line-height: 1.9;
}

.mb-card-list li {
    margin-bottom: 2px;
}

.mb-figure-wrap {
    grid-area: girl;
    align-self: end;
    margin-top: -52px;
    margin-bottom: -200px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.mb-figure-img {
    width: min(1780px, 99vw);
    max-height: 1050px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .mb-hero {
        min-height: auto;
        padding: 28px 16px 34px;
    }

    .mb-hero-desc {
        font-size: 16px;
    }

    .mb-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 16px;
    }

    /* Reset desktop grid-area names (invalid when template-areas is none) — fixes girl img overlapping cards */
    .mb-card--normal-savings,
    .mb-card--normal-current,
    .mb-card--primary-savings,
    .mb-card--express-current {
        grid-area: auto;
        justify-self: stretch;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .mb-card--normal-savings {
        order: 1;
    }

    .mb-card--primary-savings {
        order: 2;
    }

    .mb-card--normal-current {
        order: 3;
    }

    .mb-card--express-current {
        order: 4;
    }

    .mb-card-title {
        font-size: 21px;
    }

    .mb-card-list {
        font-size: 14px;
    }

    .mb-figure-wrap {
        grid-area: auto;
        order: 10;
        align-self: center;
        margin: 20px 0 8px;
        z-index: 1;
    }

    .mb-figure-img {
        width: min(520px, 92vw);
        max-height: 420px;
    }
}

/* Mobile banking CTA section (reference-based) */
.mb-activate-section {
    padding: 0 0 14px;
    background: #f6f9ff;
}

.mb-activate-inner {
    position: relative;
    max-width: 100%;
    width: 100%;
    min-height: 430px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background-color: #c9d8e7;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.mb-activate-glass {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: min(980px, calc(100% - 52px));
    padding: 34px 36px 24px;
    border-radius: 12px;
    text-align: center;
    background: rgba(191, 203, 214, 0.58);
    border: 1px solid rgba(66, 79, 96, 0.42);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.mb-page .mb-activate-title {
    margin: 0 0 16px;
    color: #000;
    text-align: center;
    font-family: "Nirmala Text", "Nirmala UI", "Segoe UI", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: none;
    -webkit-text-stroke: 0 transparent;
}

.mb-activate-desc {
    margin: 0 auto 20px;
    max-width: 620px;
    font-family: "Nirmala Text";
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1.5;
    color: #151f2d;
}

.mb-activate-btn {
    display: inline-block;
    min-width: 290px;
    padding: 12px 24px;
    border-radius: 18px;
    text-decoration: none;
    font-family: "Nirmala Text";
    font-size: clamp(22px, 1.35vw, 28px);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #2b8ff0 0%, #0f75de 100%);
    box-shadow: 0 10px 20px rgba(15, 117, 222, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.mb-activate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(15, 117, 222, 0.4);
}

@media (max-width: 980px) {
    .mb-activate-section {
        padding: 0 0 12px;
    }

    .mb-activate-inner {
        min-height: 300px;
        border-radius: 0;
    }

    .mb-activate-glass {
        top: 56%;
        width: min(620px, calc(100% - 24px));
        padding: 20px 14px 16px;
    }

    .mb-activate-title {
        white-space: normal;
    }

    .mb-activate-btn {
        min-width: 190px;
        font-size: 18px;
    }
}

/* ===== SURETY BONDS PAGE ===== */
.sb-page {
    background: #eef4fb;
}

.sb-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 74px);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 34px 24px 40px;
    overflow: hidden;
}

.sb-hero::after {
    content: "";
    position: absolute;
    inset: -14px;
    background-image: inherit;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: blur(7px);
    transform: scale(1.03);
    z-index: 0;
}

.sb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(232, 241, 252, 0.22);
    pointer-events: none;
    z-index: 1;
}

.sb-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
}

.sb-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    color: #0e1630;
    font-size: 48px;
    line-height: 1;
    margin: 0 0 8px;
}

.sb-hero-title {
    margin: 0;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 900 !important;
    color: #0c1021;
    letter-spacing: 0.01em;
    text-shadow: 0 0 0 #000, 0.35px 0 #000, -0.35px 0 #000;
    -webkit-text-stroke: 0.35px #000;
}

.sb-hero-line {
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 2px;
    background: #00a86b;
    margin: 8px auto 12px;
}

.sb-hero-desc {
    margin: 0 auto 24px;
    text-align: center;
    max-width: 920px;
    color: #18263f;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 36px;
    line-height: 1.45;
}

.sb-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(220px, 300px) minmax(240px, 1fr);
    grid-template-areas:
        "left-top . right-top"
        "left-bottom girl right-bottom";
    gap: 16px 28px;
    align-items: start;
}

.sb-card {
    background: #fff;
    border: 1px solid #38dd60;
    border-radius: 14px;
    padding: 18px 20px 16px;
    box-shadow: 0 9px 22px rgba(16, 53, 114, 0.1);
    width: 100%;
    max-width: 420px;
    min-height: 206px;
}

.sb-card--member-support {
    grid-area: left-top;
    justify-self: end;
}

.sb-card--undertaking {
    grid-area: left-bottom;
    justify-self: end;
}

.sb-card--contract-support {
    grid-area: right-top;
    justify-self: start;
}

.sb-card--coordination {
    grid-area: right-bottom;
    justify-self: start;
}

.sb-card-title {
    margin: 0 0 12px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
}

.sb-card-text {
    margin: 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    color: #212121;
    font-size: 14px;
    line-height: 1.9;
}

.sb-figure-wrap {
    grid-area: girl;
    align-self: end;
    margin-top: -52px;
    margin-bottom: -200px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.sb-figure-img {
    width: min(1650px, 98vw);
    max-height: 1040px;
    object-fit: contain;
}

@media (min-width: 981px) {
    /* Wider hero + center track — middle column was capped at 300px, so girl.png never grew */
    .sb-hero-inner,
    .mb-hero-inner {
        max-width: min(1320px, 96vw);
    }

    .sb-grid,
    .mb-grid {
        grid-template-columns: minmax(200px, 1fr) minmax(280px, min(46vw, 760px)) minmax(200px, 1fr);
    }

    .sb-figure-wrap,
    .mb-figure-wrap {
        width: 100%;
        justify-self: stretch;
    }

    .sb-figure-img,
    .mb-figure-img {
        width: 100%;
        max-width: none;
        max-height: min(88vh, 1020px);
        object-fit: contain;
    }

    .sb-hero {
        padding-bottom: clamp(160px, 20vh, 360px);
    }

    .mb-hero {
        padding-bottom: clamp(160px, 20vh, 360px);
    }
}

@media (max-width: 980px) {
    .sb-hero {
        min-height: auto;
        padding: 28px 16px 34px;
    }

    .sb-hero-desc {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .sb-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 16px;
    }

    .sb-card--member-support,
    .sb-card--undertaking,
    .sb-card--contract-support,
    .sb-card--coordination {
        grid-area: auto;
        justify-self: stretch;
        max-width: 100%;
        min-height: 0;
        position: relative;
        z-index: 2;
    }

    .sb-card--member-support {
        order: 1;
    }

    .sb-card--contract-support {
        order: 2;
    }

    .sb-card--undertaking {
        order: 3;
    }

    .sb-card--coordination {
        order: 4;
    }

    .sb-card-title {
        font-size: 18px;
    }

    .sb-card-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .sb-figure-wrap {
        grid-area: auto;
        order: 10;
        align-self: center;
        margin: 20px 0 8px;
        z-index: 1;
    }

    .sb-figure-img {
        width: min(520px, 92vw);
        max-height: 420px;
    }
}

.sb-note-section {
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #62e0d6 0%, #6cdf98 52%, #23e623 100%);
}

.sb-note-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 18px clamp(24px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(20px, 3.5vw, 40px);
    box-sizing: border-box;
}

.sb-note-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-note-icon-img {
    width: min(200px, 26vw);
    height: auto;
    display: block;
}

.sb-note-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.sb-note-title {
    margin: 0 0 8px;
    color: #000000;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.sb-note-text {
    margin: 0 auto;
    color: #000000;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 46rem;
}

@media (max-width: 980px) {
    .sb-note-inner {
        gap: 14px;
        padding: 14px 18px;
        align-items: center;
    }

    .sb-note-icon {
        flex-shrink: 0;
    }

    .sb-note-icon-img {
        width: 80px;
    }

    .sb-note-text {
        max-width: none;
    }
}

.sb-support-section {
    background: #eeeeee;
    padding: 54px 18px 74px;
}

.sb-support-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.sb-support-title {
    margin: 0 0 14px;
    color: #000000;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900 !important;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-shadow: 0 0 0 #000, 0.35px 0 #000, -0.35px 0 #000;
    -webkit-text-stroke: 0.35px #000;
}

.sb-support-desc {
    margin: 0 auto 36px;
    max-width: 980px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1c1f28;
}

.sb-support-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px;
    justify-content: center;
}

.sb-support-card {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 420px;
    min-height: 286px;
    margin: 0 auto;
    text-align: left;
    padding: 28px 24px 22px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    border-top: 8px solid #6f5c7d;
}

.sb-support-card--benefits {
    border-top-color: #2dfd2d;
}

.sb-support-card--eligibility {
    border-top-color: #6f5c7d;
}

.sb-support-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
}

.sb-support-card-title {
    margin: 0 0 10px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #13161e;
}

.sb-support-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    color: #21242e;
    font-size: 16px;
    line-height: 1.8;
}

.sb-support-list li {
    margin-bottom: 2px;
}

@media (max-width: 980px) {
    .sb-support-section {
        padding: 36px 14px 48px;
    }

    .sb-support-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .sb-support-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sb-support-card {
        min-height: 0;
        padding: 22px 18px 18px;
        border-radius: 14px;
    }

    .sb-support-card-title {
        font-size: 18px;
    }

    .sb-support-list {
        font-size: 14px;
        line-height: 1.65;
    }
}

.sb-apply-section {
    padding: 0;
    background: #f2f5fc;
}

.sb-apply-inner {
    position: relative;
    width: 100%;
    min-height: 410px;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sb-apply-glass {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: min(980px, calc(100% - 90px));
    padding: 42px 36px 26px;
    border-radius: 14px;
    text-align: center;
    background: rgba(192, 214, 214, 0.58);
    border: 1px solid rgba(74, 88, 105, 0.52);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sb-apply-title {
    margin: 0 0 14px;
    color: #000000;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900 !important;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-shadow: 0 0 0 #000, 0.35px 0 #000, -0.35px 0 #000;
    -webkit-text-stroke: 0.35px #000;
}

.sb-apply-desc {
    margin: 0 auto 20px;
    max-width: 860px;
    color: #000000;
    text-align: center;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sb-apply-btn {
    display: inline-block;
    min-width: 280px;
    padding: 12px 24px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--Primary-Colors-Tints-White, #fff);
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    background: linear-gradient(180deg, #2b8ff0 0%, #0f75de 100%);
    box-shadow: 0 10px 20px rgba(15, 117, 222, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 13px 24px rgba(15, 117, 222, 0.42);
}

@media (max-width: 980px) {
    .sb-apply-inner {
        min-height: 320px;
        border-radius: 18px 18px 0 0;
    }

    .sb-apply-glass {
        width: min(760px, calc(100% - 24px));
        padding: 24px 14px 16px;
    }

    .sb-apply-desc {
        margin-bottom: 14px;
    }

    .sb-apply-btn {
        min-width: 190px;
    }
}

/* ========== Daily Deposit Scheme (DDS) product page ========== */
.dds-page {
    background: #fff;
}

.dds-main {
    padding: 24px 20px 64px;
}

.dds-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.dds-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #15803d;
    text-decoration: none;
}

.dds-back:hover {
    color: #166534;
    text-decoration: underline;
}

.dds-back-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.dds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.dds-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}

.dds-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    margin-bottom: 36px;
}

.dds-hero-title {
    margin: 0 0 14px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 800;
    color: #15803d;
    line-height: 1.15;
}

.dds-hero-desc {
    margin: 0 0 22px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #1f2937;
    max-width: 36rem;
}

.dds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.dds-btn-primary {
    color: #fff;
    background: #0f75de;
    border: 2px solid #0f75de;
}

.dds-btn-primary:hover {
    background: #0b5cb5;
    border-color: #0b5cb5;
    color: #fff;
}

.dds-btn-outline {
    color: #0f75de;
    background: #fff;
    border: 2px solid #0f75de;
}

.dds-btn-outline:hover {
    background: #eff6ff;
    color: #0b5cb5;
    border-color: #0b5cb5;
}

.dds-hero-visual {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.dds-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

.dds-rule {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 32px 0;
}

.dds-terms-title {
    margin: 0 0 18px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.dds-terms-title--with-rule {
    margin-bottom: 8px;
}

.dds-terms-title-rule {
    margin: 0 0 22px 0;
}

.dds-terms-list {
    margin: 0;
    padding-left: 1.35rem;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #1f2937;
}

.dds-terms-list li {
    margin-bottom: 12px;
}

.dds-terms-list .dds-terms-sublist {
    margin: 8px 0 4px 0;
    padding-left: 1.35rem;
    list-style-type: disc;
}

.dds-terms-list .dds-terms-sublist li {
    margin-bottom: 6px;
}

.dds-terms-list a {
    color: #0f75de;
}

.dds-rate-table-wrap {
    margin-top: 20px;
    overflow-x: auto;
    border: 1px solid #86efac;
    border-radius: 10px;
}

.dds-rate-table-wrap--fd {
    border: 1px solid #6b7280;
    border-radius: 0;
}

.dds-rate-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 13px;
}

.dds-rate-table thead th {
    background: #16a34a;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.dds-rate-table thead th:last-child {
    border-right: none;
}

.dds-rate-table tbody td {
    text-align: center;
    padding: 8px 6px;
    border: 1px solid #bbf7d0;
    color: #14532d;
    background: #f0fdf4;
}

.dds-rate-table tbody tr:nth-child(even) td {
    background: #dcfce7;
}

/* Fixed deposit returns table — emerald header, zebra rows, grid borders */
.dds-rate-table--fd {
    min-width: 920px;
    font-size: 13px;
    color: #111827;
}

.dds-rate-table--fd thead th {
    background: #059669;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.02em;
    padding: 12px 8px;
    border: 1px solid #047857;
    border-bottom: 1px solid #047857;
}

.dds-rate-table--fd thead th + th {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.dds-rate-table--fd tbody td {
    text-align: center;
    padding: 10px 8px;
    border: 1px solid #9ca3af;
    color: #111827;
    background: #ecfdf5;
}

.dds-rate-table--fd tbody tr:nth-child(even) td {
    background: #f3f4f6;
}

.dds-explore {
    margin-top: 48px;
    padding-top: 8px;
}

.dds-explore-title {
    margin: 0 0 24px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.dds-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.dds-explore-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dds-product-card {
    border: 2px solid #bbf7d0;
    border-radius: 14px;
    padding: 22px 16px 20px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dds-product-card:hover {
    border-color: #86efac;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
}

.dds-product-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dds-product-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dds-product-card-title {
    margin: 0 0 10px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.dds-product-card-desc {
    margin: 0 0 14px 0;
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    flex: 1;
}

.dds-product-card-link {
    font-family: "Nirmala Text", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f75de;
    text-decoration: none;
}

.dds-product-card-link:hover {
    text-decoration: underline;
}

.member-form-page {
    padding: 24px 20px 64px;
}

.member-form-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.member-form-back {
    display: inline-block;
    margin-bottom: 14px;
    color: #15803d;
    text-decoration: none;
    font-weight: 600;
}

.member-form-card {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 22px;
}

.member-form-head h1 {
    margin: 0;
    font-size: 32px;
}

.member-form-head p {
    margin: 8px 0 20px;
    color: #4b5563;
}

.member-form-card--exact {
    padding: 18px;
}

.mf-exact-form {
    width: 100%;
}

.mf-exact-top {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 18px;
    align-items: start;
    margin-bottom: 16px;
}

.mf-exact-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mf-photo-box {
    border: 1px solid #9ca3af;
    border-radius: 8px;
    min-height: 170px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    background: #fff;
}

.mf-photo-box__label {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
    color: #111827;
}

.mf-photo-preview {
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    object-position: center;
    border-radius: 6px;
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
}

.mf-photo-preview[hidden] {
    display: none !important;
}

.mf-photo-box input[type="file"] {
    margin-top: 0;
    width: 100%;
}

.mf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 2px;
}

.mf-field label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.mf-exact-form input[type="text"],
.mf-exact-form input[type="email"],
.mf-exact-form input[type="tel"],
.mf-exact-form input[type="date"],
.mf-exact-form select,
.mf-exact-form textarea {
    min-height: 50px;
    border: 1px solid #9ca3af;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.4;
}

.mf-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.mf-checkbox-under {
    font-weight: 600;
    font-size: 15px;
    color: #374151;
}

.mf-checkbox-under input {
    margin-right: 8px;
}

.mf-checkbox-row--multi .mf-choice-item {
    white-space: nowrap;
}

.mf-checkbox-row--multi {
    gap: 14px;
}

.mf-checkbox-row + input {
    margin-top: 6px;
}

.mf-nominee-block {
    margin-top: 6px;
}

.mf-nominee-title {
    font-weight: 800;
    margin: 10px 0 8px;
    font-size: 14px;
}

.mf-nominee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.mf-nominee-grid--bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mf-section {
    margin-top: 12px;
    padding-top: 6px;
}

.mf-section-title {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 10px;
}

.mf-exact-row {
    align-items: start;
}

.mf-exact-row .mf-field {
    margin-bottom: 8px;
}

.mf-declaration-text p {
    margin: 0 0 8px;
    font-size: 13px;
    color: #374151;
    font-weight: 600;
    line-height: 1.35;
}

.mf-declaration-section {
    margin-top: 14px;
    padding-top: 4px;
}

.mf-declaration-agree {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
}

.mf-declaration-agree__check {
    margin-top: 6px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.mf-declaration-label__body {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    line-height: 1.5;
}

.mf-declaration-name-input {
    display: inline-block;
    vertical-align: baseline;
    min-width: 10em;
    max-width: min(100%, 22em);
    min-height: 34px !important;
    margin: 0 4px;
    padding: 4px 8px !important;
    border: none !important;
    border-bottom: 2px solid #111827 !important;
    border-radius: 0 !important;
    background: #fafafa;
    font-size: 15px;
    font-weight: 600;
}

.mf-declaration-label__para2 {
    display: block;
    margin-top: 10px;
}

.mf-section--office .mf-field input {
    background: #f9fafb;
}

.mf-actions {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .mf-exact-top {
        grid-template-columns: 1fr;
    }
    .mf-photo-box {
        min-height: 130px;
    }

    .mf-photo-preview {
        max-height: 120px;
    }
    .mf-nominee-grid {
        grid-template-columns: 1fr;
    }
    .mf-nominee-grid--bank {
        grid-template-columns: 1fr 1fr;
    }
}

.member-form-grid h3 {
    margin: 18px 0 10px;
    font-size: 19px;
}

.member-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.mf-pep-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.mf-inline-choice {
    display: flex;
    gap: 18px;
}

.mf-choice-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 6px !important;
    font-weight: 500 !important;
}

.mf-choice-item input {
    width: 20px;
    height: 20px;
}

.member-form-grid input,
.member-form-grid select {
    height: 42px;
    border: 1px solid #9ca3af;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 14px;
}

.mf-row-2,
.mf-row-3,
.mf-row-4,
.mf-row-5 {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.mf-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mf-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mf-row-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mf-row-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mf-check {
    flex-direction: row !important;
    align-items: flex-start;
    margin-top: 14px;
}

.mf-check input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
}

.mf-actions {
    margin-top: 18px;
}

.mf-actions button {
    background: #0f75de;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 960px) {
    .dds-hero {
        grid-template-columns: 1fr;
    }

    .dds-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .dds-explore-grid {
        grid-template-columns: 1fr;
    }

    .dds-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dds-btn {
        width: 100%;
    }
}

/* ========== Site-wide responsive: mobile nav, fluid type, overflow fixes ========== */

.site-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.site-nav-backdrop[hidden] {
    display: none !important;
}

@media (max-width: 992px) {
    /* Inline top bar: logo left, links + Contact centered in the bar (no hamburger) */
    .nav-toggle {
        display: none !important;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        column-gap: 8px;
        padding: 12px 16px;
        min-height: 76px;
        height: auto;
    }

    .nav-logo {
        grid-column: 1;
        grid-row: 1;
    }

    .navbar-end {
        grid-column: 2;
        grid-row: 1;
        position: static;
        transform: none;
        visibility: visible;
        width: 100%;
        max-width: none;
        margin-left: 0;
        min-width: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px 10px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        z-index: auto;
    }

    .navbar-end .menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        z-index: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 4px 12px;
        width: auto;
        max-width: 100%;
    }

    .navbar-end .menu li {
        border-bottom: none;
        padding: 4px 0;
    }

    .navbar-end .menu .active {
        border-bottom: none;
        padding-bottom: 4px;
    }

    .navbar-end .menu .menu-link {
        padding: 6px 4px;
    }

    .navbar-end .contact-btn {
        margin-top: 0;
        text-align: center;
        width: auto;
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 72px 16px 48px;
        min-height: min(100vh, 900px);
    }

    .hero h1 {
        font-size: clamp(22px, 6.5vw, 40px);
        line-height: 1.15;
        padding: 0 4px;
    }

    .hero h1 .hero-title-line1,
    .hero-title-keep {
        white-space: normal;
    }

    .hero p {
        font-size: clamp(15px, 4vw, 18px);
        padding: 0 8px;
    }

    .hero p .hero-sub-line1 {
        white-space: normal;
    }

    .hero-logo-img {
        width: min(156px, 36vw);
        height: auto;
    }

    .reg {
        font-size: 13px;
        padding: 8px 14px;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        width: 100%;
        max-width: min(100%, 600px);
        min-width: 0;
        padding: 12px 56px;
    }
}

@media (max-width: 380px) {
    .navbar {
        padding: 0 12px;
    }

    .nav-logo {
        width: 52px;
        height: 52px;
    }
}