/* ========================================= GLOBAL UTILITIES ========================================= */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════════════ HERO SLIDER ══════════════════════════════════════════════════════ */
/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: min(78vh, 620px);
    min-height: 420px;
    overflow: hidden;
}

.hs-slide::before{
    
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Slides */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hs-slide.active {
    opacity: 1;
    visibility: visible;
}

.hs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Content - centered, NO background box, sirf text-shadow */
.hs-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
}

.hs-content h1,
.hs-content h2 {
    margin: 0 0 20px;
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.55);
}

.hs-content p {
    margin: 0 auto 30px;
    max-width: 1100px;
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.8;
    color: #fff;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.65);
}

/* Pink pill button */
.hs-btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hs-btn:hover {
    background: white;
    color: #000;
    border: 2px solid var(--secondary);
    transform: translateY(-2px);
}

/* ===== Arrows - circle bg + container edges ===== */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.hs-arrow:hover {
    background: var(--primary);
    opacity: 1;
}

/* Container k edges par - screen k bahir nahi */
.hs-arrow--prev {
    left: max(15px, calc((93% - 1200px) / 2));
}

.hs-arrow--next {
    right: max(15px, calc((93% - 1200px) / 2));
}

/* Below 1200 - hidden (as requested) */
@media (max-width: 1199.98px) {
    .hs-arrow {
        display: none;
    }
}
/* Dash indicators */
.hs-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.hs-indicator {
    width: 32px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.hs-indicator.active {
    background: #fff;
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .hero-slider {
        height: min(70vh, 540px);
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .hero-slider {
        height: 480px;
    }

    .hs-content p {
        max-width: 90%;
    }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .hero-slider {
        height: 420px;
    }

    .hs-content h1,
    .hs-content h2 {
        margin-bottom: 6px;
        font-size: 22px;
     }

    .hs-content p {
        margin-bottom: 20px;
        font-size: 12px;
        max-width: 92%;
    }

    .hs-btn {
        padding: 7px 19px;
        font-size: 7px;
    }

    .hs-indicator {
        width: 24px;
    }
}
/* ===== About Section ===== */
.about-section {
  
    padding: 70px 0;
}

/* 2 columns: text left + image right */
.about-section .container-1200 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Heading */
.about-section h2 {
    grid-column: 1;
    margin: 0 0 -31px;
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

/* Paragraph */
.about-section p {
    grid-column: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #000;
}

/* Image - secondary border + rounded, text k brabar stretch */
.about-section img {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--secondary);
    border-radius: 12px;
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .about-section {
        padding: 55px 0;
    }

    .about-section .container-1200 {
        gap: 35px;
    }

    .about-section h2 {
        font-size: 27px;
    }
}

/* ===== Responsive: 992 - stack ===== */
@media (max-width: 992px) {
    .about-section .container-1200 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section h2,
    .about-section p {
        grid-column: auto;
    }

    .about-section img {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        min-height: 240px;
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .about-section {
        padding: 45px 0;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-section p {
        font-size: 14px;
    }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .about-section h2 {
        font-size: 21px;
    }

    .about-section img {
        min-height: 200px;
    }
}




/* ========================================= SERVICES SECTION ========================================= */
/* ===== Services Section ===== */
.services-section {
    
    padding: 60px 0;
}

/* Header: centered title with bars */
.services-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Primary bars - top & bottom */
.services-bar {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

.services-bar:first-child {
    margin-bottom: 12px;
}

.services-bar:last-child {
    margin-top: 12px;
}

.section-heading {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* Grid - 3 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Cards - sirf image (borders/title DB image ka part hain) */
.service-list-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 25px;
}

/* Image wrapper - relative for overlay */
.service-media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* Hover overlay - primary tint + service name (offers jaisa) */
.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    background: color-mix(in srgb, var(--primary) 75%, transparent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-media a:hover .service-overlay {
    opacity: 1;
}
.service-media a {
    display: block;
}

.service-media img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.service-media a:hover img {
    transform: scale(1.04);
}

/* View All - amber pill */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 35px;
}

.hs-btn--yellow {
    background: var(--secondary);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hs-btn--yellow:hover {
    background: white;
    color: #000;
    border: 2px solid var(--secondary);
    transform: translateY(-2px);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .services-grid {
        gap: 20px 18px;
    }

    .section-heading {
        font-size: 24px;
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .services-section {
        padding: 45px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .services-header {
        margin-bottom: 28px;
    }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 21px;
    }

    .service-list-card {
        padding-bottom: 20px;
    }
}
/* CTA SECTION CSS */
/* ===== CTA Band - bg image + primary overlay ===== */
.cta-band {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 0;
}

/* Primary pink overlay */
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.92;              /* image halki si dikhe */
    pointer-events: none;
}

/* Content overlay k upar */
.cta-band .container-1200 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px 20px;
    align-items: center;
}

/* Title */
.cta-band h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Subtitle */
.cta-band p {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 15px;
    color: #fff;
}

/* Amber pill buttons - right side, vertically centered */
.cta-btn {
    grid-row: 1 / 3;
    background: var(--secondary);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
    border: 2px solid var(--secondary);
    transform: translateY(-2px);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .cta-band h2 {
        font-size: 24px;
    }

    .cta-btn {
        padding: 12px 22px;
        font-size: 13px;
    }
}

/* ===== Responsive: 992 - buttons neeche ===== */
@media (max-width: 992px) {
    .cta-band .container-1200 {
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }

    .cta-band h2 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .cta-band p {
        grid-column: 1 / -1;
        grid-row: auto;
        margin-bottom: 10px;
    }

    .cta-btn {
        grid-row: auto;
        text-align: center;
    }
}

/* ===== Responsive: 520 - full stack ===== */
@media (max-width: 520px) {
    .cta-band {
        padding: 35px 0;
    }

    .cta-band .container-1200 {
        grid-template-columns: 1fr;
    }

    .cta-band h2 {
        font-size: 20px;
    }

    .cta-band p {
        font-size: 13px;
    }

    .cta-btn {
        text-align: center;
        white-space: normal;
    }
}

/* wcu css */
/* ===== Why Choose Us - secondary bg ===== */
.wcu-section {
    background: var(--secondary);
    padding: 60px 0;
}

/* Heading */
.wcu-section h2 {
    margin: 0 0 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

/* Intro paragraph */
.wcu-section > p {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #000;
}

/* 3 columns x 2 rows */
.wcu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.wcu-section ul li {
    text-align: center;
}

/* Vertical dividers (har row k pehle 2 items) */
.wcu-section ul li:not(:nth-child(3n)) {
    border-right: 1px solid var(--primary);
    padding-right: 25px;
}

/* Icons - BLACK (designer feedback) */
.wcu-section ul li > span {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 34px;
    color: #000;
}

/* Item title */
.wcu-section h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Item text */
.wcu-section ul li p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #000;
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .wcu-section ul {
        gap: 40px 20px;
    }

    .wcu-section ul li:not(:nth-child(3n)) {
        padding-right: 15px;
    }
}

/* ===== Responsive: 768 - 2 columns ===== */
@media (max-width: 767.98px) {
    .wcu-section {
        padding: 45px 0;
    }

    .wcu-section h2 {
        font-size: 24px;
    }

    .wcu-section > p {
        margin-bottom: 35px;
        font-size: 14px;
    }

    .wcu-section ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

    /* Dividers 2-col layout k hisab se */
    .wcu-section ul li:not(:nth-child(3n)) {
        border-right: none;
        padding-right: 0;
    }

    .wcu-section ul li:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.25);
        padding-right: 20px;
    }
}

/* ===== Responsive: 520 - 1 column ===== */
@media (max-width: 520px) {
    .wcu-section h2 {
        font-size: 21px;
    }

    .wcu-section ul {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* No dividers on single column */
    .wcu-section ul li:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .wcu-section ul li > span {
        font-size: 28px;
    }
}
/* ========================================= OFFERS SECTION ========================================= */
/* ===== Offers Section ===== */
.offers-section {
  
    padding: 60px 0;
}

/* Centered title */
.offers-header-grid h2 {
    margin: 0 0 35px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* Slider viewport */
.offers-viewport {
    overflow: hidden;
}

.offers-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* 3 cards per view */
.offer-card {
    flex: 0 0 calc((100% - 50px) / 3);
}

.offer-card a {
    display: block;
}

/* Image wrapper - designed image ka part hai, sirf rounding */
.offer-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.offer-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover overlay - primary tint + service name (image 3 jaisa) */
.offer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: color-mix(in srgb, var(--primary) 75%, transparent);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.offer-card a:hover .offer-overlay {
    opacity: 1;
}

.offer-card a:hover img {
    transform: scale(1.05);
}

/* Dots - screenshot jaise (active = primary + secondary ring) */
.offers-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.offers-dots button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.offers-dots button.active {
    background: var(--primary);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .offers-track {
        gap: 18px;
    }

    .offer-card {
        flex: 0 0 calc((100% - 36px) / 3);
    }

    .offers-header-grid h2 {
        font-size: 24px;
    }
}

/* ===== Responsive: 768 - 2 per view ===== */
@media (max-width: 767.98px) {
    .offers-section {
        padding: 45px 0;
    }

    .offer-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }

    .offers-header-grid h2 {
        font-size: 22px;
        margin-bottom: 28px;
    }
}

/* ===== Responsive: 520 - 1 per view ===== */
@media (max-width: 520px) {
    .offer-card {
        flex: 0 0 100%;
    }

    .offers-header-grid h2 {
        font-size: 20px;
    }

    .offer-overlay {
        font-size: 16px;
    }
}

/* ===========testimonials============ */
/* ===== Testimonials Section ===== */
.testimonials-new {
    
    padding: 60px 0;
}

/* Pink rounded box */
.t2-box {
    position: relative;
    background: var(--primary);
    border-radius: 12px;
    padding: 50px 90px 45px;
    text-align: center;
}

/* Title */
.t2-box h2 {
    margin: 0 0 25px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Cards - one at a time with fade */
.t2-card {
    display: none;
}

.t2-card.active {
    display: block;
    animation: t2Fade 0.5s ease;
}

@keyframes t2Fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Quote text - italic white */
.t2-text {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.9;
    color: #fff;
}

/* Stars - secondary */
.t2-stars span {
    color: var(--secondary);
    font-size: 22px;
    margin: 0 6px;
}

/* Name + city */
.t2-name {
    margin: 30px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.t2-name small {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Arrows - left outline / right filled */
.t2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.t2-arrow--prev {
    left: 20px;
    background: transparent;
    border: 1px solid var(--secondary);
}

.t2-arrow--next {
    right: 20px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
}

.t2-arrow--prev:hover {
    background: var(--secondary);
}

.t2-arrow--next:hover {
    background: #fff;
    color: var(--primary);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .t2-box {
        padding: 45px 70px 40px;
    }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 767.98px) {
    .testimonials-new {
        padding: 45px 0;
    }

    .t2-box {
        padding: 40px 55px 35px;
    }

    .t2-box h2 {
        font-size: 24px;
    }

    .t2-text {
        font-size: 14px;
    }

    .t2-arrow {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .t2-arrow--prev { left: 12px; }
    .t2-arrow--next { right: 12px; }
}

/* ===== Responsive: 520 ===== */
@media (max-width: 520px) {
    .t2-box {
        padding: 35px 45px 30px;
    }

    .t2-box h2 {
        font-size: 21px;
    }

    .t2-text {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .t2-stars span {
        font-size: 17px;
        margin: 0 3px;
    }

    .t2-name {
        font-size: 16px;
        margin-top: 22px;
    }
}


/* ========================================= BLOGS SECTION ========================================= */
/* ===== Blogs Section ===== */
.blogs-section {
   
    padding: 60px 0;
}

/* Header: centered title with primary bars */
.blogs-header {
    text-align: center;
    margin-bottom: 35px;
}

.blogs-bar {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

.blogs-bar:first-child {
    margin-bottom: 12px;
}

.blogs-bar:last-child {
    margin-top: 12px;
}

.blogs-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* Grid - 3 columns */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.blog-card {
    display: block;
}

/* Image - designed image ka part hai, sirf wrapper */
.blog-card-img {
    display: block;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.blog-card-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

/* Title body - light gray box */
.blog-card-body {
    background: rgba(0, 0, 0, 0.04);
    padding: 18px 15px 10px;
    text-align: center;
}

.blog-card-body h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.blog-card-body h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
    color: var(--primary);
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
    .blogs-grid {
        gap: 18px;
    }

    .blogs-title {
        font-size: 24px;
    }

    .blog-card-body h3 {
        font-size: 15px;
    }
}

/* ===== Responsive: 768 - 2 columns ===== */
@media (max-width: 767.98px) {
    .blogs-section {
        padding: 45px 0;
    }

    .blogs-header {
        margin-bottom: 28px;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

/* ===== Responsive: 520 - 1 column ===== */
@media (max-width: 520px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blogs-title {
        font-size: 21px;
    }
}


/* ══════════════════════════════════════════════════════ STATS / COUNTERS ══════════════════════════════════════════════════════ */
.stats-section {
    position: relative;
    background-image:
        linear-gradient(rgba(15, 15, 20, 0.55), rgba(15, 15, 20, 0.55)),
        url('../img/counter-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 56px 20px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    position: relative;
}

.stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    color: #F2C230;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number .plus {
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
}

@media (max-width: 800px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

    .stat-item:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 460px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item::before {
        display: none;
    }
}

