



/* --- 3. Hero Layout --- */
.aboutSection .about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.aboutSection .about-text {
    flex: 1;
}

.aboutSection .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.aboutSection .about-text h1 {
    font-size: 3rem;
    margin: 15px 0;
    line-height: 1.2;
}

.aboutSection .highlight {
    color: var(--primary-color);
}

.aboutSection .about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* --- 4. Hero Image --- */
.aboutSection .about-image {
    flex: 1;
}

.aboutSection .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- 5. Stats Styling --- */
.aboutSection .stats-container {
    display: flex;
    gap: 30px;
}

.aboutSection .stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.aboutSection .stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- 6. Sector Grid Styling --- */
.aboutSection .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.aboutSection .sector-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.aboutSection .sector-card:hover {
    transform: translateY(-10px);
    background: white;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--primary-color);
}

.aboutSection .sector-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.aboutSection .sector-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- 7. Responsive Adjustments --- */
@media (max-width: 992px) {
    .aboutSection .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .aboutSection .stats-container {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .aboutSection .about-text h1 {
        font-size: 2.2rem;
    }
}