/* ==========================================================================
   Insuraa — shared stylesheet (used by header.html, footer.html, index.html)
   ========================================================================== */

:root {
    --ink: #1c2536;
    --muted: #6b7686;
    --line: #e7ebf3;
    --white: #fff;
    --radius: 4px;
    --shadow: 0 12px 30px rgba(11, 42, 99, 0.08);
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Poppins", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

h1,
h2,
h3 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: var(--secondary);
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all .2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--primary);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------------- Header ---------------- */
.topbar {
    background: var(--primary);
    color: var(--line);
    font-size: 13.5px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 9px;
    padding-bottom: 9px;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--line);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-right a {
    color: var(--line);
}

.topbar-right a:hover {
    color: var(--secondary);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topbar-social a:hover {
    background: var(--white);
    color: var(--primary);
}

.navbar {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 26px;
    width: 150px;
}

.logo span {
    color: var(--secondary);
    font-size: 20px;
}

.logo small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--muted);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--ink);
}

.mobile-logo-wrap {
    display: none;
}

.nav-links a {
    padding: 6px 2px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--primary);
}

.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* .dropdown {
    position: absolute;
    top: 130%;
    left: -20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(15, 41, 66, 0.1), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(15, 41, 66, 0.08);
    border-radius: 12px;
    min-width: 850px;
    padding: 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
} */
.dropdown {
    position: absolute;
    top: 130%;
    left: -20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(15, 41, 66, 0.1), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(15, 41, 66, 0.08);
    border-radius: 12px;
    padding: 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s;
    z-index: 1000;

    /* width content pratimane auto adjust thase */
    width: max-content;
    max-width: 850px;
    min-width: 220px;

    /* columns pan item count pratimane auto goodhvashe */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Elegant Top Pointer Arrow */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 45px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
    border-left: 1px solid rgba(15, 41, 66, 0.08);
    border-top: 1px solid rgba(15, 41, 66, 0.08);
    box-shadow: -3px -3px 5px rgba(15, 41, 66, 0.01);
    z-index: -1;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    position: relative;
    display: block;
    padding: 10px 14px;
    color: #2c3e50;
    /* border-radius: 8px; */
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-right: 1px solid var(--line);
}

/* Accent slide-in bar on hover */
.dropdown a::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 14px;
    background: var(--primary);
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.25s ease;
}

.dropdown a:hover {
    background: var(--theme-rgb);
    color: var(--primary);
    padding-left: 20px;
}

.dropdown a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-login {
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary);
}

.btn-login:hover {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1111;
}

@media (max-width: 1090px) {

    /* Hamburger / Close Button */
    .nav-toggle {
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 1001;

        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;

    }

    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 90%;
        height: 100vh;
        overflow-y: auto;

        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 80px 20px 20px;

        box-shadow: -5px 0 20px rgba(0, 0, 0, .15);

        opacity: 1;
        visibility: visible;

        transition: right .35s ease;
        z-index: 1000;
    }

    /* Open Menu */
    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 9px 0;
        font-size: 17px;
    }

    .nav-actions {
        display: none;
    }

    /* Mobile Dropdown */
    .has-dropdown .dropdown {
        display: none;
        position: static;
        width: 100%;
        margin-top: 5px;
        padding-left: 15px;
        background: var(--white);
        box-shadow: none;
        border-radius: 6px;
    }

    .has-dropdown.active-dropdown .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 10px 0;
    }
}

/* ---------------- Hero ---------------- */
.hero {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 60%);
    padding: 170px 0 60px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    grid-template-columns: 1.05fr 1fr;
    gap: 0px;
    align-items: center;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.hero h1 .blue {
    color: var(--primary);
}

.hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 480px;
    margin: 18px 0 28px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 600;
}

.hero-stats .ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
}

.hero-art {
    position: relative;
}

.hero-art img {
    border-radius: 18px;
}

/* ---------------- About ---------------- */
.section {
    padding: 70px 0;
}

.section-bg {
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-grid img {
    border-radius: var(--radius);
}

.about-grid h2 {
    font-size: 32px;
    margin: 0 0 16px;
}

.about-grid p {
    color: var(--muted);
    margin-bottom: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list .tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex: none;
}

/* ---------------- Stat strip ---------------- */
.stat-strip {
    background: linear-gradient(90deg, var(--theme-rgb) 0%, var(--theme-rgb1) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 34px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.stat-strip .num {
    font-size: 26px;
    font-weight: 700;
}

.stat-strip .label {
    font-size: 13px;
    color: var(--white);
    margin-top: 4px;
}

.stat-strip .ico {
    font-size: 22px;
    margin-bottom: 8px;
}

/* ---------------- Section heading ---------------- */
.section-head {
    text-align: left;
    max-width: 640px;
    margin-bottom: 36px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: 30px;
    font-weight: 700;
}

.section-head p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 17px;

}

/* ---------------- Services / cards ---------------- */
.services-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: 0 8px 20px rgba(11, 42, 99, .04);
    transition: transform .2s ease, box-shadow .2s ease;
    border-top: 3px solid var(--primary);
}

.card:nth-child(2) {
    border-top-color: var(--primary);
}

.card:nth-child(3) {
    border-top-color: var(--primary);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card .ico {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 14px;
}

.card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Why choose us */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
}

.feature .ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
}

.feature h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
    color: var(--secondary);
}

