:root {
    /* Tweak these to match screenshot exactly */
    --primary: #2890CF;
    --success: #83CD54;
    --warning: #F3A25B;
    --slate-900: #111827;
    --slate-700: #4B5563;
    --chip: #e6f7ee;
    --shadow: 0 10px 30px rgba(15, 23, 42, .10);
    --radius: 12px;

    /* Type scale (Nunito-friendly, crisp at common DPIs) */
    --h1-lg: clamp(25px, 2.8vw, 50px);
    --h1-lh: 1.05;
    --lead-size: clamp(16px, 1.4vw, 27px);
    --lead-lh: 1.6;

    /* Layout widths for pixel locking */
    --container: 1400px;
    --nav-height: 80px;
    --nav-gap: 1rem;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
    color: var(--slate-900);
    font-size: clamp(14px, 1.3vw, 27px);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

/* Bootstrap overrides for consistent font and weights */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
.nav,
.card,
.lead {
    font-family: "Nunito", inherit, inherit, inherit, inherit, inherit, inherit
}

h1 {
    font-size: 30px;
    font-weight: 800;
}

h2 {
    font-size: clamp(25px, 3vw, 50px);

}

h5 {
    font-weight: 800;
}

.fs-20 {
    font-size: 20px
}

.fw-600 {
    font-weight: 600
}

.fw-700 {
    font-weight: 700
}

.fw-800 {
    font-weight: 800
}

.fw-900 {
    font-weight: 900
}

.green-color {
    color: #27AE60;
}

.container {
    max-width: 100%;
    padding: 0 5vw;
}

.rounded-4 {
    border-radius: var(--radius) !important
}

.shadow-soft {
    box-shadow: var(--shadow)
}

.object-fit-cover {
    object-fit: cover
}

.cursor {
    cursor: pointer;
}

.btn {
    border-radius: 12px;
    padding: 10px clamp(20px, 2vw, 60px) !important;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;

    &:hover {
        text-decoration: none;
    }
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);

    &:hover {
        background-color: var(--success);
        border-color: var(--success);
    }
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary) !important;

    &:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: #fff !important;
    }
}


.text-primary {
    color: var(--primary) !important;
}

/*** Header ***/
.logo {
    width: clamp(200px, 12vw, 15vw);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-tight {
    filter: drop-shadow(0 5px 5px #0000001c);
    min-height: var(--nav-height);

    @media (max-width:1200px) {
        min-height: auto;
    }
}

.nav-tight .container {
    gap: 16px
}

.nav-gap .nav-item {
    margin: 0 calc(var(--nav-gap)/2)
}

.navbar .nav-link {
    color: var(--slate-700);
    letter-spacing: .2px;
    font-size: clamp(16px, 1.1vw, 20px);

    @media (max-width:1200px) {
        text-align: center;
    }
}

.header-btns {
    @media (max-width:1200px) {
        justify-content: center;
        margin-top: 10px;
    }
}

.navbar .nav-link.active,
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary);
    text-decoration: none;
}

/* Buttons size normalization (matching screenshot caps-height) */
.btn-md {
    --bs-btn-padding-y: .55rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-font-weight: 700
}




.hero-title {
    font-size: var(--h1-lg);
    line-height: var(--h1-lh);
    letter-spacing: .2px;
    margin-top: .1rem;
    margin-bottom: .75rem;
}

.hero-lead {
    font-size: var(--lead-size);
    line-height: var(--lead-lh);
    max-width: 56ch;
}

.app-download img {
    height: clamp(50px, 70px, 80px);
}

/* Chip/tag + CTA pixel tweaks */
.bg-chip {
    background: var(--success);
    color: #fff;
}

.chip-tight {
    padding: .5rem .75rem;
    border-radius: 999px
}

.tag-tight {
    padding: .7rem 1rem
}

.cta-tight {
    padding: .8rem 1.15rem
}

.tight-number {
    letter-spacing: .2px
}


.short-stats {
    position: relative;
    margin-top: 10px;
    background: #f9fafb;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.short-stats:before {
    position: absolute;
    left: -5vw;
    top: 0;
    background: #F9FAFB;
    width: 100%;
    height: 100%;
    content: "";
}

.short-stats .card .tight-number {
    font-size: clamp(25px, 3vw, 50px) !important;
}

.short-stats .card .text-secondary.small {
    font-size: clamp(14px, 1.6vw, 30px) !important;
}

/* Announcement slider (pixel match) */
.h-span {
    font-size: clamp(16px, 1.6vw, 27px);
}

.annc-card {
    background: #e9f3fb;
    border-radius: 24px;
    font-size: clamp(16px, 1.6vw, 27px);
}

.annc-card h3 {
    font-size: clamp(20px, 2vw, 30px);
    color: var(--slate-900);
}

.annc-card p {
    margin: 0;
}

