/* ============================================================
   Overview Page Premium Styles
   ============================================================ */

:root {
    --primary-purple: #800080;
    --dark-purple: #3c003c;
    --light-bg: #fcfcfc;
}

.overview-hero {
    background: linear-gradient(rgba(128, 0, 128, 0.8), rgba(60, 0, 60, 0.9)), url('../images/Batch2.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.overview-hero h1 {
    font-size: 3.5rem;
    font-weight: 850;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -1px;
}

.overview-content-section {
    padding: 60px 0;
    background: #fff;
}

.overview-main-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    font-family: 'Outfit', sans-serif !important;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-us-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-purple);
}

.why-us-card i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    display: block;
}

.why-us-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
}

.why-us-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.motto-affiliation-section {
    padding: 60px 0;
    background: #f9f9f9;
    position: relative;
}

.motto-box {
    background: var(--primary-purple);
    color: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.2);
}

.motto-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif !important;
}

.affiliation-box {
    padding: 40px 0;
}

.affiliation-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif !important;
}

.affiliation-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 40px 0 60px;
    background: #fff;
}

.mv-card {
    height: 100%;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card {
    background: #f8f0f8;
    border: 2px solid #80008033;
}

.vision-card {
    background: #f0f0f8;
    border: 2px solid #3c003c33;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 128, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mv-card h3 {
    font-size: 2.2rem;
    font-weight: 850;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif !important;
}

.mv-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

@media (max-width: 768px) {
    .overview-hero h1 {
        font-size: 2.5rem;
    }

    .motto-box {
        padding: 30px;
    }

    .motto-box h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 30px;
    }

    .overview-hero {
        padding: 80px 0 50px;
    }

    .overview-content-section {
        padding: 60px 0;
    }
}

/* Specific fix for CTA overlap on Overview */
.overview-wrapper .final-cta-section {
    background-color: transparent;
    padding: 20px 0 60px !important;
}