/* About Us Modern Styles */

.about-page {
    background-color: #fafafa;
}

body {
    background-image: none !important;
    background-color: #fafafa !important;
}

#header {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 5px 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: #feb900;
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section Overhaul */
.about-section {
    padding: 60px 0;
}

.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #feb900;
}

.about-content p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.about-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section Modernization */
.stats-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    font-size: 40px;
    color: #feb900;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #feb900;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: #fff9e6;
    color: #feb900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title-main {
        font-size: 1.8rem;
    }
}