/* Variables */
body.site {
    --primary: #0D8EDA;
    --secondary: #DEF3FF;
    --text-main: #059EFF;
    --text-dark: #1a1a1a;
    --gray-light: #f9f9f9;
}

/* =========================================
   GLOBAL OVERFLOW PREVENTION
   ========================================= */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.container-1200 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Global Home Utility Classes */
.section-padding {
    padding: 15px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 24px;
}

.section-title {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Base Buttons */
.btn-primary {
    display: inline-block;
    background-color: #70CBFF;
    color: #000000;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0482d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
    color: #ffffff;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-read-more .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: #0482d6;
}

.btn-read-more:hover .arrow {
    transform: translateX(5px);
}

/* Nav Slider Buttons */
.posts-nav-buttons {
    display: flex;
    gap: 8px;
}

.post-nav-btn {
    background: #fff;
    border: 1px solid #dcdcdc;
    color: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.post-nav-btn:hover {
    background: #70CBFF;
    color: #000000;
    border-color: var(--primary);
}


/* =========================================
   1. HERO SLIDER
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
    color: #fff;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: inherit !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.slide-content h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: inherit !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.slide-content .btn-primary {
    display: inline-block;
    background-color: #0482d6;
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.slide-content .btn-primary:hover {
    background-color: #70CBFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5, 158, 255, 0.3);
}

.slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #ffffff;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slider__nav:hover {
    background: var(--primary, #059EFF);
    color: #000000;
}

.slider__prev {
    left: 18px;
}

.slider__next {
    right: 18px;
}

.slider__dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary, #059EFF);
    transform: scale(1.1);
}


/* =========================================
   2. SERVICES SLIDER
   ========================================= */
.sp-services-section {
    background-color: #ffffff;
}

.sp-header {
    margin-bottom: 30px;
    padding: 20px;
}

.sp-desc {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* FIX: removed negative margin, use overflow:hidden on window only */
.sp-slider-window {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
}

.sp-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.sp-card-wrapper {
    flex: 0 0 calc(100% / 4);
    padding: 0 10px;
    box-sizing: border-box;
}

.sp-service-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.sp-service-card {
    background: #D2EEFF;
    border: 1px solid #eef2f5;
    border-radius: 4px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.sp-service-card:hover {
    box-shadow: 0 10px 20px rgba(5, 158, 255, 0.1);
    transform: translateY(-5px);
}

.sp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sp-card-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.sp-card-number {
    font-size: 55px;
    font-weight: 800;
    color: #07669C;
    line-height: 0.8;
}

.sp-card-content h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.sp-card-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sp-read-more {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.sp-read-more .arrow {
    color: var(--primary);
    margin-right: 6px;
    font-size: 16px;
    transition: transform 0.3s;
}

.sp-service-card:hover .sp-read-more {
    color: var(--primary);
}

.sp-service-card:hover .sp-read-more .arrow {
    transform: translate(2px, 2px);
}

.sp-slider-controls {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.sp-control-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-dot {
    width: 6px;
    height: 6px;
    background: #dcdcdc;
    border-radius: 50%;
    display: block;
}

.sp-dot.active {
    background: var(--primary);
    width: 18px;
    border-radius: 10px;
}

.sp-slider-line {
    flex-grow: 1;
    height: 2px;
    background: #eeeeee;
    margin: 0 20px;
}

.sp-control-right {
    display: flex;
    gap: 8px;
}

.sp-nav-btn {
    width: 32px;
    height: 32px;
    background: #70CBFF;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.3s;
}

.sp-nav-btn:hover {
    background: #0482d6;
    color: #ffffff;
}


/* =========================================
   3. ABOUT US
   ========================================= */
.about-section {
    background: linear-gradient(135deg, #D2EEFF 0%, #B6E0FF 100%);
    color: #022036;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--secondary);
}

.about-image-wrapper {
    flex: 0.8;
}

.about-main-img {
    border-radius: 8px;
    width: 100%;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
}

.feature-box .icon {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-box .text h4 {
    margin: 0 0 8px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.feature-box .text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}


/* =========================================
   4. SPLIT SECTION — IMAGE LEFT / TEXT RIGHT
   =========================================
   KEY FIX: .why-choose-column margin-left removed (was 123px).
   The grid handles spacing. Hard-coded margin caused 3rd column overflow.
   ========================================= */
.split-testimonials-section {
    background-color: #ffffff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
}

/* Left Column — NO margin-left */
.why-choose-column {
    margin-left: 0;
    padding-right: 0;
}

.why-image-wrapper img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Right Column */
.testimonials-column {
    padding-left: 20px;
    position: relative;
    padding-bottom: 10px;
}

.testimonial-container-right {
    padding: 10px 0;
}

.vertical-slider-window {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide-split {
    height: auto;
    /* FIXED: was 140px — caused overflow on mobile */
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 20px 15px 0px;
    position: relative;
}

.test-content .review-text {
    font-size: 15px;
    font-style: italic;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-bottom: 20px;
}

.test-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.test-bottom .reviewer-name {
    font-weight: 700;
    color: #07669C;
    font-size: 13px;
    margin: 0;
}

.test-bottom .stars {
    color: #f39c12;
    font-size: 14px;
    letter-spacing: 2px;
}


/* =========================================
   5. STATS & INFO BANNER
   ========================================= */
.stats-banner-section {
    background: linear-gradient(135deg, #D2EEFF 0%, #FFFFFF 100%);
    color: #000000;
    border-top: 4px solid var(--secondary);
    border-bottom: 4px solid var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.stat-info-box .stat-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 800;
}

.stat-info-box .stat-title span {
    color: var(--secondary);
}

.stat-info-box p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stat-buttons .btn-primary {
    background-color: #70CBFF;
    color: var(--primary);
}

.stat-buttons .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.stat-numbers-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}


/* =========================================
   6. RECENT POSTS SLIDER
   ========================================= */
.recent-posts-section {
    background-color: #ffffff;
    overflow: hidden;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--secondary);
    padding: 20px;
}

.posts-header .section-title {
    margin-bottom: 0;
}

/* FIX: removed negative margin */
.posts-slider-window {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 20px;
}

.posts-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.post-card-wrapper {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.post-card {
    background: var(--gray-light);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    border-radius: 4px;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.post-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-img {
    transform: scale(1.08);
}

.post-content {
    padding: 20px;
}

.post-content h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

.post-content h4 a {
    color: var(--text-dark);
    transition: color 0.3s;
    text-decoration: none;
}

.post-card:hover .post-content h4 a {
    color: var(--primary);
}


/* =========================================
   FACTS SECTIONS
   ========================================= */
.section-facts {
    background-color: #D2EEFF;
    padding: 30px 20px;
    color: #000000;
    margin-top: 20px;
}

.facts-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.facts-text-side {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    max-width: 100%;
    word-break: break-word;
}

.facts-text-side1 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    max-width: 100%;
    word-break: break-word;
}

.facts-icons-side {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.fact-hex-item {
    text-align: center;
    width: 110px;
}

.hex-icon {
    width: 90px;
    height: 100px;
    margin: 0 auto 15px;
    background-color: transparent;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.hex-title {
    color: #07669C;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.hex-subtitle {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.9;
}


/* =========================================
   7. TESTIMONIALS GRID SECTION
   ========================================= */
.testimonials-grid-section {
    background-color: #F4F8FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card-new {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--primary);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
}

.test-stars {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 20px;
}

.test-text {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.test-author h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-author span {
    font-size: 13px;
    color: #000000;
}

/* FIX: removed negative margin */
.testimonials-slider-window {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 20px;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card-wrapper {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.t-dot {
    width: 12px;
    height: 12px;
    background-color: #dcdcdc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}


/* =========================================
   8. PARTNERS SCROLL BANNER — SMOOTH LOOP
   Fix: GPU acceleration + translateZ(0) eliminates
   the snap/jitter on loop reset.
   Blade should output 3 copies of the 6 images (18 total).
   The animation scrolls exactly 1/3 of the total width,
   so the reset is invisible.
   ========================================= */
.partners-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: transparent;
    padding: 20px 0;
    /* Prevent subpixel rendering flicker */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.partners-slider-track {
    display: flex;
    width: max-content;
    /* GPU layer — eliminates jitter */
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    animation: scroll-loop 30s linear infinite;
}

.ps-item {
    flex: 0 0 auto;
    width: 250px;
    padding: 0 15px;
    /* Prevent individual items from causing repaints */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ps-item img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: contain;
    /* Force image decode before paint */
    will-change: auto;
}

/* Scrolls exactly 1/3 of total width (6 items out of 18).
   Because items 1-6, 7-12, and 13-18 are identical,
   jumping back to 0 is visually seamless. */
@keyframes scroll-loop {
    0% {
        transform: translateX(0) translateZ(0);
    }

    100% {
        transform: translateX(calc(-250px * 6 - 30px * 6)) translateZ(0);
    }
}

.partners-slider-track:hover {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .ps-item {
        width: 180px;
    }

    .ps-item img {
        height: 110px;
    }

    @keyframes scroll-loop {
        0% {
            transform: translateX(0) translateZ(0);
        }

        100% {
            transform: translateX(calc(-180px * 6 - 30px * 6)) translateZ(0);
        }
    }
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .slider {
        height: 350px;
    }

    .service-card-wrapper {
        flex: 0 0 calc(100% / 3);
    }

    .about-image-wrapper {
        display: none;
    }

    .about-flex {
        padding: 30px;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* SPLIT LAYOUT: stack on tablet */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-column {
        margin-left: 0 !important;
        padding-right: 0;
    }

    .testimonials-column {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--primary);
        padding-top: 30px;
        padding: 20px;
    }

    .testimonials-column::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat-buttons {
        justify-content: center;
    }

    .stat-numbers-box {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px 0;
    }

    .post-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card-wrapper {
        flex: 0 0 50%;
    }

    .sp-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .sp-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .sp-info-text .section-title {
        text-align: center;
    }

    .sp-info-image-container {
        display: flex;
        justify-content: center;
    }

    .sp-contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .sp-info-col {
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .contact-title,
    .contact-detail-group {
        text-align: center;
    }
}

/* =========================================
   SPLIT SECTION MOBILE OVERFLOW FIX
   ========================================= */
@media (max-width: 1024px) {

    /* Disable the JS vertical slider and let content flow naturally */
    .vertical-slider-window {
        height: auto !important;
        overflow: visible !important;
    }

    .vertical-slider-track {
        transform: none !important;
    }

    .testimonial-slide-split {
        height: auto !important;
        overflow: visible !important;
    }

    .split-testimonials-section {
        overflow: visible;
    }

    /* Switch to block layout instead of grid — prevents ghost columns */
    .split-layout {
        display: block;
        width: 100%;
    }

    .why-choose-column {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .testimonials-column {
        width: 100%;
        box-sizing: border-box;
        padding: 20px 0 0 0;
        border-top: 2px solid var(--primary);
    }
}

@media (max-width: 767px) {
    .slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 28px;
        /* margin-bottom: 20px; */
        padding-bottom: 40px;
    }

    .slide-content h1 {
        font-size: 28px;
        /* margin-bottom: 20px; */
        padding-bottom: 40px;
    }

    .slide-content .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
        
    }

    .service-card-wrapper {
        flex: 0 0 calc(100% / 2);
    }

    .about-flex {
        padding: 20px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stat-numbers-box {
        flex-direction: column;
        gap: 30px;
    }

    .post-card-wrapper {
        flex: 0 0 100%;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-wrapper {
        flex: 0 0 100%;
    }

    .sp-card-wrapper {
        flex: 0 0 100%;
    }

    .sp-slider-controls {
        flex-direction: column;
        gap: 20px;
    }

    .sp-slider-line {
        display: none;
    }

    .sp-form .input-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sp-contact-box {
        padding: 30px 20px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .facts-text-side {
        text-align: center;
        width: 100%;
    }

    .facts-flex-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .facts-flex-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .facts-icons-side {
        gap: 16px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fact-hex-item {
        width: 90px;
    }

    .hex-icon {
        width: 70px;
        height: 80px;
        font-size: 1.7rem;
    }
}

@media (max-width: 640px) {
    .ps-item {
        width: 200px;
    }

    .ps-item img {
        height: 135px;
    }
}

@media (max-width: 480px) {
    .facts-icons-side {
        flex-direction: column;
        align-items: center;
    }

    .facts-text-side {
        font-size: 1.3rem;
    }

    .why-choose-column {
        padding-right: 0;
    }

    .sp-slider-controls {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .posts-header {
        padding: 10px;
    }
}