/* Subtitle */
.subtitle {
    color: #13207a;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.main-title {
    font-size: 40px;
    font-weight: 600;
    color: #0f2c2c;
    line-height: 1.3;
}

/* Video Circle */
.video-circle {
    position: relative;
    width: 260px;
    height: 260px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.video-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    color: #13207a;
}

/* Experience */
.experience {
    font-size: 70px;
    font-weight: 700;
    color: #0f2c2c;
}

.experience span {
    font-size: 30px;
}

/* Text */
.exp-text {
    color: #666;
}

/* Description */
.desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Button */
.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #13207a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.learn-btn span {
    background: #0f2c2c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-btn:hover {
    background: #13207a;
}

/* ===== Mission & Vision Tab Box ===== */
.mv-tab-box {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 6px 28px rgba(8, 11, 88, 0.13);
    border: 1px solid rgba(8, 11, 88, 0.1);
}

/* --- Tab Header Bar --- */
.mv-tab-headers {
    display: flex;
}

.mv-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    background: #f0f1f8;
    color: #080b58;
    transition: background 0.3s ease, color 0.3s ease;
    letter-spacing: 0.3px;
}

.mv-tab-btn i {
    font-size: 18px;
    transition: color 0.3s;
}

/* Active Mission tab */
.mv-tab-btn[data-tab="mission"].mv-tab-active {
    background: #080b58;
    color: #ffffff;
}

/* Active Vision tab */
.mv-tab-btn[data-tab="vision"].mv-tab-active {
    background: #063d2f;
    color: #ffffff;
}

/* Hover on inactive tabs */
.mv-tab-btn:not(.mv-tab-active):hover {
    background: #e1e3f0;
}

/* --- Panel Content Area --- */
.mv-tab-panels {
    background: #ffffff;
    padding: 28px 26px;
    min-height: 100px;
}

.mv-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mv-tab-panel.mv-panel-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: mvFadeIn 0.35s ease forwards;
}

@keyframes mvFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv-panel-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4a4a5a;
    line-height: 1.75;
    margin-bottom: 0;
}