/* CSR Page Specific Styles */

/* ===== HERO SECTION ===== */
.csr-hero-sec {
    position: relative;
    width: 100%;
}

.csr-hero-sec .hero {
    width: 100%;
    height: 500px;
    background:
        /* linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */
        url('../img/csr/CSR-Hero-banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-hero-sec .slider-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.csr-hero-sec .slider-caption {
    text-align: center;
}

.csr-hero-sec .slider-caption h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

/* ===== CSR INTRODUCTION SECTION ===== */
.csr-intro-sec {
    background-color: #faf7f2;
    color: #7A7A7A;
}

.csr-intro-sec .sec-title h1 {
    font-size: 40px;
    font-weight: bold;
    color: #231F20;
    margin-bottom: 20px;
}

.csr-intro-sec .accent-line {
    width: 80px;
    height: 4px;
    background-color: #8B7034;
    margin: 20px auto;
}

.csr-intro-sec .subtitle {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* ===== CSR COMMUNITIES SECTION ===== */
.csr-communities-sec {
    background-color: #fdf9f3;
}

.csr-content-text h2 {
    color: #231F20;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.csr-content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
    color: #7A7A7A;
}


.csr-content-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.csr-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* ===== RESPONSIVE DESIGN ===== */
@media(max-width: 768px) {
    .csr-hero-sec .hero {
        height: 400px;
    }

    .csr-hero-sec .slider-caption h1 {
        font-size: 36px;
        padding: 0 20px;
    }

    .csr-intro-sec .sec-title h1 {
        font-size: 28px;
    }

    .csr-intro-sec .subtitle {
        font-size: 15px;
    }

    .csr-content-text h2 {
        font-size: 24px;
    }

    .csr-content-text p {
        font-size: 15px;
    }
}

@media(max-width: 576px) {
    .csr-hero-sec .hero {
        height: 350px;
    }

    .csr-hero-sec .slider-caption h1 {
        font-size: 28px;
        padding: 0 15px;
    }

    .csr-intro-sec .sec-title h1 {
        font-size: 24px;
    }

    .csr-content-text h2 {
        font-size: 22px;
    }
}