/* --- MISSION & VISION SECTION --- */
.mission-vision {
    padding: 76px 0 120px;
    background-color: #fef8f3;
    position: relative;
    overflow: hidden;
}

.mission-vision__content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* Card Styles */
.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mv-card--vision:hover {
    border-color: #4dabf7;
}

.mv-card--mission:hover {
    border-color: #ff922b;
}

.mv-card--values:hover {
    border-color: #ff8787;
}

.mv-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-size: 32px;
    color: #fff;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.mv-card:hover .mv-card__icon {
    transform: rotate(0deg) scale(1.1);
}

.mv-card--vision .mv-card__icon {
    background: linear-gradient(135deg, #4dabf7 0%, #228be6 100%);
}

.mv-card--mission .mv-card__icon {
    background: linear-gradient(135deg, #ff922b 0%, #f76707 100%);
}

.mv-card--values .mv-card__icon {
    background: linear-gradient(135deg, #ff8787 0%, #fa5252 100%);
}

.mv-card__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-family: var(--font-secondary);
}

.mv-card__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Decor Icons */
.mv-decor {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    animation: float 5s ease-in-out infinite;
}

.mv-decor--sun {
    top: -110px;
    left: 0;
    width: 80px;
}

.mv-decor--cloud {
    bottom: -100px;
    right: 5%;
    width: 95px;
    /* opacity: 0.4; */
    animation-delay: 1s;
    z-index: 1;
}

.mv-decor--star {
    top: -55px;
    right: -20px;
    width: 40px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Header Adjustments on About Page */
.about-page .headline-01__title span {
    display: inline-block;
    position: relative;
}

@media (max-width: 991px) {
    .mv-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .mission-vision {
        padding: 60px 0;
    }

    .mv-decor {
        display: none;
    }
}