.feature p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* Partners / clients strip */
.logo-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-strip .logo-box {
    /* flex: 1; */
    min-width: 120px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.logo-strip .logo-box img {
    max-height: 125px;
    width: auto;
    /* filter: grayscale(1); */
    opacity: .75;
    transition: .2s;
}

.logo-strip .logo-box:hover img {
    filter: none;
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 5px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-slider__slide {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0px;
    /* box-shadow: 0 8px 20px rgb(11 42 99 / 19%); */
}

.blog-card {
    background: var(--white);
    /* border: 1px solid var(--line); */
    border-radius: var(--radius);
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgb(11 42 99 / 19%); */
}

.blog-card img {
    height: 170px;
    width: 100%;
    /* object-fit: cover; */
}

.blog-card .body {
    padding: 18px 20px;
}

.blog-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.blog-card .date {
    font-size: 12.5px;
    color: var(--muted);
}

/* Contact */
.contact-wrap {
    background: var(--bg-soft);
    border-radius: 20px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 0;
    overflow: hidden;
}

/* 
.contact-art {
    background: linear-gradient(160deg, var(--navy), var(--primary));
    padding: 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
} */

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    font-size: 26px;
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 14.5px;
    background: var(--white);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid h4 {
    color: var(--white);
    font-size: 15.5px;
    margin-bottom: 18px;
}

.footer-grid p {
    font-size: 14px;
    color: var(--white);
}

.footer-grid ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-grid ul li a:hover {
    color: #fff !important;
}

.footer-grid .contact-line {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    color: var(--white);
    flex-wrap: wrap;
    gap: 10px;
}



/* ---------------- Responsive Media Queries ---------------- */
@media (max-width: 991px) {
    .section-head {
        text-align: center;
        max-width: 100%;
        margin-bottom: 36px;
    }

}

@media (max-width: 1024px) {

    .logo-strip {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
        flex-wrap: wrap;
    }

    .logo-strip .logo-box {
        /* flex: 1; */
        min-width: 120px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
        width: 179px;
    }


    .feature {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 12px 12px;
        text-align: center;
    }
}

@media (max-width:768px) {
    .logo-strip .logo-box {
        /* flex: 1; */
        min-width: 120px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 99px;
        width: 165px;
    }
}

.footer-logo img {
    width: 180px;
}

@media (max-width:1090px) {
    .topbar {
        display: none;
        /* Hide topbar on mobile to save vertical space */
    }

    .footer-logo img {
        width: 200px;
    }
}

@media (max-width: 1090px) {


    .navbar {
        padding: 10px 0;
        position: relative;
    }

    .navbar .container {
        position: relative;
        gap: 16px;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        height: 100vh;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 26px;
        /* Reduced top padding to align with toggle button */
        box-shadow: -8px 0 24px rgba(0, 0, 0, .15);
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0px;
        z-index: 999;
    }

    .mobile-logo-wrap {
        position: sticky;
        top: -15px;
        /* nav-links padding જેટલું adjust કરો */
        left: 0;
        width: 100%;
        display: block;
        background: var(--white);
        z-index: 1002;

        margin: -15px -20px 20px;
        padding: 5px 10px;

        border-bottom: 1px solid var(--line);
    }

    .mobile-logo {
        display: block;
        width: 120px;
    }

    .mobile-logo img {
        max-height: 35px;
        width: auto;
        display: block;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 8px 0;
        font-size: 16px;
        /* border-bottom: 1px solid var(--line); */
    }

    .nav-links a.active::after {
        display: none;
    }

    /* Mobile Dropdown styles (Accordion style) */
    .has-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        padding: 0;
        box-shadow: none;
        transform: none;
        min-width: auto;
        transition: all 0.3s ease;
        background: var(--bg-soft);
        width: 100%;
        border-radius: 8px;
    }

    .has-dropdown.active-dropdown .dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 8px 12px;
        margin-top: 5px;
    }

    .has-dropdown .dropdown a {
        border-bottom: none;
        padding: 8px 10px;
        font-size: 14.5px;
    }

    .has-dropdown>a i {
        transition: transform 0.3s ease;
    }

    .has-dropdown.active-dropdown>a i {
        transform: rotate(180deg);
    }

    .nav-toggle {
        display: block;
        z-index: 1000;
        font-size: 22px;
        top: 5px;
    }

    /* Hero section responsiveness */
    .hero {
        padding: 80px 0 40px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin: 14px auto 24px;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-art img {
        max-width: 85%;
        margin: 0 auto;
    }

    /* About section responsiveness */
    .section {
        padding: 50px 0;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 36px;
    }

    .about-grid>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-grid img {
        max-width: 85%;
        margin: 0 auto;
    }

    .check-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto 20px;
    }

    /* Stat strip responsiveness */
    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 16px;
        margin-top: -24px;
        gap: 16px;
    }

    .stat-strip>div:last-child {
        grid-column: span 2;
    }

    /* Grids responsiveness */
    .card-grid,
    .feature-grid,
    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .services-wrap {
        grid-template-columns: 1fr;
    }

    /* Contact responsiveness */
    .contact-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .contact-art {
        padding: 30px;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    /* Footer responsiveness */
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .footer-grid>div:first-child {
        grid-column: span 2;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .logo-strip {
        justify-content: start;
        gap: 20px;
    }

    .footer-logo img {
        width: 170px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {
    .logo {
        font-size: 22px;
        width: 120px;
    }

    .logo-strip {
        /* justify-content: center; */
        gap: 10px;
    }

    .logo-strip .logo-box {
        /* flex: 1; */
        min-width: 120px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
        width: 180px;
    }

    .logo img {
        max-height: 32px;
    }

    .btn-login {
        padding: 7px 16px;
        font-size: 13.5px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-art img {
        max-width: 100%;
    }

    .about-grid img {
        max-width: 100%;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-strip>div:last-child {
        grid-column: span 1;
    }

    .card-grid,
    .feature-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid>div:first-child {
        grid-column: span 1;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

}

.mobile-login {
    display: none;
}

@media (max-width:375px) {
    .logo-strip .logo-box {
        /* flex: 1; */
        min-width: 120px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
        width: 156px;
    }
}

@media (max-width:320px) {
    .logo-strip .logo-box {
        /* flex: 1; */
        min-width: 120px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 110px;
        width: 130px;
    }
}

@media (max-width: 1090px) {

    .mobile-login {
        display: block;
        /* margin-top: 25px; */
        padding-top: 20px;
        border-top: 1px solid var(--white);
    }

    .mobile-login .btn-login {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        background: var(--primary);
        color: var(--white);
        padding: 9px 18px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
    }

    /* Desktop button hide on mobile */
    .nav-actions {
        display: none;
    }
}

@media (min-width: 981px) {
    .mobile-login {
        /* display: none; */
    }

    .nav-actions {
        /* display: flex; */
    }
}




/* ---------------- Header ---------------- */


/* ---------------- About hero ---------------- */
.about-hero {
    background: var(--bg-soft);
    padding: 160px 0 40px;
    overflow: hidden;
}

.about-hero .container {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.about-hero h1 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.about-hero h1 .accent {
    color: var(--secondary);
}

.about-hero p {
    color: var(--muted);
    font-size: 15.5px;
    max-width: 380px;
    margin: 16px 0 0;
}

.about-hero .divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin: 16px 0;
}

/* ---------------- Who we are ---------------- */
.section {
    padding: 70px 0;
}

.section-bg {
    background: var(--bg-soft);
}

.whoweare-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 46px;
    margin-top: -70px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--line);
}

.whoweare-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.whoweare-grid h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.whoweare-grid p {
    color: var(--ink);
    font-size: 14.5px;
    margin-bottom: 14px;
}

.whoweare-grid p:last-child {
    margin-bottom: 0;
}

/* ---------------- Mission / Vision / Value ---------------- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    text-align: center;
}

.mvv-item {
    padding: 0 30px;
    position: relative;
}

.mvv-item+.mvv-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--line);
}

.mvv-item .ico {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 26px;
    margin: 0 auto 16px;
}

.mvv-item h3 {
    font-size: 18px;
    letter-spacing: .04em;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 10px;
}

.mvv-item h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 26px;
    height: 2px;
    background: var(--secondary);
}

.mvv-item p {
    color: var(--muted);
    font-size: 14px;
}

/* ---------------- Stat strip ---------------- */
.stat-strip {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    grid-auto-flow: column;
}

.stat-strip .ico {
    font-size: 22px;
    margin-bottom: 8px;
}

.stat-strip .num {
    font-size: 26px;
    font-weight: 700;
}

.stat-strip .label {
    font-size: 13px;
    color: var(--white);
    margin-top: 4px;
}

/* ---------------- Team ---------------- */
.section-head {
    /* max-width: 620px; */
    margin-bottom: 30px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: 30px;
}

.section-head p {
    color: var(--muted);
    margin-top: 12px;
    font-size: 14.5px;
}

.team-wrap {
    display: grid;
    grid-template-columns: .9fr 2fr;
    gap: 40px;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(11, 42, 99, .05);
}

.team-card .avatar {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--bg-soft);
}

.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-card h4 {
    font-size: 15.5px;
    color: var(--primary);
}

.team-card .role {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

.team-card .li-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: none;
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 34px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.cta-banner img {
    height: 150px;
    width: 243px;
}

.cta-banner h3 {
    font-size: 24px;
    line-height: 1.3;
}

.cta-banner p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 8px;
}

/* ==========================================================================
   About Us Page Responsiveness (added for full mobile compatibility)
   ========================================================================== */

@media (max-width:1024px) {

    .about-hero {
        background: var(--bg-soft);
        padding: 100px 0 40px;
        overflow: hidden;
    }
}

@media (max-width: 991px) {

    /* About Hero responsiveness */
    .about-hero {
        padding: 120px 0 40px;
    }

    .about-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        margin: 16px auto 0;
        max-width: 500px;
    }

    .about-hero .divider {
        margin: 16px auto;
    }

    .about-hero img {
        margin: 0 auto;
        max-width: 80%;
    }

    /* Who We Are card & grid responsiveness */
    .whoweare-card {
        padding: 30px 24px;
        margin-top: -40px;
    }

    .whoweare-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whoweare-grid img {
        margin: 0 auto;
        max-width: 80%;
    }

    .whoweare-grid div {
        text-align: left;
    }

    /* Stat strip responsiveness */
    .stat-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }

    /* Team section responsiveness */
    .team-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .team-wrap>div:first-child {
        margin-bottom: 10px;
    }

    .team-wrap .btn {
        margin: 0 auto;
    }

    .team-grid {
        gap: 20px;
    }

    /* CTA Banner responsiveness */
    .cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
        justify-items: center;
    }

    .cta-banner img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Mission / Vision / Value responsiveness */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .mvv-item {
        padding: 0;
    }

    .team-card .avatar {
        width: 100%;
        height: 340px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 14px;
        background: var(--bg-soft);
    }

    .mvv-item+.mvv-item::before {
        display: none;
    }

    /* Stat strip responsiveness on smaller screens */
    .stat-strip {
        grid-template-columns: repeat(5, 1fr);
    }

    .stat-strip>div:last-child {
        grid-column: span 2;
    }

    /* Team grid on smaller screens */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    /* About Hero font size */
    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero img {
        max-width: 100%;
    }

    /* Who We Are image */
    .whoweare-grid img {
        max-width: 100%;
    }

    /* Stat strip fully stacked or smaller text */
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-strip>div:last-child {
        grid-column: span 1;
    }

    /* Team cards fully stacked */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    /* CTA Banner image sizing */
    .cta-banner img {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
}


@media (max-width: 468px) {

    .stat-strip {
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        color: var(--white);
        border-radius: var(--radius);
        padding: 32px 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        text-align: center;
        box-shadow: var(--shadow);
        grid-auto-flow: row;
    }




}



/* ---------------- Awards hero ---------------- */
.awards-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.awards-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

.awards-hero h1 {
    color: var(--secondary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.awards-hero .divider {
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 20px 0;
}

.awards-hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 430px;
    margin: 0;
    line-height: 1.7;
}

.awards-hero .trophy-art {
    text-align: center;
}

.awards-hero .trophy-art img {
    max-width: 340px;
    margin: 0 auto;
}

/* ---------------- Achievements section ---------------- */
.awards-section {
    padding: 70px 0;
    background: var(--white);
}

.awards-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.awards-section-head h2 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.awards-section-head p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.award-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 20px 26px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.award-card .art {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.award-card h3 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    color: var(--ink);
    margin: 0 0 10px;
}

.award-card p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 16px;
    min-height: 60px;
}

.award-card .view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.award-card .view-details:hover {
    color: var(--primary);
}

.award-card .art img {
    height: 200px;
    object-fit: cover;
}

@media (max-width: 980px) {
    .awards-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .awards-hero .divider {
        margin: 20px auto;
    }

    .awards-hero p {
        margin: 0 auto;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .awards-hero h1 {
        font-size: 30px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .awards-hero {
        padding: 70px 0;
    }

    .awards-hero .container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .awards-hero h1 {
        font-size: 24px;
        line-height: 1.3;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .awards-hero .divider {
        margin: 14px auto;
    }

    .awards-hero p {
        font-size: 13.5px;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .awards-hero .trophy-art img {
        max-width: 200px;
    }

    .awards-section {
        padding: 36px 0;
    }

    .awards-section-head h2 {
        font-size: 20px;
    }

    .awards-section-head p {
        font-size: 13px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .award-card {
        padding: 16px;
    }

    .award-card p {
        min-height: 0;
    }
}







/* ---------------- Testimonials hero ---------------- */
.testi-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
    padding-bottom: 50px;
}

.testi-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 30px;
}

.testi-hero h1 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin: 0;
}

.testi-hero h1 .accent {
    color: var(--primary);
}

.testi-hero .divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 18px 0;
}

.testi-hero p {
    color: var(--muted);
    font-size: 15px;
    max-width: 380px;
    margin: 0;
    line-height: 1.7;
}

.testi-hero .art {
    text-align: center;
}

.testi-hero .art img {
    max-width: 100%;
}


/* ---------------- Slider ---------------- */
/* .testi-section {
    padding: 50px 0 60px;
    background: var(--white);
    position: relative;
}

.testi-slider-wrap {
    position: relative;
}

.testi-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: 0 8px 20px rgba(11, 42, 99, .04);
}

.testi-card .top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.testi-card .quote-mark {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1;
    color: var(--secondary);
    font-weight: 700;
}

.testi-card .stars {
    color: #f5b93d;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.testi-card .stars .empty {
    color: var(--bg-soft);
}

.testi-card p.review {
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.testi-card .divider-line {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0 0 16px;
}

.testi-card .person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-card .person img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex: none;
}

.testi-card .person h4 {
    font-size: 14.5px;
    color: var(--ink);
    margin: 0;
}

.testi-card .person .role {
    font-size: 12.5px;
    color: var(--muted);
}

.testi-card .person .date {
    margin-left: auto;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}






/* arrows */

/* ================= Testimonials (Google review style) ================= */
.testi-section {
    padding: 0px 0 60px;
    background: var(--white);
    position: relative;
}

.testi-section .section-head {
    text-align: center;
    margin-bottom: 56px;
}

.testi-section .section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.testi-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.testi-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 50px 4px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
    display: none;
}

.testi-card {
    position: relative;
    flex: 0 0 calc(33.333% - 19px);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 26px 28px;
    box-shadow: 0 10px 24px rgba(11, 42, 99, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* highlighted center card - disabled */
/*
.testi-card.active {
    border-color: var(--secondary);
    box-shadow: 0 18px 40px rgba(11, 42, 99, .14);
    transform: translateY(-10px);
    z-index: 2;
}
*/

/* avatar badge, half overlapping the top edge */
.testi-avatar {
    position: absolute;
    top: -27px;
    left: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    color: var(--primary);
    background: color-mix(in srgb, var(--secondary) 16%, var(--white));
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(11, 42, 99, .12);
}

.testi-card:nth-child(3n+2) .testi-avatar {
    background: color-mix(in srgb, var(--primary) 14%, var(--white));
}

.testi-card:nth-child(3n+3) .testi-avatar {
    background: color-mix(in srgb, var(--secondary) 26%, var(--bg-soft));
}

/*
.testi-card.active .testi-avatar {
    border-color: var(--secondary);
    background: color-mix(in srgb, var(--secondary) 24%, var(--white));
}
*/

.testi-dot {
    position: absolute;
    top: 32px;
    left: 52px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondary) 55%, var(--white));
    border: 2px solid var(--white);
}

/*
.testi-card.active .testi-dot {
    background: var(--secondary);
}
*/

.testi-card .top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 14px;
}

