* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}






.breadcrumb-section {
    background-image: url('../images/about/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    padding-top: 8rem;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease-out;
    z-index: 0;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00000087, #ff313167);
    z-index: 1;
}

.breadcrumb-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 1rem 2rem;
    border-radius: 2em;
    margin: 0;
    background: linear-gradient(to right, #000000, #ff3131);
    font-size: 1rem;
    justify-content: center;

}

.breadcrumb-list li {
    color: white;
}

.breadcrumb-list li a {
    color: white;
}



















.testimonial-section {
    padding: 40px;
}

.reviews-wrapper {
    padding: 0px;
}


/* ---------- SCROLL WRAPPER (container with fade mask) ---------- */
.scroll-wrapper {
    height: 95vh;
    overflow: hidden;
    position: relative;
    padding: 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, rgb(255, 0, 0) 15%, rgb(255, 0, 0) 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, rgb(255, 0, 0) 15%, rgb(255, 0, 0) 85%, transparent);
}



.review-row {
    display: flex;
    align-items: center;
}




/* ---------- SCROLL TRACK (moves vertically with animation) ---------- */

.review-intro-container img {
    width: 200px;
}

.review-intro {
    padding: 20px 10px;
}

.review-intro h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    padding-bottom: 20px;
    background: linear-gradient(to right, #000000, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.review-intro p {
    font-size: 20px;
    font-weight: 400;
    color: black;
    margin-bottom: 5px;
}

/* CTA */
.service-cta {
    padding: 40px;
    border-radius: 10px;
    background: linear-gradient(to right, #F5F6F7, #ce2828);
}

.service-cta p {
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 20px;
}

.btn-quote a {
    color: white;
}










/* ---------- SCROLL TRACK (moves vertically with animation) ---------- */
.scroll-track {
    display: flex;
    flex-direction: column;
    animation: scrollInfinite 30s linear infinite;
}



/* Pause animation on hover */
.scroll-wrapper:hover .scroll-track {
    animation-play-state: paused;
}

/* ---------- INNER CONTENT SETS ---------- */
.scroll-inner {
    display: flex;
    flex-direction: column;
}

/* ---------- REVIEW CARDS ---------- */
.review-card {
    background: #F5F6F7;
    padding: 22px;
    border-radius: 18px;
    transition: transform .3s ease;
    color: #000;
    /* Card text black for visibility */
}

.review-card:hover {
    transform: scale(1.02);
}


.review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
}

.profile span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8E79D1;
    color: white;
    border-radius: 50%;
}

.profile h6 {
    margin-left: 10px;
}

.google img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.stars i {
    color: gold;
    font-size: 18px;
}

.review {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 5px;
}


/* ---------- INFINITE SCROLL ANIMATION ---------- */

@keyframes scrollInfinite {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}