.about-section {
    /* padding: 90px 0; */
    /* background: #ffffff; */
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.about-header p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* Intro */
.about-intro {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    position: relative;
    animation: fadeUp 1s ease;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: rgba(13,34,74,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 34px;
    color: #0d224a;
}

/* Vision Mission */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.vm-card {
    background: #f8f9fc;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card i {
    font-size: 36px;
    color: #f4ba18;
    margin-bottom: 20px;
}

/* Why Choose */
.why-choose {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.choose-item {
    background: #fff;
    border: 2px solid #0b1f52;
    padding: 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.choose-item i {
    font-size: 24px;
    color: #0d224a;
}

.choose-item:hover {
    background: rgba(244,186,24,0.1);
    transform: translateY(-6px);
}

/* Experience */
.experience-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.exp-card {
    background: linear-gradient(145deg, #0d224a, #081733);
    color: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(13,34,74,0.3);
    transition: 0.4s;
}

.exp-card:hover {
    transform: scale(1.05);
}

.exp-card i {
    font-size: 32px;
    color: #f4ba18;
    margin-bottom: 15px;
}

.exp-card h4 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #ffff;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 32px;
    }
}