.testi-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft);
    color: var(--secondary);
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.testi-source i {
    font-size: 12px;
    color: var(--secondary);
}

.testi-card .stars {
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: 2px;
}

.testi-card .stars .empty {
    color: var(--line);
}

.testi-card p.review {
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 20px;
    height: 150px;
}

.testi-card .person h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* 
.testi-card .person h4 span {
    color: var(--secondary);
    font-weight: 600;
} */

.testi-card .person .meta {
    font-size: 12px;
    color: var(--muted);
}

.testi-card .person .meta .cat {
    color: var(--secondary);
    font-weight: 600;
}

/* vertical list layout */
.testi-list {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.testi-list .testi-card {
    width: 100%;
    height: 100%;
    max-width: 760px;
    flex: none;
    scroll-snap-align: unset;
}

.review-detail {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-list .testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(11, 42, 99, .12);
    border-color: var(--secondary);
}

/* arrows moved below, centered */
.testi-arrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.testi-arrow {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
}

.testi-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testi-main {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

@media (max-width: 980px) {
    .testi-card {
        flex: 0 0 calc(50% - 14px);
    }
}

@media (max-width: 640px) {
    .testi-card {
        flex: 0 0 88%;
    }
}

@media (max-width: 768px) {
    .testi-list {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 30px 0;
    }
}

@media (max-width: 550px) {
    .testi-list {
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 30px 0;
    }
}

















/* ---------------- Stat strip ---------------- */
.testi-stats {
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-top: 40px;
    padding: 26px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.testi-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-stats .stat-item .ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 18px;
    flex: none;
}

.testi-stats .stat-item .num {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
}

.testi-stats .stat-item .label {
    font-size: 12.5px;
    color: var(--muted);
    text-align: left;
}

@media (max-width: 980px) {
    .testi-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testi-hero .divider {
        margin: 18px auto;
    }

    .testi-hero p {
        margin: 0 auto;
    }

    .testi-card {
        flex: 0 0 calc(50% - 12px);
    }

    .testi-stats {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;

    }

    .testi-stats .stat-item {
        width: 210px;
        justify-content: flex-start;
    }


}

@media (max-width: 640px) {

    /* Heading */
    .testi-hero h1 {
        font-size: 28px;
    }

    /* Testimonial Slider */
    .testi-section .section-head h2 {
        font-size: 28px;
    }

    .testi-track {
        padding: 45px 6% 15px;
        gap: 16px;
    }

    .testi-card {
        flex: 0 0 88%;
        max-width: 100%;
        scroll-snap-align: center;
    }



    /* Stats Box */
    .testi-stats {
        width: 100%;
        max-width: 320px;
        margin: 40px auto;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        justify-content: center;
        align-items: center;
    }

    .testi-stats .stat-item {
        width: 210px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }

    .testi-stats .stat-item .num,
    .testi-stats .stat-item .label {
        text-align: left;
    }

    /* Single Item */
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    /* Icon */
    .stat-item .ico {
        width: 54px;
        height: 54px;
        min-width: 54px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: var(--white);
        color: var(--primary);
        font-size: 20px;
    }

    /* Text */
    .stat-item>div:last-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stat-item .num {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--secondary);
    }

    .stat-item .label {
        margin-top: 3px;
        font-size: 14px;
        color: #666;
    }
}

/* ==========================================================================
   Careers / Apply Page (careers.html)
   Namespaced with "career-" / "apply-" prefixes so it never collides with
   the .hero / .card / .feature rules used above on other pages.
   ========================================================================== */

/* ---------------- Career hero banner ---------------- */
.career-hero {
    background: linear-gradient(120deg, var(--bg-soft) 0%, var(--bg-soft) 100%);
    padding: 150px 0 60px;
    overflow: hidden;
}

.career-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.career-hero-text {
    color: var(--white);
    max-width: 560px;
}

.career-hero-text h1 {
    color: var(--primary);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
}

.career-hero-text h1 span {
    color: var(--primary);
}

.career-underline {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin-bottom: 18px;
}

.career-hero-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 420px;
}

