@font-face {
    font-family: "roboto-black";
    src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "roboto-bold";
    src: url("../fonts/Roboto-Bold.ttf");
}

/* ── Page wrapper ── */
.test-row {
    margin: 40px auto;
    background: linear-gradient(160deg, #e8f4f1 0%, #d4ece6 100%);
    width: 55%;
    min-height: 100vh;
    border-radius: 20px;
    padding: 40px 0 50px;
    box-shadow: 0 8px 40px rgba(0, 121, 164, 0.10);
    overflow: hidden;
}

.test-row h2 {
    font-family: "roboto-bold";
    color: rgb(0, 121, 164);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.test-row .tagline {
    color: #2e6b62;
    font-family: "roboto-black";
    font-size: 0.97rem;
    margin-bottom: 6px;
    padding: 0 30px;
}

.test-row h3.section-label {
    font-family: "roboto-bold";
    color: #1a3d38;
    font-size: 1.25rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.test-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #f46936, #f4963680);
    border-radius: 4px;
    margin: 14px auto 20px;
}

/* ── Swiper container: left padding, NO right padding so card bleeds to edge ── */
.testimonial-swiper {
    width: 100%;
    padding-left: 30px !important;
    padding-right: 0 !important;
    overflow: visible;
    padding-bottom: 16px !important;
}

/* ── Card ── */
.test-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow:
        0 2px 8px rgba(0, 121, 164, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.test-box::before {
    content: "\201C";
    position: absolute;
    top: -14px;
    right: 14px;
    font-size: 100px;
    color: rgba(244, 105, 54, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* ── Avatar ── */
.test-img {
    flex-shrink: 0;
}

.test-img img,
.test-avatar-placeholder {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f46936;
    box-shadow: 0 2px 10px rgba(244, 105, 54, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-avatar-placeholder {
    background: linear-gradient(135deg, #0079a4 0%, #00a89d 100%);
    color: #fff;
    font-family: "roboto-bold";
    font-size: 1.4rem;
    user-select: none;
}

/* ── Text ── */
.test-desc {
    flex: 1;
    padding: 2px 0;
}

.test-desc h3 {
    color: #f46936;
    font-family: "roboto-bold";
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.test-desc p {
    color: rgb(0, 121, 164);
    font-family: "roboto-bold";
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Swiper pagination (orange dots) ── */
.swiper-pagination {
    position: relative !important;
    margin-top: 18px;
    bottom: auto !important;
}

.swiper-pagination-bullet {
    background: rgba(244, 105, 54, 0.30) !important;
    opacity: 1 !important;
    width: 8px;
    height: 8px;
    transition: all 0.25s ease;
}

.swiper-pagination-bullet-active {
    background: #f46936 !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* ── Back button ── */
.back {
    width: 84%;
    margin: 20px auto 0;
}

.Sign-up-btn {
    background: linear-gradient(135deg, #f46936 0%, #f47e50 100%);
    color: white;
    font-size: 15px;
    width: 100%;
    border-radius: 12px;
    border: none;
    font-family: "roboto-bold";
    padding: 13px 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: opacity 0.18s ease, transform 0.18s ease;
    box-shadow: 0 4px 16px rgba(244, 105, 54, 0.35);
}

.Sign-up-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media screen and (max-width: 1200px) {
    .test-row { width: 90%; }
}

@media screen and (max-width: 768px) {
    .test-row {
        width: 100%;
        margin: 10px 0;
        border-radius: 0;
        padding: 28px 0 36px;
    }
    .testimonial-swiper {
        padding-left: 18px !important;
    }
    .back { width: 92%; }
}