/* About Content - Mission & Vision with Enhanced Glow */
.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mv-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(0, 246, 254, 0.05);
    border: 3px solid rgba(0, 246, 254, 0.6);
    box-shadow:
        0 0 20px rgba(0, 246, 254, 0.3),
        inset 0 0 15px rgba(0, 246, 254, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: innerBoxPulse 2.5s ease-in-out infinite alternate;
}

@keyframes innerBoxPulse {
    from {
        box-shadow:
            0 0 20px rgba(0, 246, 254, 0.3),
            inset 0 0 15px rgba(0, 246, 254, 0.15);
        border-color: rgba(0, 246, 254, 0.6);
    }

    to {
        box-shadow:
            0 0 35px rgba(0, 246, 254, 0.5),
            inset 0 0 25px rgba(0, 246, 254, 0.25);
        border-color: rgba(0, 246, 254, 1);
    }
}

.mv-item:hover {
    background: rgba(0, 246, 254, 0.1);
    transform: translateX(8px);
}

.mv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00f6fe, transparent);
    box-shadow: 0 0 15px #00f6fe;
}

.mv-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(0, 246, 254, 0.15);
    border: 2px solid #00f6fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f6fe;
    font-size: 1.1rem;
    box-shadow:
        0 0 15px rgba(0, 246, 254, 0.5),
        0 0 30px rgba(0, 246, 254, 0.3);
    text-shadow: 0 0 8px #00f6fe;
}

.mv-content h3 {
    color: #00f6fe;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    text-shadow: 0 0 10px rgba(0, 246, 254, 0.4);
}

.mv-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}