.career-hero-art {
    width: 380px;
    flex-shrink: 0;
}

.career-hero-art img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}

.career-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

.about-hero-art img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}

.about-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

/* ---------------- Feature strip (below hero) ---------------- */
.career-features {
    background: var(--bg-soft);
    padding: 28px 24px;
}

.career-features-inner {
    max-width: var(--container);
    margin: -50px auto 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 28px 32px;
}

.career-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.career-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.career-feature-icon svg {
    width: 22px;
    height: 22px;
}

.career-feature-text h3 {
    margin: 0 0 4px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
}

.career-feature-text p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ---------------- Apply form section ---------------- */
.apply-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.apply-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 8px;
}

.apply-title span {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-underline-offset: 6px;
}

.apply-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 14.5px;
    margin: 0 0 36px;
}

.application-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.field .req {
    color: #e14b4b;
    margin-left: 2px;
}

.application-card input[type="text"],
.application-card input[type="email"],
.application-card input[type="tel"],
.application-card textarea,
.application-card select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.application-card input::placeholder,
.application-card textarea::placeholder {
    color: #a7afbd;
}

.application-card input:focus,
.application-card textarea:focus,
.application-card select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(57, 94, 150, .15);
}

.input-icon {
    position: relative;
}

.input-icon input {
    padding-right: 40px;
}

.input-icon svg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.dual-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.file-input {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 14px;
}

.file-btn {
    background: var(--bg-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.file-name {
    font-size: 13.5px;
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.application-card textarea {
    resize: vertical;
    min-height: 100px;
}

.apply-submit-btn {
    margin-top: 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.apply-submit-btn svg {
    width: 18px;
    height: 18px;
}

.apply-submit-btn:hover {
    background: var(--white);
    transform: translateY(0px);
    color: var(--primary);
    border: 2px solid var(--primary);
}

@media (max-width:1024px) {
    .career-hero {
        background: linear-gradient(120deg, var(--bg-soft) 0%, var(--bg-soft) 100%);
        padding: 100px 0 60px;
        overflow: hidden;
    }


    .career-hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
    }
}

/* ---------------- Career page responsiveness ---------------- */
@media (max-width: 860px) {
    .career-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .career-hero-text {
        max-width: 100%;
    }

    .career-hero-text p {
        margin: 0 auto;
    }

    .career-underline {
        margin: 0 auto 18px;
    }

    .career-hero-art {
        width: 280px;
    }

    .career-features-inner {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .career-features-inner {
        grid-template-columns: 1fr;
    }

    .application-card {
        padding: 24px;
    }

    .dual-select {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Blogs Listing Page (blogs.html)
   Namespaced with "blog-" so it never collides with rules above.
   Uses root variables only — no new colors introduced.
   ========================================================================== */

/* ---------------- Blog hero ---------------- */
.blog-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
}

.blog-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.blog-hero-text h1 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 14px;
}

.blog-hero-underline {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    margin-bottom: 16px;
}

.blog-hero-text p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
}

.blog-hero-art {
    width: 380px;
    flex-shrink: 0;
}

.blog-hero-art svg {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}

.contact-art {
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}


.blog-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

.contact-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

/* ---------------- Filter row ---------------- */
.blog-filter-bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 28px 24px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.blog-filter-pill svg {
    width: 16px;
    height: 16px;
}

.blog-filter-pill:hover {
    border-color: var(--secondary);
    color: var(--primary);
}

.blog-filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.blog-search {
    position: relative;
    min-width: 240px;
}

.blog-search input {
    width: 100%;
    padding: 11px 42px 11px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

.blog-search input:focus {
    border-color: var(--secondary);
}

.blog-search input::placeholder {
    color: var(--muted);
}

.blog-search svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: var(--primary);
    pointer-events: none;
}

/* ---------------- Blog grid ---------------- */
.blog-list-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 24px 20px;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-post-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(11, 42, 99, .04);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-post-thumb {
    position: relative;
    background: var(--bg-soft);
    aspect-ratio: 16 / 11;
}

.blog-post-thumb img {
    height: 300px;
    width: 100%;
}

.blog-post-thumb svg {
    width: 100%;
    height: 100%;
    display: block;
}

.blog-post-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blog-post-tag {
    background: var(--primary);
    color: var(--white);
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
}

.blog-post-date svg {
    width: 13px;
    height: 13px;
}

.blog-post-body h3 {
    font-size: 17px;
    color: var(--ink);
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-post-body p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-author .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex: none;
}

.blog-post-author span {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
}

.blog-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform .15s ease;
}

.blog-post-card:hover .blog-read-more svg {
    transform: translateX(3px);
}

/* ---------------- Pagination ---------------- */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 36px 0 8px;
}

.blog-page-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.blog-page-btn svg {
    width: 16px;
    height: 16px;
}

.blog-page-btn:hover {
    border-color: var(--secondary);
    color: var(--primary);
}

.blog-page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.blog-page-btn.dots {
    border: none;
    cursor: default;
    color: var(--muted);
}

.blog-page-btn.dots:hover {
    color: var(--muted);
}

/* ---------------- Newsletter strip ---------------- */
.blog-newsletter {
    max-width: var(--container);
    margin: 20px auto 60px;
    padding: 0 24px;
}

.blog-newsletter-inner {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-newsletter-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.blog-newsletter-text h3 {
    color: var(--primary);
    font-size: 20px;
    margin: 0 0 6px;
}

.blog-newsletter-text p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
    max-width: 380px;
}

.blog-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-newsletter-form input {
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 14px;
    min-width: 240px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

.blog-newsletter-form input:focus {
    border-color: var(--secondary);
}

.blog-newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .15s ease;
    white-space: nowrap;
}

.blog-newsletter-form button svg {
    width: 15px;
    height: 15px;
}

.blog-newsletter-form button:hover {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* ---------------- Blogs page responsiveness ---------------- */
@media (max-width: 1024px) {
    .blog-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-hero {
        background: var(--bg-soft);
        padding: 100px 0 50px;
        overflow: hidden;
    }

}

@media (max-width: 860px) {
    .blog-hero {
        padding: 110px 0 30px;
    }

    .blog-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .blog-hero-underline {
        margin: 0 auto 16px;
    }

    .blog-hero-text p {
        margin: 0 auto;
    }

    .blog-hero-art {
        width: 260px;
    }

    .blog-filter-bar {
        justify-content: center;
        text-align: center;
    }

    .blog-filters {
        justify-content: center;
    }

    .blog-search {
        width: 100%;
    }

    .blog-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .blog-newsletter-left {
        flex-direction: column;
        text-align: center;
    }

    .blog-newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .blog-newsletter-form input {
        flex: 1;
        min-width: 0;
    }

    .blog-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .blog-filter-pill span.label-text {
        display: none;
    }

    .blog-filter-pill {
        padding: 9px 12px;
    }

    .blog-filter-pill.active span.label-text,
    .blog-filter-pill:first-child span.label-text {
        display: inline;
    }
}

@media (max-width: 420px) {
    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form input,
    .blog-newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}





/* ==========================================================================
   Insuraa — Gallery page styles
   Reuses the root variables already defined in assets/css/style.css
   (--primary, --secondary, --ink, --muted, --line, --bg-soft, --white,
    --radius, --shadow, --container)

   NOTE: every translucent tint below (photo scrim, hover overlay, lightbox
   backdrop) is built with color-mix(in srgb, var(--primary) X%, transparent)
   instead of a hardcoded rgba(navy) value. That means if --primary is ever
   changed in :root (blue, green, whatever), all of these update with it
   automatically — nothing here needs to be touched again.
   ========================================================================== */

/* ---------- Gallery hero (banner) ---------- */
.gallery-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
}

.gallery-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.gallery-hero-copy {
    max-width: 560px;
}

.gallery-hero-copy h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 4px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.gallery-hero-copy h1::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: var(--secondary);
}

