/* ========================================= */
/*              ABOUT PAGE CSS               */
/* ========================================= */


/* HERO SECTION */
.about-hero {
    padding: 20px 20px;
    background: linear-gradient(135deg, #fff5e6, #ffe0d6);
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    color: #c62828;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #555;
}


/* COMMON CONTAINER */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}


/* WHO WE ARE */
.about-section h2 {
    font-size: 32px;
    color: #c62828;
    margin-bottom: 25px;
    text-align: center;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}


/* MISSION & VISION */
.mission-section {
    background: #fafafa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.25);
    text-align: center;
}

.mission-card h3 {
    color: #c62828;
    margin-bottom: 15px;
}


/* WHY SECTION */
.why-section h2 {
    text-align: center;
    font-size: 32px;
    color: #c62828;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.25);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card i {
    font-size: 30px;
    color: #e53935;
    margin-bottom: 15px;
}

.why-card h4 {
    margin-bottom: 10px;
    color: #333;
}

.why-card p {
    font-size: 14px;
    color: #666;
}


/* CTA SECTION */
.about-cta {
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: white;
    text-align: center;
    padding: 20px 20px;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: #e53935;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #f5f5f5;
}


@media (max-width: 768px) {

    .about-hero {
        padding: 50px 20px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section h2,
    .why-section h2,
    .about-cta h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 15px;
        text-align: center;
    }

    .mission-grid,
    .why-grid {
        grid-template-columns: 1fr; /* stack cards */
        gap: 20px;
    }

    .mission-card,
    .why-card {
        padding: 25px;
    }

    .why-card i {
        font-size: 26px;
    }

    .about-cta {
        padding: 50px 20px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}


@media (max-width: 1024px) {

    .about-hero h1 {
        font-size: 36px;
    }

    .about-section h2,
    .why-section h2,
    .about-cta h2 {
        font-size: 28px;
    }

    .mission-card,
    .why-card {
        padding: 30px;
    }

    .about-container {
        padding: 50px 30px;
    }
}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-section p {
        font-size: 14px;
    }

    .mission-card,
    .why-card {
        padding: 20px;
        border-radius: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }
}