/* Customer Review Section Styling */
.sc_home-review-section {
    position: relative;
    /* min-height: 1100px;
    display: grid; */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 0 80px 0;
}

.sc_home-review-bg {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-area: 1 / 1;
}

.sc_home-review-overlay {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 1) 8.135%, 
        rgba(0, 0, 0, 0) 51.893%, 
        rgba(0, 0, 0, 1) 100%
    );
}

.sc_home-review-overlay-warpper {
    padding: 180px 0;
}

.sc_home-review-section .container {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
}

.sc_home-review-title {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.039;
    color: #ffba00;
    margin-bottom: 60px;
    white-space: pre-wrap;
    text-align: left;
}

/* .sc_home-review-content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Responsive Styles */
@media (max-width: 1200px) {
    .sc_home-review-bg {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sc_home-review-section {
        min-height: 800px;
        padding: 60px 0;
    }
    
    .sc_home-review-bg {
        height: 800px;
    }
    
    .sc_home-review-title {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .sc_home-review-content {
        min-height: 500px;
    }
}

@media (max-width: 467px) {
    .sc_home-review-section {
        min-height: 700px;
        padding: 40px 0;
    }
    
    .sc_home-review-bg {
        height: 700px;
    }
    
    .sc_home-review-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .sc_home-review-content {
        min-height: 400px;
    }
}
