/* ============================
   ABOUT HERO
============================ */
.about-hero {
    background: linear-gradient(rgba(11,102,35,0.75), rgba(11,102,35,0.75)), url("../images/about1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 30px;
}

.about-hero-content {
    max-width: 900px;
    margin: auto;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 26px;
    color: #90ee90;
    font-weight: bold;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.7;
}

/* ============================
   HISTORY
============================ */
.history-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
}

.history-image {
    flex: 1;
    min-width: 300px;
}

.history-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.history-content {
    flex: 2;
    min-width: 300px;
}

.history-content h2 {
    color: #0b6623;
    font-size: 40px;
    margin-bottom: 20px;
}

.history-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* ============================
   STATS CARDS
============================ */
.about-grid {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 25px;
    width: 220px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card h3 {
    color: #0b6623;
    font-size: 32px;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 16px;
}

/* ============================
   WHY CERID
============================ */
.why-cerid {
    padding: 60px 30px;
    text-align: center;
    max-width: 1400px;
    margin: auto;
}

.why-cerid h2 {
    color: #0b6623;
    font-size: 42px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.why-card h3 {
    font-size: 50px;
    margin-bottom: 10px;
}

.why-card h4 {
    color: #0b6623;
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ============================
   VISION & MISSION
============================ */
.vision-mission {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.vm-card {
    background: white;
    width: 450px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vm-card h2 {
    color: #0b6623;
    margin-bottom: 15px;
    font-size: 30px;
}

.vm-card p {
    line-height: 1.8;
    font-size: 18px;
    color: #555;
}

/* ============================
   VALUES
============================ */
.values-section {
    padding:70px 8%;
    max-width: 1400px;
    margin: auto;
}

.values-section .card {
    width: 320px;
    min-height: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
}

.values-section .card h3 {
    font-size: 45px;
    margin-bottom: 10px;
}

.values-section .card h4 {
    color: #0b6623;
    font-size: 22px;
    margin-bottom: 15px;
}

.values-section .card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* ============================
   STRATEGY
============================ */
.strategy-section {
    padding:70px 8%;
    max-width: 1400px;
    margin: auto;
}

.strategy-section .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
}

.strategy-section .card h3 {
    font-size: 45px;
}

.strategy-section .card h4 {
    color: #0b6623;
    font-size: 22px;
    margin-bottom: 15px;
}

.strategy-section .card p {
    line-height: 1.7;
    font-size: 16px;
    color: #555;
}

/* ============================
   CTA SECTION
============================ */
.cta-section {
    background: linear-gradient(rgba(11,102,35,0.9), rgba(11,102,35,0.9)), url("../images/about2.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 900px;
    margin: auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

/* ============================
   RESPONSIVE - ABOUT
============================ */
@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .history-section {
        flex-direction: column;
        text-align: center;
    }

    .history-content h2 {
        font-size: 30px;
    }

    .vm-card {
        width: 100%;
        max-width: 450px;
    }

    .values-section .card,
    .strategy-section .card {
        width: 100%;
        max-width: 350px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}