html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

.about-section {
    background: #f8fbff;
}

.about-section h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #052a73;
}

.about-image-wrapper img {
    width: 100%;
    object-fit: cover;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    height: 100%;
}

.feature-box i {
    font-size: 24px;
    color: #14aae8;
    margin-top: 3px;
}

.feature-box h6 {
    margin-bottom: 4px;
    font-weight: 700;
    color: #052a73;
}

.feature-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.badge {
    font-size: 14px;
    letter-spacing: 1px;
}

@media(max-width:768px) {

    .about-section h2 {
        font-size: 32px;
    }

}

/* =========================
   COMMON SECTION STYLES
========================= */

.section-tag {
    color: #14aae8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-desc {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

/* =========================
   VISION & MISSION
========================= */

.vision-section {
    background: #f8fbff;
}

.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    text-align: center;
    height: 100%;
    border: 1px solid #e8eef5;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #052a73, #14aae8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
}

.info-icon i {
    color: #fff;
    font-size: 34px;
}

.info-card h3 {
    color: #052a73;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #64748b;
    line-height: 1.8;
}

/* =========================
   WHY NEVIXA
========================= */

.why-section {
    background: #fff;
}

.why-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    border: 1px solid #e8eef5;
    transition: .4s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(20, 170, 232, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    color: #14aae8;
    font-size: 30px;
}

.why-card h5 {
    color: #052a73;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
}