.gallery-hero-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.gallery-hero-art {
    flex: 0 0 auto;
    max-width: 380px;
    position: relative;
    display: inline-block;
    isolation: isolate;
}

.gallery-hero-art img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}


.gallery-hero-art::after {
    content: "";
    position: absolute;
    inset: 0;

    /* background: var(--bg-soft); */
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

.singleblog-art img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.35) saturate(0.9) hue-rotate(-8deg) brightness(1.02);
}


.singleblog-art::after {
    content: "";
    position: absolute;
    inset: 0;

    /* background: var(--bg-soft); */
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}


/* ---------- Filters ---------- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill i {
    font-size: 13px;
    color: var(--primary);
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-pill.active i {
    color: var(--white);
}

/* ---------- Grid ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card = the photo itself; tag sits ON TOP of the image (overlay), not below it */
.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Dark gradient scrim at the bottom so the tag stays readable on any photo.
   Tinted from --primary, so it re-colors with the theme automatically. */
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 55%,
            color-mix(in srgb, var(--primary) 55%, transparent) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Tag badge — overlaid on top of the image, bottom-left corner */
.gallery-item .tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.gallery-item .tag i {
    color: var(--white);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: color-mix(in srgb,
            color-mix(in srgb, var(--primary) 25%, var(--secondary) 27%) 70%,
            var(--bg-soft) 47%); */
    mix-blend-mode: color;
    opacity: 0.35;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 0.65;
}

.gallery-item .view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 3;
}

.gallery-item .view-btn i {
    color: var(--primary);
}

.gallery-item:hover .view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.gallery-item .view-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-item .view-btn:hover i {
    color: var(--white);
}

/* ---------- Load more ---------- */
.gallery-loadmore {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ---------- Lightbox / image preview ---------- */
/* Backdrop is color-mix(--primary), so it's always the current theme
   color, just dimmed enough to focus on the photo. */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 9999;
    padding: 30px;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-inner img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--bg-soft);
}

.lightbox-caption {
    margin-top: 16px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
}

/* Close / nav buttons sit on top of the --primary backdrop, so they get a
   soft white glass fill to stay visible, then solidify to --secondary
   on hover for a clear, on-brand active state. */
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg-soft);
    color: var(--secondary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ---------- Lightbox Next / Prev navigation ---------- */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--bg-soft);
    color: var(--secondary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.lightbox-nav:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.08);
    color: var(--white);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .gallery-hero {
        background: var(--bg-soft);
        padding: 100px 0 50px;
        overflow: hidden;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .gallery-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .gallery-hero-copy {
        max-width: 100%;
    }

    .gallery-hero-copy h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-hero-art {
        max-width: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        padding: 70px 0 50px;
    }

    .gallery-hero-copy h1 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-pill {
        padding: 8px 16px;
        font-size: 13px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

/* ==========================================================================
   Reusable "theme tint" utility
   Add THIS BLOCK ONCE to assets/css/style.css (already shared across all pages).
   Then wrap ANY <img> on ANY page with class="tint-wrap" — no extra CSS
   needed per page. Change --primary / --secondary / --bg-soft in :root and
   every tinted image across the whole site updates automatically.
   ========================================================================== */

.tint-wrap {
    position: relative;
    display: inline-block;
    isolation: isolate;
    overflow: hidden;
    border-radius: inherit;
}

.tint-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The tint layer itself */
.tint-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    mix-blend-mode: multiply;
    opacity: .45;
    pointer-events: none;
}

/* Optional: stronger tint on hover (skip if image isn't hoverable) */
.tint-wrap:hover::after {
    opacity: 0.55;
}

/* Optional modifier: lighter tint, for photos where a heavy tint looks bad */
.tint-wrap.tint-soft::after {
    opacity: 0.18;
}

.tint-wrap.tint-soft:hover::after {
    opacity: 0.3;
}



/* blog-details */
/* ---------------- Blog hero ---------------- */
.blogd-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
}

.blogd-hero .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 0px;
}

.blogd-hero .breadcrumb {
    color: #b9c8ea;
    font-size: 13px;
    margin-bottom: 14px;
}

.blogd-hero .breadcrumb a {
    color: var(--primary);
}

.blogd-hero .breadcrumb a:hover {
    color: var(--secondary);
}

.blogd-hero .breadcrumb .current {
    color: var(--primary)
}

.blogd-hero h1 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 16px;
}

.blogd-hero .meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13.5px;
}

.blogd-hero .meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.blogd-hero .art {
    text-align: right;
}

.blogd-hero .art img {
    max-width: 100%;
}

/* ---------------- Layout ---------------- */
.blogd-layout {
    padding: 40px 0 60px;
}

.blogd-layout .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
}

/* ---------------- Article ---------------- */
.blogd-article .blogd-featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    /* border: 1px solid var(--line); */
    display: flex;
    justify-content: center;
}

.blogd-article p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.blogd-article p strong {
    color: var(--primary);
}

.blogd-article h2 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 22px;
    margin: 30px 0 14px;
}

