/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(30, 136, 229, 0.7)),
                url('../images/about-bg.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 1rem;
    margin-top: 70px;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Company Overview Section */
.company-overview {
    padding: 5rem 1rem;
    background-color: var(--light-text);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.overview-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 5rem 1rem;
    background-color: var(--gray-bg);
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision, .mission {
    text-align: center;
    padding: 2rem;
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-5px);
}

.vision i, .mission i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.vision h2, .mission h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 1rem;
    text-align: center;
}

.why-choose-us h2 {
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Branches Section */
.branches {
    padding: 5rem 1rem;
    background-color: var(--gray-bg);
    text-align: center;
}

.branches h2 {
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.branch {
    padding: 2rem;
    background: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.branch:hover {
    transform: translateY(-5px);
}

.branch i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.branch h3 {
    color: var(--dark-text);
    font-size: 1.2rem;
}

/* Animations */
.vision, .mission, .feature, .branch {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.vision { animation-delay: 0.1s; }
.mission { animation-delay: 0.2s; }

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }

.branch:nth-child(1) { animation-delay: 0.1s; }
.branch:nth-child(2) { animation-delay: 0.2s; }
.branch:nth-child(3) { animation-delay: 0.3s; }
.branch:nth-child(4) { animation-delay: 0.4s; }
.branch:nth-child(5) { animation-delay: 0.5s; }
.branch:nth-child(6) { animation-delay: 0.6s; }
.branch:nth-child(7) { animation-delay: 0.7s; }
.branch:nth-child(8) { animation-delay: 0.8s; } 