/* Variables */
body.site {
    --primary: #059EFF;
    --secondary: #DEF3FF;
    --text-main: #059EFF;
    --text-dark: #1a1a1a;
    --gray-light: #f9f9f9;
}

/* Global Home Utility Classes */
.section-padding {
    padding: 60px 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: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Base Buttons */
.btn-primary {
    display: inline-block;
    background-color: #58B2E0;
    color: #fff;
    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: #29C3D4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

.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: var(--text-dark);
    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: #fff;
    border-color: var(--primary);
}


/* =========================================
   1. HERO SLIDER
   ========================================= */
/* Slider Container */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider {
    position: relative;
    height: 500px;
}

/* Individual Slides */
.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;
}

/* Image Fitting - object-position: center ensures it crops perfectly from the middle */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark Overlay to make white text readable */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* Adjust the 0.45 to make it darker or lighter */
    z-index: 1;
}

/* Centered Content Box */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Places text above the overlay and image */
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: inherit !important;
    /* text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
    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: 50px;
    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);
    /* text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
    line-height: 1.2;
}

/* Base button styling (in case it isn't defined globally yet) */
.slide-content .btn-primary {
    display: inline-block;
    background-color: #58B2E0;
    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: #29C3D4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(5, 158, 255, 0.3);
}

/* Slider Controls (Z-index updated to 3 to sit above the overlay) */
.slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.slider__nav:hover {
    background: #58B2E0;
}

.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: #58B2E0;
    transform: scale(1.1);
}

/* =========================================
   2. SERVICES SLIDER
   ========================================= */
/* /* 2. Services Slider Section */


.service-offerings-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 70px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

/* Title Styling */
.offerings-title {
    font-size: 43px;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.offerings-title strong {
    font-weight: 800;
}

.text-blue {
    color: #0b5ed7;
    /* Theme blue */
    font-weight: 800;
}

/* Grid Layout */
.offerings-grid {
    display: grid;
    /* 4 columns: 1 for the big image, 3 for the cards */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Large Left Feature Image */
.offerings-feature-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    /* Spans 2 rows downward to match the 2 rows of service cards */
    border-radius: 12px;
    overflow: hidden;
}

.offerings-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Service Cards */
.offering-card {
    background-color: #ffffff;
    border: 1px solid #eaeff5;
    /* Very light gray/blue border */
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.offering-card:hover {
    box-shadow: 0 10px 25px rgba(11, 94, 215, 0.08);
    /* Soft blue shadow */
    transform: translateY(-3px);
    border-color: #cce0ff;
}

/* Circular Icon Box */
.offering-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cce0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #0b5ed7;
    background-color: transparent;
}

.offering-icon svg {
    width: 22px;
    height: 22px;
}

/* Typography inside cards */
.offering-card-title {
    color: #0b5ed7;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.offering-card-desc {
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    /* Pushes the "Learn More" link to the bottom */
}

/* Links */
.offering-link {
    color: #0b5ed7;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.offering-link:hover {
    color: #084298;
}

/* Discover More Button Container */
.discover-more-wrapper {
    text-align: right;
    /* Aligns to bottom right like the image */
    margin-top: 15px;
    padding-right: 10px;
}

.discover-more-btn {
    background: none;
    border: none;
    color: #0b5ed7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.discover-more-btn:hover {
    color: #084298;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .offerings-grid {
        /* Change to 3 columns on tablet */
        grid-template-columns: repeat(3, 1fr);
    }

    .offerings-feature-image {
        grid-row: auto;
        grid-column: 1 / -1;
        /* Image takes full width */
        height: 300px;
    }
}

@media (max-width: 768px) {
    .offerings-title {
        font-size: 28px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        /* Stack everything on mobile */
    }

    .discover-more-wrapper {
        text-align: center;
        /* Center button on mobile */
        margin-top: 25px;
    }
}

/* =========================================
   ABOUT US SECTION
   ========================================= */

