/* =======================================
   ABOUT US BANNER (Premium Style)
========================================*/
#about-banner {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    background: url('../images/about-us-banner.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: 4px solid #0c2b47;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-banner .banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(8, 3, 3, 0.55); /* soft premium overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

#about-banner .banner-content {
    text-align: center;
    color: #d4af37; /* luxury gold */
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 0.9s ease;
}

#about-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.25);
}

#about-banner p {
    font-size: 1.15rem;
    font-weight: 400;
    color: #d4af37;
    /*color: #0c2b47;  deep blue accent */
    /* text-shadow: 0px 2px 4px rgba(255,255,255,0.4); */
}

/* Banner animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =======================================
   ABOUT INTRO SECTION
========================================*/
#about-intro {
    padding: 80px 20px;
    background: #ffffff;
}

#about-intro .container {
    max-width: 1050px;
    margin: auto;
    text-align: center;
}

#about-intro h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0c2b47;
    margin-bottom: 25px;
}

#about-intro p {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 22px;
    font-weight: 300;
}

/* =======================================
   MISSION & VISION BLOCK (Luxury Cards)
========================================*/
#mv-section {
    background: #f7f9fb;
    padding: 70px 20px;
}

.mv-container {
    display: flex;
    gap: 30px;
    max-width: 1050px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.mv-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    border-top: 5px solid #d4af37; /* gold accent */
    box-shadow: 0px 7px 22px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 28px rgba(0,0,0,0.12);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #0c2b47;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    font-weight: 300;
}

/* =======================================
   RESPONSIVE
========================================*/
@media (max-width: 768px) {

    #about-banner h1 {
        font-size: 2.3rem;
    }

    #about-banner p {
        font-size: 1rem;
    }

    #about-banner {
        height: 40vh;
    }

    #about-intro h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 28px 22px;
    }
}