.annc-media {
    max-width: 360px;
    margin: 18px;
}

.annc-media img {
    border-radius: 18px;
    height: calc(100% - 36px)
}

.annc-slider .carousel-item {
    transition: transform .6s ease
}

.slick-dots {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    width: auto;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #C2E0F1;
    opacity: 1;
    box-shadow: none;
    padding: 0;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots .slick-active button {
    background: var(--primary)
}

/* Program cards */
.program-card {
    color: var(--slate-900);
}

.program-card h5 {
    font-size: clamp(20px, 1.7vw, 30px);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bg-soft-green {
    background: #F2FAED
}

.bg-soft-peach {
    background: #FEF6EE
}

.bg-soft-blue {
    background: #E9F4FA
}

/* Locations list cards */
.loc-num {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    flex: 0 0 44px
}

.num-blue {
    background: var(--primary)
}

.num-green {
    background: var(--success)
}

.num-peach {
    background: var(--warning)
}

.location-tab img,
.ad-list img {
    width: clamp(15px, 1.5vw, 30px);
}

/* FAQ styles matching screenshot */
.faq-accordion .faq-toggle {
    background: #eaf5fb;
    border-radius: 16px !important;
    padding: 15px 30px;
    box-shadow: none;
    font-weight: 700;
    font-size: clamp(18px, 1.2vw, 30px);

}

.faq-accordion .faq-toggle.collapsed {
    box-shadow: none
}

.faq-accordion .accordion-item {
    border: 0
}

.faq-accordion .accordion-button::after {
    display: none
}

/* hide default chevron */

/* Right circular chevron */
.faq-caret {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    margin-left: auto;
    flex: 0 0 40px;
    position: relative;
    /* box-shadow: 0 3px 10px rgba(15, 23, 42, .08) */
}

.faq-caret:before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23000' d='M5.8 7.2 10 11.4l4.2-4.2 1.1 1.1-5.3 5.3-5.3-5.3z'/></svg>") center/20px 20px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path fill='%23000' d='M5.8 7.2 10 11.4l4.2-4.2 1.1 1.1-5.3 5.3-5.3-5.3z'/></svg>") center/20px 20px no-repeat;
    background: #0f172a
}

/* Expanded state: rotate chevron up */
.accordion-button:not(.collapsed) .faq-caret:before {
    transform: rotate(180deg)
}

/* Body text spacing inside item */
.faq-accordion .accordion-body {
    padding: 0 32px 20px 32px;
    color: #334155
}

/* Tight container width and rhythm like screenshot */
.faq-accordion .accordion-item+.accordion-item {
    margin-top: 14px
}


/* Contact card */
.contact-card {
    background: #f7f9fb;
}

.form-lg {
    padding: .9rem 1.2rem
}

.form-control {
    font-weight: 600
}

.queries-area h5 {
    font-weight: 700;
    font-size: clamp(25px, 1.2vw, 30px);
}
.form-control {
    background: #F9FAFB;
    color: var(--slate-900);
    border: 0;
    min-height: 50px;
    border-radius: var(--radius) !important;
    padding: 10px 30px;
    border: 1px solid #ececec;
    background-image: none;
}
textarea {
    height: 150px;
}
/* App CTA */
.cta-app {
    background: linear-gradient(90deg, #5fc264 0%, #1c9dd7 100%);
    box-shadow: 0 18px 40px rgba(2, 60, 110, .18)
}

.phones {
    position: absolute;
    left: 10px;
    bottom: 0;
    height: 240px;
}

.phone {
    position: absolute;
    border-radius: 28px;
    background: #1c77b5;
    border: 8px solid #2c2f35;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25) inset, 0 20px 40px rgba(0, 0, 0, .15);
}

.phone:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 12px;
    border-radius: 12px;
    background: #0e151b
}

.phone-front {
    width: 220px;
    height: 430px;
    left: 30px;
    top: -150px;
    transform: rotate(357deg);
    z-index: 2;
}

.phone-back {
    width: 200px;
    height: 440px;
    left: 175px;
    bottom: -40px;
    transform: rotate(8deg);
    background: #187bb6;
    z-index: 1;
    border-color: #25282d;
}

.apps-links img {
    max-width: 200px;
}

/* Testimonials */
.testi-card {
    background: #fbfbfd
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover
}

.stars img {
    max-width: 110px;
}
/*** FAQS Area ***/
.faqs-area  .btn-default-border:hover,
.faqs-area  .btn-default-border:focus {
    color: #fff;
    text-decoration: none;
}
.faqs-area .ewd-ufaq-faq-div {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.faqs-area .ewd-ufaq-faq-title a {
    background: #eaf5fb;
    position: relative;
    display: block;
    color: var(--bs-accordion-btn-color);
    border-radius: 16px;
    padding: 15px 30px;
    box-shadow: none;
    font-weight: 700;
    font-size: clamp(18px, 1.2vw, 30px);
}

.faqs-area div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
    display: none;
}

.faqs-area .ewd-ufaq-faq-title h4 {
    font-size: clamp(18px, 1.2vw, 30px);;
    color: var(--bs-accordion-btn-color);
    margin: 0px !important;
}

.faqs-area .ewd-ufaq-faq-title a::after {
    position: absolute;
    display: block;
    right: 20px;
    top: 8px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    content: "";
    display: block;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.faqs-area .ewd-ufaq-post-active .ewd-ufaq-faq-title a::after {
    transform: rotate(180deg)
}

.faqs-area .ewd-ufaq-faq-body {
    padding: 1rem 32px 20px 32px;
    color: #334155;
}

/* Footer */
.f-logo {
    width: clamp(200px, 15vw, 350px);
    display: inline-block;
}
.f-logo .wp-block-image {
    margin: 0;
}
.site-footer {
    background: var(--primary);
    color: #fff;
    font-size: clamp(16px, 1.2vw, 27px);
}

.site-footer h6 {

    font-weight: 600;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
    margin-top: 1rem;
}
.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #d9ecfb;
    text-decoration: none
}

.footer-links ul li a:hover {
    color: #fff
}

.apps-links {
    max-width: 200px;
}
.apps-links .wp-block-image {
    margin: 0;
}
.social {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #2a86c7;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.social .si {
    width: 18px;
    height: 18px;
    background: #fff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center
}

.si-fb {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M13 22V12h3l1-4h-4V6c0-1 .3-2 2-2h2V1h-3c-3 0-5 2-5 5v2H7v4h2v10h4z'/></svg>");
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M13 22V12h3l1-4h-4V6c0-1 .3-2 2-2h2V1h-3c-3 0-5 2-5 5v2H7v4h2v10h4z'/></svg>")
}

.si-tw {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M22 5.9c-.7.3-1.4.5-2.1.6.8-.5 1.3-1.2 1.6-2.1-.7.4-1.6.8-2.4.9C18.3 4.5 17.3 4 16.2 4c-2.1 0-3.8 1.8-3.8 3.9 0 .3 0 .6.1.9-3.2-.2-6-1.7-7.8-4.1-.3.6-.5 1.2-.5 1.9 0 1.3.7 2.4 1.7 3.1-.6 0-1.2-.2-1.7-.5 0 1.9 1.3 3.4 3 3.8-.3.1-.7.1-1 .1-.2 0-.5 0-.7-.1.5 1.6 2 2.8 3.8 2.8-1.4 1.1-3.2 1.8-5.1 1.8-.3 0-.6 0-.9-.1 1.8 1.1 3.9 1.8 6.2 1.8 7.5 0 11.6-6.3 11.6-11.8v-.5c.8-.6 1.4-1.2 1.9-2z'/></svg>");
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M22 5.9c-.7.3-1.4.5-2.1.6.8-.5 1.3-1.2 1.6-2.1-.7.4-1.6.8-2.4.9C18.3 4.5 17.3 4 16.2 4c-2.1 0-3.8 1.8-3.8 3.9 0 .3 0 .6.1.9-3.2-.2-6-1.7-7.8-4.1-.3.6-.5 1.2-.5 1.9 0 1.3.7 2.4 1.7 3.1-.6 0-1.2-.2-1.7-.5 0 1.9 1.3 3.4 3 3.8-.3.1-.7.1-1 .1-.2 0-.5 0-.7-.1.5 1.6 2 2.8 3.8 2.8-1.4 1.1-3.2 1.8-5.1 1.8-.3 0-.6 0-.9-.1 1.8 1.1 3.9 1.8 6.2 1.8 7.5 0 11.6-6.3 11.6-11.8v-.5c.8-.6 1.4-1.2 1.9-2z'/></svg>")
}

.si-in {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4zm3 16H5V10h2v9zM6 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm12 10h-2v-5c0-1.1-.9-2-2-2s-2 .9-2 2v5h-2V10h2v1.2c.6-.8 1.6-1.2 2.7-1.2 2.1 0 3.3 1.4 3.3 3.2v5.8z'/></svg>");
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M4 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4zm3 16H5V10h2v9zM6 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm12 10h-2v-5c0-1.1-.9-2-2-2s-2 .9-2 2v5h-2V10h2v1.2c.6-.8 1.6-1.2 2.7-1.2 2.1 0 3.3 1.4 3.3 3.2v5.8z'/></svg>")
}

.qr {
    width: 150px;
    height: 150px;
    object-fit: cover
}


@media (max-width:991px) {
    .logo-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

}

@media (max-width:767px) {
    .slick-dots {
        top: initial;
        right: initial;
        left: inherit;
        justify-content: center;
        width: 100%;
        bottom: -30px;
    }

    .contact-card {
        padding: 15px !important;
    }
}