.about-us-section {
    background-color: #f2f7fc;
    /* Very light blue background */
    padding: 80px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
    overflow: hidden;
    /* Prevents absolute images from causing horizontal scroll */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Content Styling --- */
.about-subtitle {
    display: block;
    color: #0b5ed7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.about-title .text-blue {
    color: #0b5ed7;
}

.about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 35px;
}

/* Button */
.btn-primary-pill {
    display: inline-block;
    background-color: #0b5ed7;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-pill:hover {
    background-color: #084298;
    transform: translateY(-2px);
}

/* --- Image Composition Styling --- */
.about-images {
    position: relative;
    width: 100%;
    /* Creates enough height to hold the absolute positioned image */
    min-height: 450px;
}

.image-wrapper-main {
    width: 75%;
    position: relative;
    z-index: 1;
}

.img-main {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

.image-wrapper-sub {
    width: 55%;
    position: absolute;
    bottom: -20px;
    /* Pulls it down slightly over the edge */
    right: 0;
    z-index: 2;
    /* This border creates the 'cutout' effect against the main image */
    border: 10px solid #f2f7fc;
    border-radius: 20px;
    /* Slightly larger radius to account for border */
    background-color: #f2f7fc;
}

.img-sub {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-images {
        max-width: 600px;
        margin: 0 auto;
        min-height: auto;
        /* Let it scale naturally */
        padding-bottom: 10%;
        /* Room for the absolute image */
    }

    .image-wrapper-sub {
        bottom: -10%;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }

    .about-us-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 28px;
    }

    .image-wrapper-sub {
        border-width: 6px;
        /* Smaller border on mobile */
    }
}

/* =========================================
   CTA BANNER SECTION
   ========================================= */

