
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');
/* 
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*/      
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --b1: #f0f8ff;
    --b2: #bde0fe;
    --b3: #5aabf5;
    --b4: #1a7cd4;
    --white: #ffffff;
    --text-dark: #0d2a45;
    --text-mid: #2c5f8a;
    --text-light: #5a8ab0;
    --max-w: 1100px;
    --error-red: #e74c3c;
    --error-soft: #fef0ef;
    --success-green: #27ae60;
    --success-soft: #eafaf1;
    --success-dark: #1e8449;


    /*bottstrap sans fonts + inter*/
    /*
    --font-heading: var(--bs-font-sans-serif);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Inter', sans-serif;
    */

    /*Fraunces + Inter (elegant editorial upgrade)*/
    --font-heading: 'Fraunces', serif;    
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-nav-links: 'Inter', system-ui, -apple-system, sans-serif;

    /*
    --font-heading: var(--bs-font-sans-serif);
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-primary: 'Inter', sans-serif;
    */
}

body {
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    font-weight: 700;
}

body, p, .nav-link, .btn, .section-text {
    font-family: var(--font-body); 
}

.container {
  /* max-width: var(--max-w); */
  margin: 0 auto;
  padding: 0 32px;
}

img {
    display: block;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}






/* section utilities */
.section-wrap {
    padding: 64px 0;
}

.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--b1);
}

.bg-blue {
    background: var(--b4);
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--b3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-sub-title {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 26px;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.section-text {
    font-size: 15px;
    color: var(--text-light);
    /* max-width: 560px; */
    line-height: 1.7;
}

.bg-blue .section-eyebrow {
    color: var(--b2);
}

.bg-blue .section-title {
    color: var(--white);
}

.bg-blue .section-text {
    color: rgba(255, 255, 255, .75);
}

.btn-primary {
    background: var(--b3);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;

    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px -8px rgba(26, 124, 212, 0.25);
}

.btn-primary:hover {
    background: var(--b4);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: var(--white);
    color: var(--b4);
    border: 1.5px solid var(--b2);
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;

    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px -8px rgba(26, 124, 212, 0.25);
}

.btn-secondary:hover {
    color: #fff;
    background-color: #86b7fe;
    border-color: #86b7fe;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s ease;
}

/* section-eyebrow-label */
.section-eyebrow-label .hero-eyebrow-line {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 14px;
    margin-bottom: 24px;
}

.section-eyebrow-label .eyebrow-line-bar {
    width: 24px;
    height: 2px;
    background: var(--b3);
    display: inline-block;
}

.section-eyebrow-label .eyebrow-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--b3);
    letter-spacing: .1em;
    text-transform: uppercase;
    /*margin-bottom: 10px;*/
}

.section-eyebrow-label.error .eyebrow-label{
    color: var(--error-red);
}
.section-eyebrow-label.error .eyebrow-line-bar{
    background: var(--error-red);
}


/* ----- Glass Sweep button ----------------------------- */
/* ----- CSS button with some elegant glass effects ----- */
.glass-sweep-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px 7px 10px;
    background: var(--b1);
    border: 1px solid var(--b2);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    color: var(--b4);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
    box-shadow: 0 2px 8px rgba(26, 124, 212, 0.04);
    letter-spacing: 0.3px;
    /*margin-top: 2px;*/
    position: relative;
    overflow: hidden;
    cursor: pointer;

    align-self: flex-end;  /* change from flex-start to flex-end */
    /* 
    OR use margin-left: auto 
    margin-left: auto;
    */
}

/* gradient overlay on hover */
.glass-sweep-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--b4), var(--b3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.glass-sweep-btn:hover {
    color: var(--white) !important;
    border-color: var(--b3);
    /*transform: translateX(6px) scale(1.02);*/
    box-shadow: 0 12px 24px -10px rgba(26, 124, 212, 0.3);
}

.glass-sweep-btn:hover::before {
    opacity: 1;
}

.glass-sweep-btn span,
.glass-sweep-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.glass-sweep-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
}

.glass-sweep-btn:hover svg {
    transform: translateX(4px) rotate(-4deg);
}

/* subtle shimmer effect */
.glass-sweep-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.glass-sweep-btn:hover::after {
    opacity: 1;
    left: 120%;
}












/* ========== SLICK CAROUSEL OVERRIDES ========== */
/* Hide default slick arrows — we use custom .slider-arrow buttons */

