/* Base styles moved to base.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

/* Video Section Styles */
.about-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.about-section>* {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-section .video-container {
    padding: 0;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #5c5c54;
    margin-bottom: 20px;
    text-align: left;
}

.about-text:last-of-type {
    margin-bottom: 60px;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}


/* Mission & Vision Section Styles */
.mission-vision-wrapper {
    background-color: #f0ebe5;
    background-image: url('../images/about/vm_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.mission-vision-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.section-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #333;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 42px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card,
.vision-card {
    background: #781921;
    border-radius: 20px;
    padding: 60px 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.xb-item--shape .shape {
    position: absolute;
    z-index: 0;
}

.xb-item--shape .shape--1 {
    bottom: 0;
    left: 0;
}

.xb-item--shape .shape--2 {
    top: 0;
    right: 0;
}

.xb-item--shape img {
    display: block;
    max-width: 100%;
    height: auto;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: Georgia, serif;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Stats Section Styles */
.stats-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.stats-section>* {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.stats-section-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #333;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0;
}

.stats-grid {
    column-count: 3;
    column-gap: 25px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.stat-card {
    break-inside: avoid;
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-card.solid {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: white;
    min-height: 220px;
    height: fit-content;
}

.stat-card.gray {
    background-color: #5b6671;
}

.stat-card.split {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
}

.card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    flex-shrink: 0;
}

.stat-card-content {
    padding: 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background-color: #781921;
    color: white;
}

.stat-card-content.black {
    background-color: #170006;
}

.stat-description {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.stat-description i {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-card.solid.burgundy {
    background-color: #781921;
}

.stat-card.solid.black {
    background-color: #170006;
}

.stat-card.solid.yellow {
    background-color: #fdb714;
}


/* Responsive Design */
@media (max-width: 1024px) {

    .about-section,
    .stats-section {
        padding: 60px 0;
    }

    .about-section>*,
    .stats-section>* {
        padding: 0 40px;
    }

    .about-section .video-container {
        padding: 0;
    }

    .mission-vision-section {
        padding: 60px 40px;
    }

    .about-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 40px;
    }

    .cards-container {
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 50px 40px;
    }

    .card-title {
        font-size: 36px;
    }

    .stat-description {
        font-size: 18px;
    }

    .stats-grid {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 768px) {

    .about-section,
    .stats-section {
        padding: 50px 0;
    }

    .about-section>*,
    .stats-section>* {
        padding: 0 30px;
    }

    .about-section .video-container {
        padding: 0 30px;
    }

    .mission-vision-section {
        padding: 50px 30px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .card-title {
        font-size: 32px;
    }

    .card-description {
        font-size: 14px;
    }

    .benefit-item {
        font-size: 14px;
    }


    .stats-section-header {
        font-size: 22px;
    }

    .stats-grid {
        column-count: 1;
        column-gap: 20px;
    }

    .stat-card.solid {
        padding: 60px 30px;
    }

    .stat-card-content {
        padding: 40px 30px;
    }

    .stat-description {
        font-size: 16px;
    }

    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {

    .about-section,
    .stats-section {
        padding: 40px 0;
    }

    .about-section>*,
    .stats-section>* {
        padding: 0 20px;
    }

    .about-section .video-container {
        padding: 0 20px;
    }

    .mission-vision-section {
        padding: 40px 20px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 14px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-description,
    .benefit-item {
        font-size: 13px;
    }


    .stat-card.solid {
        padding: 50px 25px;
    }

    .stat-card-content {
        padding: 35px 25px;
    }

    .stat-description {
        font-size: 15px;
    }
}
/* Stats section overrides */
.stats-title-no-margin { margin-bottom: 0; }
.stat-icon { font-size: 32px; margin-bottom: 15px; }
.stat-card-maroon { background-color: #781921; }
.stat-card-dark   { background-color: #170006; }
.stat-card-gold   { background-color: #fdb714; }
.stat-card-content-maroon { background-color: #781921; color: white; }
.stat-card-content-dark   { background-color: #170006; color: white; }