.cta-banner-section {
    background-color: #eaf2fa;
    /* Light blue section background */
    padding: 60px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

.cta-box {
    background-color: #f8fafc;
    /* Very light gray/white inner box */
    border-radius: 12px;
    padding: 45px 30px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    /* Very subtle shadow */
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 35px 0;
    letter-spacing: -0.5px;
}

.cta-title .text-blue {
    color: #0b5ed7;
    /* Theme blue */
}

/* Button Container */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

/* Outline Button */
.btn-outline-blue {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid #0b5ed7;
    color: #0b5ed7;
    background-color: transparent;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background-color: #0b5ed7;
    color: #ffffff;
}

/* Solid Button */
.btn-solid-blue {
    display: inline-block;
    padding: 13px 28px;
    /* Slightly adjusted padding to match outline button height */
    border: 1.5px solid #0b5ed7;
    background-color: #0b5ed7;
    color: #ffffff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-solid-blue:hover {
    background-color: #084298;
    border-color: #084298;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 35px 20px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Buttons go full width on mobile for better touch targets */
    .btn-outline-blue,
    .btn-solid-blue {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.why-choose-us-section {
    background-color: #f2f7fc;
    /* Matches the very light blue background */
    padding: 80px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

.why-grid-layout {
    display: grid;
    /* Image takes 45% width, content takes 55% */
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

/* --- Left Image --- */
.why-image-col img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: block;
    object-fit: cover;
}

/* --- Right Content Headers --- */
.why-subtitle {
    display: block;
    color: #0b5ed7;
    /* Theme blue */
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.why-title {
    font-size: 36px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.why-title .text-blue {
    color: #0b5ed7;
}

/* --- Cards Grid --- */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature-card {
    background-color: transparent;
    border: 1px solid #d8e5f5;
    /* Subtle blue/gray border */
    border-radius: 12px;
    padding: 25px 20px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.why-feature-card:hover {
    background-color: #ffffff;
    /* Slight white pop on hover */
    border-color: #cce0ff;
}

/* Icon & Title Grouping */
.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #0b5ed7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    /* Blue icon */
    background-color: transparent;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.feature-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

/* Card Text */
.why-feature-card p {
    font-size: 13px;
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
    .why-grid-layout {
        grid-template-columns: 1fr;
        /* Stack image and content on tablets */
        gap: 40px;
    }

    .why-image-col {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-content-col {
        text-align: center;
    }

    /* Keep cards 2x2 but center align their internals */
    .feature-header {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 28px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        /* Stack cards 1 by 1 on mobile */
    }
}


/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
    background-color: #f2f7fc;
    /* Matches the very light blue theme */
    padding: 80px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

.faq-main-title {
    font-size: 36px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 50px 0;
    letter-spacing: -0.5px;
}

.faq-main-title .text-blue {
    color: #0b5ed7;
    /* Theme blue */
}

.text-center {
    text-align: center;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #d8e5f5;
    /* Faint line between items */
}

.faq-item:last-child {
    border-bottom: none;
}

/* Button & Question Text */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-text {
    display: flex;
    align-items: flex-start;
    padding-right: 20px;
}

.faq-number {
    color: #0b5ed7;
    /* Blue number */
    font-size: 16px;
    font-weight: 600;
    margin-right: 6px;
    line-height: 1.4;
}

.faq-text {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
}

/* Toggle Icon */
.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #0b5ed7;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

/* The Plus Sign */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

/* Active/Open State for Icon (White circle, blue border, minus sign) */
.faq-item.active .faq-icon {
    background-color: transparent;
    border: 1.5px solid #0b5ed7;
}

.faq-item.active .faq-icon::before {
    background-color: #0b5ed7;
    /* Turns line blue */
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: transparent;
    /* Hides vertical line to make a minus */
}

/* Answer Box */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    background-color: #ffffff;
    border: 1px solid #0b5ed7;
    /* Thin blue border */
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 25px;
    /* Spacing below the open box */
    margin-top: 5px;
}

.faq-answer-inner p {
    margin: 0;
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-main-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-text,
    .faq-number {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 26px;
    }

    .faq-question {
        padding: 18px 0;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-icon::before {
        width: 10px;
    }

    .faq-icon::after {
        height: 10px;
    }
}

/* =========================================
   TRUST BANNER SECTION
   ========================================= */

.trust-banner-section {
    background-color: #eaf2fa;
    /* Matches the light blue background */
    padding: 60px 0 40px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

.trust-card {
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    /* Very subtle drop shadow */
    max-width: 1000px;
    margin: 0 auto;
}

.trust-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.trust-text {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

.trust-text .text-blue {
    color: #0b5ed7;
    /* Theme blue */
}

.trust-logo {
    max-height: 60px;
    /* Adjust based on your logo's native aspect ratio */
    width: auto;
    display: block;
}

/* Vertical separating lines */
.trust-divider {
    width: 1px;
    height: 70px;
    background-color: #dcdcdc;
    /* Light gray line */
    margin: 0 20px;
}

/* =========================================
   CLIENT LOGOS SECTION
   ========================================= */

.client-logos-section {
    background-color: #ffffff;
    /* White background */
    padding: 20px 0 60px 0;
}

.client-logos-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centers logos horizontally */
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    gap: 40px 50px;
    /* Vertical gap 40px, Horizontal gap 50px */
}

.client-logo-img {
    max-height: 70px;
    /* Keeps all logos a uniform height */
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo-img:hover {
    transform: scale(1.05);
    /* Slight pop on hover */
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
    .trust-card {
        padding: 30px;
    }

    .trust-text {
        font-size: 18px;
    }

    .trust-logo {
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .trust-banner-section {
        padding: 40px 0 20px 0;
    }

    /* Change to vertical stack on mobile */
    .trust-card {
        flex-direction: column;
        gap: 20px;
        padding: 35px 20px;
    }

    /* Change vertical dividers to horizontal dividers */
    .trust-divider {
        width: 150px;
        height: 1px;
        margin: 10px 0;
    }

    .client-logos-flex {
        gap: 30px;
    }

    .client-logo-img {
        max-height: 50px;
    }
}


/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 80px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

/* Header Styling */
.testi-header {
    margin-bottom: 50px;
}

.testi-title {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.testi-title .text-blue {
    color: #0b5ed7;
    /* Theme blue */
}

.testi-subtitle {
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #f97316;
    /* Orange star color */
    margin-right: -2px;
}

.stars-inline {
    display: inline-flex;
    align-items: center;
}

/* Updated Grid Layout for Sliding */
.testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    -ms-overflow-style: none;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Hide scrollbar */
}

.testi-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Updated Card to work inside the slider */
.testi-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Giant Quote Mark */
.quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    color: #fcece3;
    /* Very pale peach/orange */
    line-height: 0.5;
    margin-top: 20px;
}

.card-stars {
    display: flex;
}

/* Review Text */
.testi-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444444;
    flex-grow: 1;
    /* Pushes the user info to the bottom evenly */
    margin: 0 0 20px 0;
}

/* Thin separator line */
.testi-divider {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 20px;
}

/* User Profile Styling */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #0b5ed7;
    /* Blue outline */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    /* Blue icon */
}

.user-avatar svg {
    width: 24px;
    height: 24px;
}

.user-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 3px 0;
}

.user-info span {
    font-size: 13px;
    color: #777777;
}

/* Pagination Dots */
.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e2e8f0;
    /* Inactive light gray */
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-pagination .dot.active {
    background-color: #0b5ed7;
    /* Active theme blue */
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 1024px) {
    .testi-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (min-width: 1025px) {
    .testi-card {
        /* Shows exactly 3 cards: (100% - 2 gaps) / 3 */
        flex: 0 0 calc((100% - 60px) / 3);
    }
}

@media (max-width: 768px) {
    .testi-grid {
        gap: 20px;
    }

    .testi-card {
        flex: 0 0 100%;
    }
}

/* =========================================
   4. SPLIT SECTION (Why Choose / Testimonials)
   ========================================= */
.split-testimonials-section {
    background-color: #ffffff;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Left Column */
.why-choose-column {
    padding-right: 20px;
    margin-left: 123px;
}

/* Right Column (Vertical Slider showing 3 slides at once) */
.testimonials-column {
    padding-left: 20px;
    /* border-left: 2px solid var(--primary); */
    position: relative;
    padding-bottom: 10px;
}

/* .testimonials-column::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
} */

.testimonial-container-right {
    padding: 10px 0;
}

/* Height calculated to fit 3 slides (140px each) perfectly */
.vertical-slider-window {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

/* Fixed slide height to exactly 140px */
.testimonial-slide-split {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px 20px 15px 0px;
    position: relative;
}

/* .testimonial-slide-split::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 60px;
    color: var(--secondary);
    line-height: 1;
    font-family: Georgia, serif;
} */

.test-content .review-text {
    font-size: 15px;
    font-style: italic;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.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 (Professional Deep Blue BG)
   ========================================= */
.stats-banner-section {
    /* Modern, sleek deep blue gradient */
    /* background: linear-gradient(135deg, #022036 0%, var(--primary) 100%); */
    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;
}

/* Invert colors for dark background */
.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;
}

/* Reverse button colors for contrast */
.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-bottom: 15px;
}

.posts-header .section-title {
    margin-bottom: 0;
}

.posts-slider-window {
    overflow: hidden;
    margin: 0 -15px;
    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);
}


/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .slider {
        height: 350px;
    }

    .service-card-wrapper {
        flex: 0 0 calc(100% / 3);
    }

    /* --- ABOUT US RESPONSIVE FIX --- */
    .about-image-wrapper {
        display: none;
    }

    /* Hides image on tablet/mobile */
    .about-flex {
        padding: 30px;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Stacks feature boxes 1 by 1 */

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-column {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--primary);
        padding-top: 30px;
    }

    .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);
    }
}

@media (max-width: 767px) {
    .slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 25px;
        margin-bottom: 55px;
    }

    .slide-content h1 {
        font-size: 25px;
        margin-bottom: 55px;
    }

    .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;
        color: #000;
    }

    .section-title span {
        color: #000000 !important;
    }
}

.section-title span {
    color: #29C3D4;
}

.section-facts {
    background-color: #D2EEFF;
    padding: 30px 20px;
    color: #000000;
    margin-top: 35px;
}

.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;
}

.facts-text-side1 {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.facts-icons-side {
    display: flex;
    gap: 40px;
}

.fact-hex-item {
    text-align: center;
    width: 130px;
}

/* Creating the Hexagon Border */
.hex-icon {
    width: 90px;
    height: 100px;
    margin: 0 auto 15px;
    background-color: transparent;
    border: 2px solid #ffffff;
    /* The white border from your image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    /* This creates the hexagon shape */
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
}

.hex-title {
    color: #07669C;
    /* Matches the bright blue titles in your image */
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.hex-subtitle {
    font-size: 0.9rem;
    color: #000000;
    opacity: 0.9;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 992px) {
    .facts-text-side {
        text-align: center;
        width: 100%;
    }

    .facts-flex-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .facts-icons-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .facts-icons-side {
        flex-direction: column;
        /* Stacks icons on mobile phones */
        align-items: center;
    }

    .facts-text-side {
        font-size: 1.3rem;
    }
}

/* =========================================
   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: #DBF6FF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.test-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.test-quote-icon {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.2;
}

.test-stars {
    color: #FFC107;
    font-size: 14px;
}

.test-text {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f8f8f8;
    padding-top: 20px;
    margin-top: auto;
}

.test-author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.test-author-info h4 {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-author-info span {
    font-size: 13px;
    color: #888;
    display: block;
}

/* Responsive for Testimonials Grid */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .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;
    }
}

@media (max-width: 767px) {
    .service-page-hero {
        height: 250px;
    }

    .service-page-hero .hero-title {
        font-size: 36px;
    }

    .sp-card-wrapper {
        flex: 0 0 100%;
    }

    /* Modify Slider controls to stack gracefully on mobile */
    .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;
    }
}

/* Testimonials Slider (Grid Replacement) */
.testimonials-slider-window {
    overflow: hidden;
    margin: 0 -15px;
    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: #206C86;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-card-wrapper {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .testimonial-card-wrapper {
        flex: 0 0 100%;
    }
}

