.hero-section-product {
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%);
        
    position: relative;
    overflow: hidden;
}

#hero-image-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content-product-wrapper {
    padding-top: 200px;
    padding-bottom: 200px;
}


/* Footer */
.gradient-background {
    background: rgb(235, 232, 232) !important;
}

.text-courtsync-primary {
    color: #7a140d;
}

.text-cs-color {
    color: #7a140d !important;
}

.cs-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cs-hero-subtitle {
    font-size: 1.25rem;
    color: rgb(121, 119, 119);
    line-height: 1.6;
    margin-bottom: 2rem;
}


/* ghsdg */

.card-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.card-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

/* Work */
.work-step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: auto;
}

/* Expand Restaurant */
.custom-link-logo img {
    height: 60px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.custom-link-logo:hover img {
    transform: scale(1.05);
}

/* Stand */

.carousel-item {
    background: none;
    padding: 20px 0;
}

.carousel-item .row {
    display: flex;
    align-items: flex-start;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    padding: 20px;
}

.carousel-image img {
    width: 100%;
    border-radius: 0;
}

.carousel.slide {
    position: relative;
    flex-shrink: 0;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    height: var(--carousel-height);
    transition: width 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 2em;
    overflow: hidden;
    border: none !important;
}

#carousel-indicators {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#carousel-indicators li {
    width: 14px;
    height: 14px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

#carousel-indicators li.active {
    background-color: #60100b;
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .carousel-item .row {
        flex-direction: column;
        text-align: center;
    }

    .carousel-content {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .custom-link-logo img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-content-product-wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .faq-answer {
        max-width: 100%;
    }

    .custom-link-logo img {
        height: 40px;

    }
}


/* FAQ */
.faq-answer {
    display: none;
    transition: all 0.3s ease;
    max-width: 100%;
    font-size: 1rem;
}

.faq-answer.show {
    display: block;
}

.faq-question {
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.faq-question span {
    transition: transform 0.3s ease;
}

.faq-question.open span {
    transform: rotate(180deg);
}

.faq-item {
    border-bottom: 1px dashed #ccc;
    padding: 0.5rem 0;
}

/* CTA */

.freeTrail {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/block/cs/courtsynce-singup-background.webp') no-repeat center center;
    background-size: cover;
    padding: 0 30px;
}

.freeTrailBox {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 0 30px;
    color: white;
}

.review-card {
    background: white;
    color: black;
    padding: 15px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-card:hover {
    background: #f0f0f0;
}

.scrolling-box {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    animation: infiniteScroll 10s linear infinite;
}

.review-list {
    display: flex;
    flex-direction: column;
}

.review-cards {
    display: flex;
    flex-direction: column;
}

@keyframes infiniteScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.platform-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 4px;
}

.custom-stars {
    color: rgb(0, 162, 255);
    font-size: 18px;
    font-family: Arial, sans-serif;
}


@media (min-width: 768px) {
    .faq-answer {
        max-width: 700px;
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .faq-answer {
        max-width: 800px;
        font-size: 1.05rem;
    }
}