/* About Hero */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("../images/background/hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.about-overlay {
    max-width: 800px;
    padding: 20px;
}

.about-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-overlay p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Company Story */
.company-story {
    padding: 80px 10%;
    background: #ffffff;
}

.company-story .container {
    max-width: 1000px;
    margin: auto;
}

.company-story h2 {
    font-size: 2.3rem;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-overlay p {
        font-size: 1rem;
    }

    .company-story {
        padding: 50px 25px;
    }

    .company-story h2 {
        font-size: 1.8rem;
    }

    .company-story p {
        font-size: 1rem;
    }
}
/* Mission & Vision */
.mission-vision {
    padding: 80px 10%;
    background: #f8f9fa;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h2 {
    margin-bottom: 15px;
}

/* Core Values */
.core-values {
    padding: 80px 10%;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    margin-bottom: 15px;
}
/* Why Choose Us */
.why-us {
    padding: 80px 10%;
    background: #f8f9fa;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.why-card h3 { 
    color: #222;
}
.why-card p { 
    color: #555;
}
.why-card h3 {
    margin-bottom: 15px;
}

/* Company Statistics */
.company-stats {
    background: #0d3b66;
    color: white;
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
    gap: 30px;
}

.stat-box h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
}
/* Call To Action */
.about-cta {
    background: linear-gradient(rgba(13,59,102,0.9), rgba(13,59,102,0.9)),
                url("../images/background/hero.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-cta .btn {
    display: inline-block;
    background: #f4b400;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-cta .btn:hover {
    background: #d89c00;
    transform: translateY(-2px);
}