

.mission-vision-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.mv-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(111, 66, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-pulse 18s ease-in-out infinite;
}

@keyframes gradient-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.mv-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(70px);
}

.mv-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(111, 66, 193, 0.15));
    top: 10%;
    right: 5%;
    animation: float-orb-1 28s ease-in-out infinite;
}

.mv-orb.orb-2 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.25), rgba(13, 110, 253, 0.15));
    bottom: 10%;
    left: 5%;
    animation: float-orb-2 25s ease-in-out infinite;
}

@keyframes float-orb-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 35px) rotate(5deg);
    }
}

@keyframes float-orb-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(35px, -30px) rotate(-5deg);
    }
}


.mv-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.6;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.mv-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(111, 66, 193, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 24px 70px rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.25);
}

.mv-card:hover::before {
    opacity: 1;
}


.mission-card {
    border-left: 4px solid #0d6efd;
}

.vision-card {
    border-left: 4px solid #6f42c1;
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mv-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(111, 66, 193, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0d6efd;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.mv-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    border-radius: 18px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mv-card:hover .mv-icon-wrapper {
    transform: scale(1.15) rotate(-8deg);
}

.mv-card:hover .mv-icon-wrapper::after {
    opacity: 0.5;
}

.mv-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.mv-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mv-card-body {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mv-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

.mv-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(13, 110, 253, 0.06);
    border: 1px solid rgba(13, 110, 253, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 1.1rem;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(111, 66, 193, 0.15));
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .mv-card {
        padding: 2rem;
    }

    .mv-card-header {
        gap: 1rem;
    }

    .mv-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .mv-card-title {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    .mv-card {
        padding: 1.75rem;
    }

    .mv-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .mv-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .mv-card-title {
        font-size: 1.35rem;
    }

    .mv-card-text {
        font-size: 1rem;
    }


    .mv-orb {
        display: none;
    }
}

@media (max-width: 576px) {
    .mv-card {
        padding: 1.5rem;
    }

    .mv-card-header {
        margin-bottom: 1.5rem;
    }

    .mv-card-body {
        margin-bottom: 1.5rem;
    }

    .mv-card-features {
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }


}