/* About Section - Clean White Theme */
.about {
    min-height: 70vh;
    background: #0A1628;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: #2563eb;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
}

.mission-box,
.vision-box {
    background: #ffffff;
    padding: 4rem 6rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    width: 100%;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(0, 166, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.mission-box:hover .icon-wrapper,
.vision-box:hover .icon-wrapper {
    background: rgba(0, 166, 255, 0.1);
    transform: scale(1.1);
}

.mission-box h3,
.vision-box h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-box p,
.vision-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0 auto;
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .mission-box,
    .vision-box {
        padding: 4rem;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 6rem 0;
    }

    .about .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .mission-box,
    .vision-box {
        padding: 3rem;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 5rem 0;
    }

    .about .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .mission-vision {
        gap: 2.5rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }

    .icon-wrapper i {
        font-size: 2rem;
    }

    .mission-box h3,
    .vision-box h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .mission-box p,
    .vision-box p {
        font-size: 1.1rem;
    }
}