/* highlight callout box */
.blogd-callout {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 26px 28px;
    display: flex;
    gap: 20px;
    margin: 24px 0 30px;
}

.blogd-callout .ico {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 22px;
    flex: none;
}

.blogd-callout h3 {
    color: var(--primary);
    font-size: 17px;
    margin: 4px 0 14px;
}

.blogd-callout ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blogd-callout li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 10px;
}

.blogd-callout li i {
    color: var(--secondary);
    margin-top: 3px;
}

/* benefits list */
.blogd-benefits {
    margin: 10px 0 30px;
}

.blogd-benefit-item {
    display: flex;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.blogd-benefit-item:last-child {
    border-bottom: none;
}

.blogd-benefit-item .ico {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: none;
}

.blogd-benefit-item h4 {
    color: var(--ink);
    font-size: 15px;
    margin: 0 0 4px;
}

.blogd-benefit-item p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
}

/* share row */
.blogd-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.blogd-share span {
    color: var(--ink);
    font-weight: 600;
    font-size: 14.5px;
}

.blogd-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.blogd-share .fb {
    background: #3b5998;
}

.blogd-share .fb:hover {
    background: white;
    color: #3b5998;
    border: 1px solid #3b5998;
}

.blogd-share .tw {
    background: #1da1f2;
}

.blogd-share .tw:hover {
    background: white;
    color: #1da1f2;
    border: 1px solid #1da1f2;
}

.blogd-share .li {
    background: #0a66c2;
}

.blogd-share .li:hover {
    background: white;
    color: #0a66c2;
    border: 1px solid #0a66c2;
}

.blogd-share .wa {
    background: #25d366;
}

.blogd-share .wa:hover {
    background: white;
    color: #25d366;
    border: 1px solid #25d366;
}

/* prev/next nav */
.blogd-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.blogd-nav a {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 18px;
    display: block;
}

.blogd-nav .label {
    font-size: 12.5px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.blogd-nav.blogd-next-align {
    text-align: right;
}

.blogd-nav .blogd-next-align .label {
    justify-content: flex-end;
}

.blogd-nav .title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

/* ---------------- Sidebar ---------------- */
.blogd-sidebar>*+* {
    margin-top: 24px;
}

.blogd-side-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}

.blogd-side-card h3 {
    color: var(--secondary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    margin: 0 0 16px;
}

.blogd-search {
    position: relative;
}

.blogd-search input {
    width: 100%;
    padding: 12px 44px 12px 14px;
    border-radius: 4px;
    border: 1px solid var(--line);
    font-size: 14px;
    background: var(--bg-soft);
}

.blogd-search button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogd-cat-list li {
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    font-size: 14px;
    color: var(--ink);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.blogd-cat-list li i:first-child {
    color: var(--secondary);
    width: 16px;
    text-align: center;
}

.blogd-cat-list li:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.blogd-cat-list li.active {
    /* background: var(--bg-soft); */
    color: var(--secondary);
    font-weight: 600;
}


.blogd-recent-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.blogd-recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blogd-recent-post img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    flex: none;
}

.blogd-recent-post h4 {
    font-size: 13.5px;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.4;
}

.blogd-recent-post .date {
    font-size: 12px;
    color: var(--muted);
}

.blogd-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blogd-tag-list a {
    background: var(--bg-soft);
    color: var(--secondary);
    font-size: 12.5px;
    padding: 6px 14px;
    border-radius: 20px;
}

.blogd-tag-list a:hover {
    background: var(--secondary);
    color: var(--white);
}

.blogd-cta {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 26px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blogd-cta h3 {
    color: var(--white);
    font-size: 18px;
    margin: 0 0 10px;
}

.blogd-cta p {
    color: var(--white);
    font-size: 13.5px;
    margin: 0 0 18px;
}

.blogd-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.blogd-cta .btn:hover {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--white);
}

@media (max-width: 1024px) {
    .blogd-hero {
        background: var(--bg-soft);
        padding: 100px 0 50px;
        overflow: hidden;
    }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .blogd-hero .container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .blogd-hero .art {
        text-align: left;
        max-width: 320px;
    }

    .blogd-layout .container {
        grid-template-columns: 1fr;
    }

    .blogd-sidebar {
        order: 2;
    }

    .blogd-cat-list {
        display: flex;
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .blogd-cat-list li {
        border-bottom: 1px solid var(--line);
        display: flex;
        align-items: center;
        gap: 10px;
        width: 165px;
        padding: 9px 10px;
        font-size: 14px;
        color: var(--ink);
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
    }
}

@media (max-width: 640px) {
    .blogd-hero h1 {
        font-size: 24px;
    }

    .blogd-hero .meta {
        gap: 12px;
        font-size: 12.5px;
    }

    .blogd-callout {
        flex-direction: column;
        padding: 20px;
    }

    .blogd-benefit-item {
        gap: 12px;
    }

    .blogd-nav {
        grid-template-columns: 1fr;
    }

    .blogd-nav.blogd-next-align {
        text-align: left;
    }

    .blogd-nav .blogd-next-align .label {
        justify-content: flex-start;
    }

    .blogd-share {
        flex-wrap: wrap;
    }
}





/* ---------------- insurance page Hero ---------------- */
.pi-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
}

.pi-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

.pi-badge {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--secondary);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pi-hero h1 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.pi-hero h1 .accent {
    color: var(--secondary);
}

.pi-hero p {
    color: var(--muted);
    font-size: 15px;
    max-width: 440px;
    margin: 16px 0 26px;
    line-height: 1.7;
}

.pi-hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pi-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.pi-trust div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 600;
}

.pi-trust .ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: none;
}

.pi-hero-art {
    text-align: center;
}

.pi-hero-art img {
    max-width: 100%;
    border-radius: var(--radius);
}

/* ---------------- Buttons (page-scoped, avoids relying on other pages) ---------------- */
.pi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14.5px;
    border: 2px solid transparent;
    transition: all .2s ease;
}

.pi-btn-primary {
    background: var(--primary);
    color: var(--white);
}

.pi-btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pi-btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--white);
}

.pi-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------------- What is PI ---------------- */
.pi-section {
    padding: 60px 0;
}

.pi-whatis-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.pi-whatis-grid img {
    border-radius: var(--radius);
    width: 100%;
}

.pi-eyebrow {
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.pi-whatis-grid h2 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 28px;
    margin: 0 0 14px;
}

.pi-whatis-grid h2 .accent {
    color: var(--secondary);
}

.pi-whatis-grid p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.pi-callout {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pi-callout .ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.pi-callout span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ---------------- Features + Why important ---------------- */
.pi-two-col {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.pi-panel {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 22px 30px;
}

.pi-panel-head {
    text-align: center;
    margin-bottom: 26px;
}

.pi-panel-head h2 {
    color: var(--primary);
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    margin: 0;
}

/* .pi-panel-head h2 .accent {
    color: var(--secondary);
} */

.pi-panel-head p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 8px;
}

.pi-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width:1024px) {

    .pi-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.pi-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 16px;
    box-shadow: 0 6px 16px rgba(11, 42, 99, .05);
}

.pi-feature-card .ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.pi-feature-card h4 {
    color: var(--primary);
    font-size: 13.5px;
    margin: 0 0 6px;
}

.pi-feature-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.pi-why-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.pi-why-img img {
    width: 100%;
    display: block;
    height: 225px;
}

.pi-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--ink);
    margin-bottom: 14px;
}

.pi-why-list li i {
    color: var(--secondary);
    margin-top: 3px;
}

/* ---------------- How it works ---------------- */
.pi-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
    margin-top: 30px;
    position: relative;
}

.pi-step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    position: relative;
    margin: 0 30px;
}

.pi-step .num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin: 0 auto 14px;
}

.pi-step h4 {
    color: var(--primary);
    font-size: 14.5px;
    margin: 0 0 6px;
}

