/* --- 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;
    }
}

/* --- TEACHER PROFILE SECTION --- */
.teacher-profile {
    padding: 100px 0;
    background-color: #fff9f5;
    position: relative;
    overflow: hidden;
}

.teacher-profile__card {
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(134, 59, 0, 0.08);
    margin-top: 60px;
}

.teacher-profile__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.teacher-profile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teacher-profile__exp-badge {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exp-badge__icon {
    width: 50px;
    height: 50px;
    background: var(--Light-Secondary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.exp-badge__content {
    display: flex;
    flex-direction: column;
}

.exp-label {
    font-size: 13px;
    font-weight: 700;
    color: #999;
}

.exp-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--Light-Primary-50);
}

.teacher-profile__content {
    padding: 60px 50px;
}

.teacher-name {
    font-size: 44px;
    font-weight: 900;
    color: var(--Light-Primary-50);
    margin-bottom: 5px;
}

.teacher-role {
    font-size: 18px;
    font-weight: 700;
    /* color: var(--Light-Senary-50); */
    display: block;
    margin-bottom: 30px;
}

.teacher-quote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    /* color: var(--Light-Primary-20); */
    position: relative;
    padding: 0;
    margin: 0 0 40px;
    border: none;
}

.teacher-qualifications {
    border-top: 1.5px solid #eee;
    padding-top: 35px;
}

.qualifications-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.qualifications-title::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--Light-Senary-50);
}

.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.qualifications-list li {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qualifications-list li i {
    color: var(--Light-Secondary-50);
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .teacher-profile__image-wrapper {
        min-height: 400px;
    }

    .teacher-profile__content {
        padding: 40px 30px;
    }

    .teacher-name {
        font-size: 36px;
    }

    .qualifications-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .teacher-profile {
        padding: 60px 0;
    }

    .teacher-profile__card {
        border-radius: 40px;
    }
}