.slick-prev,
.slick-next {
    display: none !important;
}

/* Dots */

.slick-dots {
    bottom: -36px;
}

.slick-dots li button:before {
    color: var(--b3);
    font-size: 10px;
    opacity: .4;
}

.slick-dots li.slick-active button:before {
    color: var(--b4);
    opacity: 1;
}

/**/
.slider-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--b2);
    background: var(--white);
    color: var(--b4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s;
}

.slider-arrow:hover {
    background: var(--b4);
    color: var(--white);
    border-color: var(--b4);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}









/* Define all animation keyframes */
@keyframes anim-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anim-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes anim-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes anim-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes anim-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes anim-clipLeft {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes anim-flipUp {
    from {
        opacity: 0;
        transform: perspective(600px) rotateX(30deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: perspective(600px) rotateX(0deg) translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Classes applied by JS to trigger animations */
[data-anim].do-anim {
    opacity: 1 !important;
    visibility: visible !important;
}

[data-anim="fadeInUp"].do-anim {
    animation: anim-fadeInUp 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

[data-anim="fadeInDown"].do-anim {
    animation: anim-fadeInDown 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

[data-anim="fadeInLeft"].do-anim {
    animation: anim-fadeInLeft 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

[data-anim="fadeInRight"].do-anim {
    animation: anim-fadeInRight 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

[data-anim="zoomIn"].do-anim {
    animation: anim-zoomIn 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

[data-anim="clipLeft"].do-anim {
    animation: anim-clipLeft 0.8s ease both;
}

[data-anim="flipUp"].do-anim {
    animation: anim-flipUp 0.75s cubic-bezier(.22, .68, 0, 1.2) both;
}

/* Stagger delays */
[data-delay="1"].do-anim {
    animation-delay: 0.1s;
}

[data-delay="2"].do-anim {
    animation-delay: 0.3s;
}

[data-delay="3"].do-anim {
    animation-delay: 0.5s;
}

[data-delay="4"].do-anim {
    animation-delay: 0.7s;
}

[data-delay="5"].do-anim {
    animation-delay: 0.9s;
}



















/* ========== NAV ========== */
.nav {
    background: var(--white);
    /* border-bottom: 1.5px solid var(--b2); */
    border-bottom: 4px solid var(--b3);
    min-height: 64px;
    padding: 0 48px;
    position: sticky;
    top: 0;
    z-index: 1000; /* Increased z-index to stay above content */
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(189, 224, 254, 0.45);
    box-shadow: 0 4px 24px rgba(26, 124, 212, 0.08);
    background: rgba(189, 224, 254, 0.4);
    border-bottom: 4px solid var(--white);
}


.nav-logo {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 22px;
    color: var(--b4);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links .nav-link {
/*.nav-links .nav-link {*/
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 0;
    transition: color 0.2s ease;


    font-size: 16px;
    font-family: var(--font-nav-links);
    font-weight: 800;
    /*color: var(--b4);*/
    color: var(--text-dark);
}

.navbar.nav--scrolled .nav-links .nav-link {
    /*font-weight: 700;
    color: var(--text-dark);*/
}

.nav-links .nav-link:hover,
.nav-links .nav-link:focus,
.nav-links .nav-link.active {
    color: var(--b4);
    /*color: red;*/
}

.nav-btn {
    background: var(--b3);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: var(--b4);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bootstrap Navbar Adjustments */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 124, 212, 1%29' stroke-linecap='round' stroke-miterlimit='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover, 
.navbar-nav .dropdown-item:focus {
    background-color: var(--b1);
    color: var(--b4);
    padding-left: 24px;
}

.navbar-nav .dropdown-divider {
    border-top-color: var(--b2);
    opacity: 0.5;
}


/* Hover Dropdown */
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu { 
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        border: none;
        border-radius: 3px;
        box-shadow: 0 10px 30px rgba(13, 42, 69, 0.1);
        border-top: 3px solid var(--b4);
        padding: 10px 0;
    }
    .navbar .nav-item:hover .nav-link { 
        /*color: var(--b4); */
    }
    .navbar .dropdown-menu-end { 
        right: 0; 
        left: auto; 
    }
    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

@media (max-width: 991.98px) {
    .nav {
        padding: 10px 20px;
    }
    .nav-links {
        gap: 15px;
        padding: 20px 0;
        text-align: center;
    }
    .nav-links .nav-link {
        padding: 10px 0;
    }
    .navbar-btn {
        justify-content: center;
        padding-bottom: 20px;
    }
    .dropdown-menu {
        border: none;
        background: var(--b1);
        text-align: center;
    }
}












/* ========== FOOTER ========== */
.footer-wrap {
    /*background:var(--b1);*/
    background: var(--b4);
    border-top: 1.5px solid var(--b2);
    padding: 56px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    /*border-bottom:1.5px solid var(--b2);*/
}

.footer-logo {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    /*color:var(--text-light);*/
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.fsocial-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /*background:var(--b2);*/
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fsocial-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--b4);
    stroke-width: 2;
    fill: none;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    /*color:var(--text-dark);*/
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: .02em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0px;
}

.footer-col ul li a {
    font-size: 14px;
    /*color:var(--text-light);*/
    color: var(--white);
    text-decoration: none;
}

.footer-col ul li a:hover {
    /*color:var(--b4);*/
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    font-size: 12px;
    font-weight: bold;
    /*color:var(--text-light);*/
    color: var(--white);
    /*border-top: 1.5px solid var(--b2);*/
    border-top: 2px dashed var(--b2);
}

@media (max-width: 880px) {
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
}

@media (max-width:600px) {
    .footer-top{
        grid-template-columns: 1fr;
    }
}









/*======= HERO BANNER =========*/

.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg,
            #e8f4fd,
            #ffffff,
            #d0eaff,
            #ffffff,
            #bde0fe,
            #eaf5ff,
            #ffffff,
            #cce8ff);
    background-size: 400% 400%;
    animation: hero-gradient-shift 14s ease infinite;
    padding: 44px 0 36px;
    min-height: calc(100vh - 75px - 110px);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-banner .container {
    width: 100%;
}

.hero-banner .hero-grid-left-img {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: center;
}   

.hero-banner .hero-grid-right-img {
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    gap: 30px;
    align-items: center;
}

/* ===== SLIDE CENTERED ===== */
.hero-banner .slide-centered {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 20px 0 0;
}

.hero-banner .hero-title {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.hero-banner .hero-title .highlight {
    color: var(--b4);
}

.hero-banner .hero-title .error-text {
    background: linear-gradient(135deg, var(--b4) 0%, var(--error-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner .hero-subtitle {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 28px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-banner .hero-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.hero-banner .hero-desc strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-banner .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}



.hero-banner .hero-banner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.hero-banner .hero-btn {
    background: var(--white);
    border: 1px solid var(--b2);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-banner .hero-btn:hover {
    background: var(--b4);
    border-color: var(--b4);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(26, 124, 212, 0.25);
}

.hero-banner .hero-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* ===== checklist for slider banner ===== */
.hero-banner .slide-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-banner .slide-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}

.hero-banner .slide-checklist li svg {
    width: 18px;
    height: 18px;
    stroke: var(--b4);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}




/* ===== HERO SLIDER ANIMATION SYSTEM ===== */

/* All animated content starts hidden */
.hero-banner .slide-content [data-anim] {
    opacity: 0;
    visibility: hidden;
}

.hero-banner .slide-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 32px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero-banner .slide-centered .hero-eyebrow-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-banner .slide-centered .eyebrow-line-bar {
    width: 48px;
    height: 2px;
    background: var(--b3);
    display: inline-block;
}

.hero-banner .slide-centered .eyebrow-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--b4);
}

.hero-banner .slide-centered .hero-title {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-banner .slide-centered .hero-title-xl {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-banner .slide-centered .hero-title-xl span {
    color: var(--b4);
}

.hero-banner .slide-centered .hero-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    /* max-width: 520px; */
    margin-bottom: 32px;
    max-width: unset;
}

.hero-banner .slide-centered .hero-actions {
    justify-content: center;
}

.hero-banner .slide-centered .stat-chips {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-banner .stat-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1.5px solid var(--b2);
    border-radius: 40px;
    padding: 10px 20px;
    box-shadow: 0 4px 16px -6px rgba(26, 124, 212, .15);
}

.hero-banner .stat-chip strong {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 22px;
    font-weight: 800;
    color: var(--b4);
}

.hero-banner .stat-chip span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}






@media (max-width: 600px) {
    .hero-banner {
        padding: 30px 0;
        min-height: auto;
    }
}