.pi-step p {
    color: var(--muted);
    font-size: 12.5px;
    margin: 0;
}

.pi-step-arrow {
    position: absolute;
    top: 60px;
    width: 30px;
    height: 30px;
    right: -22%;
    justify-content: center;
    align-items: center;
    display: flex;
    /* left: 0; */
    color: var(--secondary);
    font-size: 16px;
    z-index: 2;
    border-radius: 50px;
    background: var(--bg-soft);
}

/* ---------------- CTA banner ---------------- */
.pi-cta-banner {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.pi-cta-banner img {
    width: 150px;
}

.pi-cta-banner h3 {
    color: var(--primary);
    font-size: 20px;
    margin: 0;
}

.pi-cta-banner p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 6px;
}

/* ---------------- FAQ ---------------- */
.pi-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 30px;
}

.pi-faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.pi-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

.pi-faq-q i {
    color: var(--secondary);
    transition: transform .2s ease;
}

.pi-faq-item.open .pi-faq-q i {
    transform: rotate(45deg);
}

.pi-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 20px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.7;
}

.pi-faq-item.open .pi-faq-a {
    padding-bottom: 16px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
    .pi-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 0px;
    }

    .pi-hero {
        background: var(--bg-soft);
        padding: 100px 0 50px;
        overflow: hidden;
    }

    .pi-hero-cta,
    .pi-trust {
        justify-content: center;
    }

    .pi-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .pi-whatis-grid {
        grid-template-columns: 1fr;
    }

    .pi-two-col {
        grid-template-columns: 1fr;
    }

    .pi-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pi-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pi-step {
        margin: 0;
    }

    .pi-step-arrow {
        display: none;
    }

    .pi-cta-banner {
        display: flex;
        justify-content: center;
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
    }

    .pi-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .pi-hero h1 {
        font-size: 28px;
    }

    .pi-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pi-steps {
        grid-template-columns: 1fr;
    }

    .pi-panel {
        padding: 22px;
    }

    .pi-feature-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}


.accordion-item {
    border: 1px solid var(--bg-soft);
    overflow: hidden;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    padding: 18px 22px;
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-soft);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink);
}

.accordion-button::after {
    transition: .3s;
}

/* ==========================================================================
   Handshake Animation Section Styles
   ========================================================================== */
.handshake-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
    padding: 70px 0 0 0;
    border-top: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.handshake-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.handshake-section .sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.handshake-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.char-left,
.char-right {
    height: 350px;
    width: auto;
    flex-shrink: 0;
    opacity: 0;
    z-index: 2;
    position: relative;
}

.char-left img,
.char-right img {
    height: 100%;
    width: auto;
    display: block;
}

/* Policy Paper */
.policy-paper {
    position: absolute;
    top: 57%;
    left: 23%;
    width: 32px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transform: rotate(-12deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3px;
    z-index: 3;
    pointer-events: none;
}

.policy-paper::before {
    content: 'POLICY';
    font-size: 6px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-family: inherit;
    line-height: 1;
}

.policy-paper::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: #aab6c4;
    box-shadow: 0 3px 0 #aab6c4, 0 6px 0 #aab6c4, 0 9px 0 #aab6c4;
}

