/* ========== About Us Page Styles ========== */

/* ========== About Section ========== */
.vi-about-section {
    background: white;
}

.vi-about-image {
    position: relative;
    margin-bottom: 0;
}

.vi-main-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.vi-image-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: linear-gradient(135deg, #113170 0%, #0f3f9d 100%);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
    color: white;
    text-align: center;
    min-width: 120px;
}

.vi-badge-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.vi-badge-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

.vi-about-content {
    padding-left: 0;
}

.vi-section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.vi-about-features {
    margin-top: 35px;
}

.vi-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.vi-feature-icon {
    flex-shrink: 0;
}

.vi-feature-icon i {
    font-size: 24px;
    color: #113170;
}

.vi-feature-text {
    flex-grow: 1;
}

.vi-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1;
}

.vi-feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== Padding Section ========== */
.vi-padding-section {
    padding: 80px 0;
}

/* ========== Background Light ========== */
.vi-bg-light {
    background-color: #f9f9f9;
}

/* ========== Section Header ========== */
.vi-section-header {
    margin-bottom: 50px;
}

.vi-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.vi-section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.vi-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #113170 0%, #0f3f9d 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ========== Mission & Vision Cards ========== */
.vi-mission-card,
.vi-vision-card {
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.vi-mission-card {
    border-top-color: #113170;
}

.vi-vision-card {
    border-top-color: #0f3f9d;
}

.vi-mission-card:hover,
.vi-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vi-card-icon {
    font-size: 48px;
    color: #113170;
    margin-bottom: 20px;
}

.vi-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vi-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vi-mission-highlight,
.vi-vision-highlight {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.vi-mission-highlight ul,
.vi-vision-highlight ul {
    list-style: none;
    padding: 0;
}

.vi-mission-highlight li,
.vi-vision-highlight li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.vi-mission-highlight li::before,
.vi-vision-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #113170;
    font-weight: bold;
}

/* ========== Values Section ========== */
.vi-value-card {
    background: white;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.vi-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vi-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #113170 0%, #0f3f9d 100%);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vi-value-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.vi-value-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== Responsive Design ========== */
@media (max-width: 991px) {
    .vi-section-title {
        font-size: 32px;
    }

    .vi-padding-section {
        padding: 60px 0;
    }

    .vi-image-badge {
        position: static;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .vi-about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .vi-section-title {
        font-size: 26px;
    }

    .vi-vision-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .vi-value-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .vi-image-badge {
        bottom: -15px;
        left: 15px;
        padding: 15px 20px;
        min-width: 100px;
    }

    .vi-badge-number {
        font-size: 24px;
    }

    .vi-feature-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .vi-section-title {
        font-size: 22px;
    }

    .vi-card-title {
        font-size: 20px;
    }

    .vi-image-badge {
        bottom: -12px;
        left: 10px;
        padding: 12px 15px;
    }

    .vi-badge-number {
        font-size: 20px;
    }

    .vi-badge-text {
        font-size: 12px;
    }

    .vi-section-text {
        font-size: 14px;
    }

    .vi-feature-item {
        gap: 15px;
    }

    .vi-feature-icon i {
        font-size: 20px;
    }

    .vi-feature-text h4 {
        font-size: 16px;
    }

    .vi-feature-text p {
        font-size: 13px;
    }
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.mb-minus-30 {
    margin-bottom: -30px;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-in-out;
    animation-fill-mode: both;
}

.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease-in-out;
    animation-fill-mode: both;
}

.wow.fadeInRight {
    animation: fadeInRight 0.8s ease-in-out;
    animation-fill-mode: both;
}
