/* ===============================
   ABOUT PAGE BASE STYLES
================================ */

body {
    font-family: "Lato", sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===============================
   HERO SECTION
================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(6,41,88,0.6),
        #041c3d
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: #F01E00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #cc1a00;
}

.btn-secondary {
    margin-left: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
}

/* ===============================
   INTRO SECTION
================================ */

.intro {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.section-tag {
    color: #F01E00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro h2 {
    margin-top: 15px;
    font-size: 2.8rem;
    color: #062958;
}

.intro p {
    margin-top: 20px;
    color: #666;
    line-height: 1.8;
}

/* ===============================
   MISSION & VISION
================================ */

.mission-vision-section {
    padding: 80px 0;
}

.mission-vision-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.mission-vision-title {
    font-size: 3rem;
    color: #111827;
    line-height: 1.1;
}

.mission-vision-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===============================
   STATS SECTION
================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 300;
    color: #062958;
}

.stat-label {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* ===============================
   WHY CHOOSE SECTION
================================ */

.why-section {
    padding: 80px 0;
}

.why-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.why-item-title {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 15px;
}

.why-item-desc {
    color: #555;
    line-height: 1.8;
    max-width: 500px;
}

.why-item-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===============================
   CTA BANNER
================================ */

.cta-banner {
    position: relative;
    height: 500px;
    margin-top: 80px;
}

.cta-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 71, 161, 0.8);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-banner-inner {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
}

.cta-banner-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner-text {
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-banner-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #D32F2F;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-banner-btn:hover {
    background: #b91c1c;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media (min-width: 768px) {

    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-item {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .intro h2 {
        font-size: 3.5rem;
    }

    .cta-banner-title {
        font-size: 4rem;
    }
}