/* ===== ABOUT PAGE ONLY ===== */

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== Banner ===== */

.about-banner {
    height: 30vh;
    min-height: 200px;
    background: url('https://images.unsplash.com/photo-1505666287802-931dc83a2e33')
    center/cover no-repeat;
    position: relative;
}

.about-banner-overlay {
    background: #0b1c39 ;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.about-banner-overlay h1 {
    font-size: 32px;
}

.about-banner-overlay p {
    font-size: 14px;
    letter-spacing: 2px;
}

/* ================= INTRO IMAGE GRID ================= */

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-images-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 15px;
}

.img-large {
    grid-row: 1 / span 2;
}

.intro-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.intro-images-grid img:hover {
    transform: scale(1.03);
}

/* ================= INTRO SECTION ================= */

.about-intro {
    padding: 80px 0;
    background: #f8f9fc;
}

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #0b2c4d;
}

.content-highlight {
    background: #ffffff;
    padding: 30px;
    border-left: 5px solid #0b2c4d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.content-highlight p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.content-highlight strong {
    color: #0b2c4d;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .intro-container {
        flex-direction: column;
    }

    .intro-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .img-large {
        grid-row: auto;
    }

    .intro-images-grid img {
        height: 250px;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .content-highlight {
        text-align: left;
    }
}

/* ===== Vision Mission ===== */

.about-vm {
    padding: 80px 0;
    background: #fff;
}

.about-vm .about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1;
    background: #f4f6fa;
    padding: 40px;
    border-radius: 8px;
}

.vm-card h3 {
    margin-bottom: 15px;
    color: #0b2c4d;
}

/* ===== Values ===== */

.about-values {
    padding: 80px 0;
    background: #f8f9fc;
    text-align: center;
}

.section-title {
    margin-bottom: 40px;
    font-size: 28px;
    color: #0b2c4d;
}

.values-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background: #fff;
    padding: 25px 35px;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== CTA ===== */

.about-cta {
    padding: 70px 0;
    background: #0b2c4d;
    color: #fff;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 20px;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .about-intro .about-container,
    .about-vm .about-container {
        flex-direction: column;
        text-align: center;
    }
}
