﻿
#scrolling-content {
    margin-bottom: 60px;
}
    
    #scrolling-content .glide {
        position: relative;
    }

    #scrolling-content .disabled-arrow {
        pointer-events: none;
        opacity: 0.4;
        cursor: default;
    }

    #scrolling-content .slide-card {
        position: relative;
        height: 800px;
        min-height: 650px;
    }

    #scrolling-content .background-img {
        width: 70%;
        position: absolute;
        height: 100%;
        right: 0;
        cursor: auto;
    }

        #scrolling-content .background-img img {
            object-fit: cover;
        }

    #scrolling-content .slide-subtitle {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .225rem;
        margin: 0;
    }

    #scrolling-content .slide-title {
        font-size: 2rem;
        font-weight:700;
        margin-top: 0;
        margin-bottom: 30px;
    }
    #scrolling-content .slide-description {
        padding-left: 20px;
    }
    #scrolling-content .slide-description p {
        font-size: 14px;
        margin: 0;
    }

    #scrolling-content .slide-text {
        position: absolute;
        width: 60%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        background: #f2f2f2;
        padding: 40px 50px 120px;
        max-width: 580px;
        min-height: 600px;
    }

    #scrolling-content .slide-divider {
        height: 0.1px;
        background-color: #282B30;
        width: 100%;
        border: none;
        opacity: 0.6;
        position: absolute;
        left: 50%;
        bottom: 100px;
        width: 80%;
        transform: translateX(-50%);
    }

    #scrolling-content .custom-arrow {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: #d7d2cb; /* Light grey background */
        border: none;
        color: #333;
        font-size: 30px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: background-color 0.3s ease;
        cursor: pointer;
        z-index: 10;
    }
        #scrolling-content .custom-arrow.disabled {
            opacity: 0.33;
            cursor: not-allowed;
            pointer-events:none;
        }
    #scrolling-content #current-slide {
        font-size: 30px;
    }

    #scrolling-content .custom-arrow:hover {
        background-color: #503216; /* Optional: Servcorp yellow or your brand color */
        color: white;
    }

    #scrolling-content .glide__arrows.arrows-adjusted {
        left: 30%;
        display: flex;
        gap: 12px;
        z-index: 2;
        align-items: center;
        position: relative;
        bottom:200px;
        max-width:300px;
    }

    #scrolling-content p {
        margin: 0;
    }

    #scrolling-content .cta-button {
        display: inline-block;
        padding: 12px 24px;
        background-color: #E0A33A;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 6px;
        transition: background-color 0.3s ease;
        margin-top: 30px;
    }

        #scrolling-content .cta-button:hover {
            background-color: #c98e2e; /* Màu nền tối hơn khi hover */
        }

@media only screen and (max-width: 767px) {
    #scrolling-content{
        padding-top:20px;
        padding-bottom:60px;
    }
    #scrolling-content .slick-slide{
        margin:0 5px;
    }
    #scrolling-content .slide-card {
        display: flex;
        flex-direction: column-reverse;
        height: fit-content;
    }

    #scrolling-content .background-img,
    #scrolling-content .slide-text {
        position: unset;
        transform: unset;
    }

    #scrolling-content .background-img {
        height: 70vh;
        width: 100%;
        margin:0;
    }


    #scrolling-content .slide-text {
        width: 100%;
        padding: 40px 15px 80px;
    }

    #scrolling-content .slide-divider {
        display: none;
    }
        #scrolling-content .glide__arrows.arrows-adjusted {
            margin-top: -170px;
            bottom: -65px;
            left: 45%;
        }
}

