/* ================= Banner Section ================= */
.banner-section{
    position:relative;
    background:url("../images/img21.avif") center/cover no-repeat;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
    font-family:'Mulish', sans-serif;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75); /* opacity */
}

.banner-content{
    position:relative;
    max-width:800px;
    color:#fff;
    z-index:2;
}

.banner-logo{
    color:#cc9648;
    font-size:24px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.banner-content h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.about-section {
    padding: 80px 20px;
    line-height: 1.6;
}

.about-container {
    max-width: 1100px;
    margin: auto;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #592c1f;
}

.about-intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #7a5a4a;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.about-feature-box {
    background: #fff8ee;
     border: 2px solid #f3d4b5;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.about-feature-box p {
    color: #7a5a4a;
}

.about-feature-box:hover {
    background: #e9ecef;
    transform: translateY(-4px);
}

.about-feature-box h3 {
    margin-bottom: 10px;
    color: #592c1f;
}

.about-vision, .about-promise {
    margin-top: 40px;
    padding: 30px;
    background: #fff8ee;
    border-left: 5px solid #592c1f;
}

.about-vision h2,
.about-promise h2 {
    margin-bottom: 10px;
    color: #592c1f;
}


@media(max-width:768px){ 
    .banner-section{
    min-height:55vh;
}

.banner-content h2{
    font-size:28px;
}
}

@media(max-width:480px){
    .banner-section{
    min-height:50vh;
    padding:30px 15px;
}

.banner-logo{
    font-size:12px;
}

.banner-content h2{
    font-size:22px;
}
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets (max 992px) */
@media (max-width: 992px) {
    h1 {
        font-size: 34px;
    }

    .about-intro {
        font-size: 17px;
    }

    .about-section {
        padding: 60px 15px;
    }

    .about-vision, .about-promise {
        padding: 25px;
    }
}

/* Mobiles (max 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        text-align: center;
    }

    .about-intro {
        font-size: 16px;
        text-align: center;
    }

    p {
        font-size: 15px;
        text-align: justify;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature-box {
        padding: 20px;
    }

    .about-vision, .about-promise {
        margin-top: 30px;
        padding: 20px;
    }
}

/* Small Mobiles (max 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .about-section {
        padding: 40px 10px;
    }

    .about-feature-box h3 {
        font-size: 18px;
    }

    .about-vision h2,
    .about-promise h2 {
        font-size: 20px;
    }

}