/* Container Layout */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Card Styling - No Outer Border */
.sp-clean-card {
    display: block;
    text-decoration: none;
    border: 4px solid #29C3D4;
    /* Thick outer cyan border */
    padding: 8px;
    /* White gap between borders */
    background: #ffffff;
    aspect-ratio: 1 / 1;
    /* Keeps cards perfectly square */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-clean-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    /* border: 2px solid #29C3D4; */
    /* Inner cyan border */
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Internal Yellow Stroke (Optional, remove if you want it completely plain) */
/* .card-image-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #FFD700;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.8;
} */

/* Content Overlay */
.card-content-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* The Brooklyn Carpet Cleaning tag */
.card-branding {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 15px !important;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 20px;
    /* Pill shape */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-service-title {
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    text-transform: uppercase;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.expand-toggle-btn {
    background: transparent;
    border: none;
    color: #58B2E0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.expand-toggle-btn:hover {
    color: #29C3D4;
}

.btn-icon {
    display: inline-block;
    transition: transform 0.4s ease;
    background: #F0F7FC;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}

/* State when the grid is open */
.expand-toggle-btn.is-active .btn-icon {
    transform: rotate(180deg);
}

.view-all-text-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-icon {
    transition: transform 0.2s;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.well.well2 {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 576px) {
    .services-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Container Background & Spacing */
.well.well2 {
    background: linear-gradient(#2AB0DD, #2BA4CD);
    /* Light gray background from image */
    padding: 20px 0;
    font-family: 'Open Sans', Arial, sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

/* Heading Styling */
.txt-pr {
    color: #ffffff;
    /* Bright Cyan color */
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Paragraph Text Styling */
.well2 p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    /* Matches the clean block look in the image */
}

/* Arrow Link Styling */
.btn-link.fa-angle-right {
    display: inline-block;
    color: #33ccff;
    font-size: 30px;
    text-decoration: none;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-link.fa-angle-right:hover {
    transform: translateX(5px);
    color: #0099cc;
}

/* Responsive adjustment for the heading */
@media (max-width: 768px) {
    .txt-pr {
        font-size: 25px;
    }
}

.hero-section {
    /* Replace 'your-map-image.png' with your actual image path */
    background: #00334e url('/img/parallax1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
}

/* Big Bold Top Text */
.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Thin "Long Island Carpet" Text */
.hero-subtitle {
    font-size: 72px;
    font-weight: 300;
    /* Thin font weight */
    margin-top: -10px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Small Middle Text */
.hero-details {
    font-size: 14px;
    max-width: 800px;
    margin: 30px auto 20px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Bottom Contact Text */
.hero-contact {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-contact span {
    margin-left: 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .hero-details {
        font-size: 12px;
        padding: 0 20px;
    }
}

.services-grid {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

/* 1. Circular Image Container */
.image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    /* Makes it a circle */
    overflow: hidden;
    /* Clips the zoom effect */
    border: 1px solid #ddd;
}

/* 2. The Zoom Animation */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover img {
    transform: scale(1.15);
    /* The zoom-in effect */
}

/* 3. Typography (Matching the Design) */
.service-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* 4. The Blue "Read More" Button */
.read-more-btn {
    display: inline-block;
    background-color: #33ccff;
    /* Bright Cyan from design */
    color: #fff !important;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #00334e;
    /* Changes to dark blue on hover */
    text-decoration: none;
}

/* =========================================
   PATTERN CTA BANNER SECTION
   ========================================= */
.pattern-cta-section {
    position: relative;
    background-color: #29b9cd;
    /* The solid cyan base color */
    padding: 90px 0;
    font-family: 'Inter', Arial, sans-serif;
    z-index: 1;
    /* Establishes a stacking context */
}

/* The pseudo-element holds the pattern. 
  This lets us change the opacity without fading the text!
*/
.pattern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Go up one level from /css/ to the root, then into /img/ */
    background-image: url('../img/patttern-corporate.png');
    background-repeat: repeat;
    background-position: center;
    opacity: 1.08;
    z-index: -1;
}

.pattern-cta-content {
    max-width: 850px;
    margin: 0;
    text-align: left;
}

.pattern-cta-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.pattern-cta-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Black Button Styling */
.btn-black {
    display: inline-block;
    background-color: #58B2E0;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-black:hover {

    background-color: transparent;
    color: #111111;
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 991px) {
    .pattern-cta-section {
        padding: 70px 0;
    }

    .pattern-cta-content {
        padding-left: 20px;
        padding-right: 20px;

    }

    .about-text {
        padding-left: 20px !important;
        padding-right: 20px !important;

    }

    .about-flex {
        padding-left: 20PX !important;
        padding-right: 20PX !important;

    }

    .pattern-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .pattern-cta-section {
        padding: 50px 0;
    }

    .pattern-cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .pattern-cta-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .about-text {
        padding-left: 20px !important;
        padding-right: 20px !important;

    }
}

@media (max-width: 480px) {
    .pattern-cta-section {
        padding: 40px 0;
    }

    .pattern-cta-title {
        font-size: 24px;
    }

    .pattern-cta-text {
        font-size: 15px;
    }

    .btn-black {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Marquee Section */
.marquee-section {
    background-color: #0b5ed7;
    padding: 28px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-viewport {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 50px;
    color: #ffffff;
    white-space: nowrap;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    ;
}

.marquee-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}