/* Background decorative elements */
.handshake-bg-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(234, 241, 253, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Handshake Pulse Effect */
.handshake-pulse {
    position: absolute;
    bottom: 165px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(46, 201, 140, 0.3);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}

/* Animation triggers */
.handshake-section.animated .char-left {
    animation: handshakeCycleLeft 6s ease-in-out infinite;
}

.handshake-section.animated .char-right {
    animation: handshakeCycleRight 6s ease-in-out infinite;
}

.handshake-section.animated .handshake-pulse {
    animation: pulseCycleEffect 6s ease-in-out infinite;
}

/* Keyframes - Desktop */
@keyframes handshakeCycleLeft {
    0% {
        transform: translateX(-120%) scale(0.95);
        opacity: 0;
    }

    /* Slide in & settle */
    22% {
        transform: translateX(56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Handshake shakes */
    28% {
        transform: translateX(56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    34% {
        transform: translateX(56px) translateY(0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translateX(56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    46% {
        transform: translateX(56px) translateY(0) scale(1);
        opacity: 1;
    }

    52% {
        transform: translateX(56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    58% {
        transform: translateX(56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Hold handshake briefly */
    66% {
        transform: translateX(56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Slide out */
    82% {
        transform: translateX(-120%) scale(0.95);
        opacity: 0;
    }

    100% {
        transform: translateX(-120%) scale(0.95);
        opacity: 0;
    }
}

@keyframes handshakeCycleRight {
    0% {
        transform: translateX(120%) scale(0.95);
        opacity: 0;
    }

    /* Slide in & settle */
    22% {
        transform: translateX(-56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Handshake shakes */
    28% {
        transform: translateX(-56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    34% {
        transform: translateX(-56px) translateY(0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translateX(-56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    46% {
        transform: translateX(-56px) translateY(0) scale(1);
        opacity: 1;
    }

    52% {
        transform: translateX(-56px) translateY(-6px) scale(1);
        opacity: 1;
    }

    58% {
        transform: translateX(-56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Hold handshake briefly */
    66% {
        transform: translateX(-56px) translateY(0) scale(1);
        opacity: 1;
    }

    /* Slide out */
    82% {
        transform: translateX(120%) scale(0.95);
        opacity: 0;
    }

    100% {
        transform: translateX(120%) scale(0.95);
        opacity: 0;
    }
}

@keyframes pulseCycleEffect {

    0%,
    22% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }

    32% {
        transform: translate(-50%, 0) scale(1.3);
        opacity: 1;
        box-shadow: 0 0 25px 8px rgba(46, 201, 140, 0.5);
    }

    42% {
        transform: translate(-50%, 0) scale(2.0);
        opacity: 0;
    }

    43% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }

    52% {
        transform: translate(-50%, 0) scale(1.3);
        opacity: 1;
        box-shadow: 0 0 25px 8px rgba(46, 201, 140, 0.5);
    }

    62% {
        transform: translate(-50%, 0) scale(2.0);
        opacity: 0;
    }

    63%,
    100% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .handshake-section h2 {
        font-size: 1.8rem;
    }

    .handshake-section .sub {
        font-size: 1rem;
        padding: 0 20px;
    }

    .handshake-wrapper {
        height: 310px;
    }

    .char-left,
    .char-right {
        height: 280px;
    }

    .policy-paper {
        width: 25px;
        height: 33px;
    }

    .policy-paper::before {
        font-size: 5px;
        margin-bottom: 1px;
    }

    .policy-paper::after {
        box-shadow: 0 2px 0 #aab6c4, 0 4px 0 #aab6c4, 0 6px 0 #aab6c4;
    }

    .handshake-pulse {
        bottom: 130px;
        width: 40px;
        height: 40px;
    }

    @keyframes handshakeCycleLeft {
        0% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }

        22% {
            transform: translateX(45px) translateY(0) scale(1);
            opacity: 1;
        }

        28% {
            transform: translateX(45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        34% {
            transform: translateX(45px) translateY(0) scale(1);
            opacity: 1;
        }

        40% {
            transform: translateX(45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        46% {
            transform: translateX(45px) translateY(0) scale(1);
            opacity: 1;
        }

        52% {
            transform: translateX(45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        58% {
            transform: translateX(45px) translateY(0) scale(1);
            opacity: 1;
        }

        66% {
            transform: translateX(45px) translateY(0) scale(1);
            opacity: 1;
        }

        82% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }

        100% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }
    }

    @keyframes handshakeCycleRight {
        0% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }

        22% {
            transform: translateX(-45px) translateY(0) scale(1);
            opacity: 1;
        }

        28% {
            transform: translateX(-45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        34% {
            transform: translateX(-45px) translateY(0) scale(1);
            opacity: 1;
        }

        40% {
            transform: translateX(-45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        46% {
            transform: translateX(-45px) translateY(0) scale(1);
            opacity: 1;
        }

        52% {
            transform: translateX(-45px) translateY(-5px) scale(1);
            opacity: 1;
        }

        58% {
            transform: translateX(-45px) translateY(0) scale(1);
            opacity: 1;
        }

        66% {
            transform: translateX(-45px) translateY(0) scale(1);
            opacity: 1;
        }

        82% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }

        100% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }
    }
}

@media (max-width: 480px) {
    .handshake-section {
        padding: 50px 0 0 0;
    }

    .handshake-section h2 {
        font-size: 1.5rem;
    }

    .handshake-wrapper {
        height: 230px;
    }

    .char-left,
    .char-right {
        height: 200px;
    }

    .policy-paper {
        width: 18px;
        height: 24px;
        padding: 1px;
    }

    .policy-paper::before {
        font-size: 4px;
        margin-bottom: 0px;
        letter-spacing: 0px;
    }

    .policy-paper::after {
        box-shadow: 0 1px 0 #aab6c4, 0 3px 0 #aab6c4, 0 5px 0 #aab6c4;
    }

    .handshake-pulse {
        bottom: 95px;
        width: 30px;
        height: 30px;
    }

    @keyframes handshakeCycleLeft {
        0% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }

        22% {
            transform: translateX(32px) translateY(0) scale(1);
            opacity: 1;
        }

        28% {
            transform: translateX(32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        34% {
            transform: translateX(32px) translateY(0) scale(1);
            opacity: 1;
        }

        40% {
            transform: translateX(32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        46% {
            transform: translateX(32px) translateY(0) scale(1);
            opacity: 1;
        }

        52% {
            transform: translateX(32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        58% {
            transform: translateX(32px) translateY(0) scale(1);
            opacity: 1;
        }

        66% {
            transform: translateX(32px) translateY(0) scale(1);
            opacity: 1;
        }

        82% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }

        100% {
            transform: translateX(-120%) scale(0.95);
            opacity: 0;
        }
    }

    @keyframes handshakeCycleRight {
        0% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }

        22% {
            transform: translateX(-32px) translateY(0) scale(1);
            opacity: 1;
        }

        28% {
            transform: translateX(-32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        34% {
            transform: translateX(-32px) translateY(0) scale(1);
            opacity: 1;
        }

        40% {
            transform: translateX(-32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        46% {
            transform: translateX(-32px) translateY(0) scale(1);
            opacity: 1;
        }

        52% {
            transform: translateX(-32px) translateY(-4px) scale(1);
            opacity: 1;
        }

        58% {
            transform: translateX(-32px) translateY(0) scale(1);
            opacity: 1;
        }

        66% {
            transform: translateX(-32px) translateY(0) scale(1);
            opacity: 1;
        }

        82% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }

        100% {
            transform: translateX(120%) scale(0.95);
            opacity: 0;
        }
    }
}




/* ==========================================================================
   Contact Us Page (contact-us.html)
   Namespaced with "cu-" so it never collides with the generic .contact-*
   rules already used elsewhere in this stylesheet.
   Uses root variables only — no new colors introduced.
   ========================================================================== */

/* ---------------- Hero ---------------- */
.cu-hero {
    background: var(--bg-soft);
    padding: 160px 0 50px;
    overflow: hidden;
}

.cu-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cu-hero-text {
    max-width: 520px;
}

.cu-hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.cu-underline {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 14px 0 18px;
}

.cu-hero-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 420px;
    margin: 0;
}

.cu-hero-art {
    flex-shrink: 0;
    width: 320px;
    max-width: 100%;
}

.cu-hero-art svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Content: two-card layout ---------------- */
.cu-content {
    padding: 60px 0 90px;
    background: var(--white);
}

.cu-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 30px;
    align-items: start;
}

.cu-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
}

.cu-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* ---------------- Contact Info card ---------------- */
.cu-info-card {
    background: #fafbfe;
}

.cu-info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cu-info-item.no-border {
    border-bottom: none;
    padding-bottom: 0;
}

.cu-icon-circle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-icon-circle svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.cu-info-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.cu-info-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ---------------- Form card ---------------- */
.cu-form-card form {
    margin-top: 8px;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cu-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.cu-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cu-form-group label span {
    color: var(--primary);
}

.cu-form-group input,
.cu-form-group select,
.cu-form-group textarea {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cu-form-group input::placeholder,
.cu-form-group textarea::placeholder {
    color: #a3adbd;
}

.cu-form-group input:focus,
.cu-form-group select:focus,
.cu-form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(57, 94, 150, 0.15);
}

.cu-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cu-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e2b61' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.cu-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cu-submit-btn svg {
    width: 18px;
    height: 18px;
}

.cu-submit-btn:hover {
    background: var(--white);
    color: var(--primary);
}

/* ---------------- Map Wrap ---------------- */
.cu-map-wrap {
    margin-top: 60px;
    width: 100%;
    height: 450px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cu-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
    .cu-grid {
        grid-template-columns: 1fr;
    }

    .cu-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .cu-hero-text {
        max-width: 100%;
    }

    .cu-hero-text p {
        max-width: 100%;
        margin: 0 auto;
    }

    .cu-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .cu-hero-art {
        width: 260px;
    }
}

@media (max-width: 640px) {
    .cu-hero {
        padding: 110px 0 40px;
    }

    .cu-hero-text h1 {
        font-size: 34px;
    }

    .cu-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cu-card {
        padding: 24px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--white, #fff);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Services CRM Software Section (index.php)
   ========================================================================== */

.services-software {
    background: var(--white);
    padding: 90px 0;
}

.services-software-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.services-software-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-software-content .software-badge {
    background: var(--bg-soft);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 0.2px;
}

.services-software-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

/* 
.services-software-content h2 .accent {
    color: #0CC594;
} */

.services-software-content p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 500px;
}

.services-software-content .software-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.services-software-content .feature-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(11, 42, 99, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-software-content .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(11, 42, 99, 0.05);
    background-color: var(--bg-soft);
}

.services-software-content .feature-item i {
    color: var(--primary);
    font-size: 14px;
}

.services-software-content .btn-explore {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.services-software-content .btn-explore:hover {
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Right side artwork */
.services-software-art .art-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-software-art img {
    max-width: 100%;
    height: auto;
    display: block;
}

.services-software-art .trusted-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(11, 42, 99, 0.12);
    text-align: center;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite;
}

.services-software-art .trusted-badge h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 4px;
}

.services-software-art .trusted-badge p {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive grid */
@media (max-width: 991px) {
    .services-software-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .services-software-content {
        align-items: center;
    }

    .services-software-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-software-art .trusted-badge {
        right: 20px;
    }
}

@media (max-width: 575px) {
    .services-software-content h2 {
        font-size: 30px;
    }

    .services-software-content .software-features {
        grid-template-columns: 1fr;
    }

    .services-software-art .trusted-badge {
        position: static;
        margin-top: 20px;
        animation: none;
        display: none;
    }
}

/* Centering cards for mobile viewports below 480px */
@media (max-width: 480px) {
    .testi-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        scroll-snap-align: center !important;
    }

    .testi-track {
        padding: 45px 0 15px !important;
        gap: 0 !important;
    }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Dropdown overrides for mobile */
@media (max-width: 980px) {
    .dropdown {
        left: 0 !important;
        min-width: 100% !important;
        background: var(--white) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        transform: none !important;
        transition: none !important;
    }

    .dropdown::before,
    .dropdown a::before {
        display: none !important;
    }

    .dropdown a:hover {
        padding-left: 10px !important;
        background: transparent !important;
        color: var(--primary) !important;
    }
}