/* ============================================================
   TESTIMONIAL SECTION STYLES
   BG = model (image 2), COLORS = your design (image 1)
   ============================================================ */

.testimonial-section {
    position: relative;
    width: 100%;
    min-height: 450px; /* increase height as needed */
    overflow: hidden;
    margin-top: 40px;
}

/* Background Image */
.testimonial-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;      /* FIX: expand image */
    background-position: center top !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    border-radius: 22px;
}


/* Dark overlay */
.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

/* Content above background */
.testimonial-content {
    position: relative;
    z-index: 3;
}

/* ---------- LEFT TEXT (COLORS SAME AS IMAGE 1) ---------- */

.t-small-title {
    margin-top: 77px;
    color: #389dff;                 /* blue like your old design */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 8px;
}

.t-main-title {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;                  /* white main title */
    margin-bottom: 25px;
    margin-top: 15px;
}

/* Counters (12K / 10K) */
.t-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.t-box {
    background: rgba(255,255,255,0.95);   /* white card */
    padding: 18px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.t-box h3 {
    color: #ff8b3d;     /* you can change to #389dff if you want blue numbers */
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 4px;
}

.t-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Button – same blue style as your first design */
.t-btn {
    display: inline-block;
    background: #389dff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
    border: none;
}

.t-btn:hover {
    background: #237cd4;
    box-shadow: 0 6px 18px rgba(56,157,255,0.45);
}

/* ---------- RIGHT GOOGLE CARD SLIDERS ---------- */

.google-card-slider {
    width: 100%;
}

.google-card-slider img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);  /* floating cards like model */
}

/* Swiper pagination dots */
.google-card-slider .swiper-pagination-bullet {
    background: #89bfff;
    opacity: 1;
}

.google-card-slider .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
    .t-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .t-main-title {
        font-size: 30px;
    }

    .t-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .t-small-title,
    .t-main-title {
        text-align: center;
    }

    .t-stats {
        align-items: center;
    }

    .t-btn {
        width: 100%;
        text-align: center;
    }
}


