/* ===============================
   ABOUT / COMPANY PAGE STYLES
================================ */

/* ===============================
   HERO SECTION
================================ */
.hero {
    background: linear-gradient(135deg, #0b4393 0%, #1565c0 100%);
    color: #ffffff;
    padding: 5rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero p,
.hero .lead {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================
   SECTION SPACING
================================ */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b4393;
    margin-bottom: 3rem;
    text-align: center;
}

.bg-light {
    background-color: #f9f9f9;
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text h2 {
    color: #0b4393;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: #555;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-text strong {
    color: #0b4393;
    font-weight: 700;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

/* ===============================
   MISSION & VISION
================================ */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-block h3 {
    color: #0b4393;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mv-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.mv-block strong {
    color: #0b4393;
    font-weight: 700;
}

/* ===============================
   VALUES GRID
================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 2.5rem;
    color: #f7941d;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #0b4393;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===============================
   CERTIFICATIONS
================================ */
.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.cert-badge {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: #0b4393;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: #f7941d;
    background: #f0f8ff;
    color: #f7941d;
}

/* ===============================
   CTA BANNER
================================ */
.cta-banner {
    background: linear-gradient(135deg, #0b4393 0%, #1565c0 100%);
    color: #ffffff;
    padding: 4.5rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   BUTTONS
================================ */
.cta-btn {
    background: #f7941d;
    color: #ffffff;
    padding: 0.9rem 2.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn:hover {
    background: #e67e0d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(247, 148, 29, 0.25);
}

/* ===============================
   RESPONSIVE - TABLET
================================ */
@media (max-width: 992px) {
    .hero {
        padding: 3.5rem 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p,
    .hero .lead {
        font-size: 1.05rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.75rem;
    }

    .value-card i {
        font-size: 2.2rem;
    }

    .certifications {
        gap: 1rem;
    }

    .cert-badge {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }

    .cta-banner {
        padding: 3.5rem 1rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }
}

/* ===============================
   RESPONSIVE - MOBILE
================================ */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .hero .lead {
        font-size: 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-section {
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mission-vision {
        gap: 1.5rem;
    }

    .mv-block h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .mv-block p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card i {
        font-size: 2rem;
    }

    .value-card h4 {
        font-size: 1.05rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    .certifications {
        gap: 0.75rem;
    }

    .cert-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .cta-banner {
        padding: 2.5rem 1rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p,
    .hero .lead {
        font-size: 0.95rem;
    }

    .section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .mission-vision {
        gap: 1rem;
    }

    .mv-block h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .mv-block p {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-card i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .value-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .certifications {
        gap: 0.5rem;
    }

    .cert-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .cta-banner {
        padding: 2rem 1rem;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .cta-banner p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}