/* About Us Page Custom Premium Stylesheet */
.about-hero {
    background: radial-gradient(circle at 50% 50%, #0c1524 0%, #030812 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Stadium background flare overlays */
.about-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(242, 159, 4, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero h1 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 42px;
}

.about-hero p, .about-hero .text-muted, .about-hero .lead {
    color: #cbd5e1 !important;
    font-size: 16px;
    line-height: 1.8;
}

.about-sec-heading {
    font-family: 'Oswald', sans-serif;
    color: #0b1528;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.about-sec-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #f29f04;
    border-radius: 2px;
}

.about-sec-heading.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Vision paragraph text formatting */
.page-about-us p.text-muted {
    color: #475569 !important;
    font-size: 15px;
    line-height: 1.8;
}

/* Stats Counter */
.stat-card {
    background: #ffffff;
    border: 1px solid rgba(242, 159, 4, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f29f04, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 21, 40, 0.06);
    border-color: rgba(242, 159, 4, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #f29f04;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.feature-box {
    background: #ffffff;
    border-left: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    border-top: 3px solid rgba(242, 159, 4, 0.4);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-top-color: #f29f04;
    box-shadow: 0 25px 45px rgba(242, 159, 4, 0.08);
}

.feature-box .icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(242, 159, 4, 0.06);
    border: 2px solid rgba(242, 159, 4, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f29f04;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(242, 159, 4, 0.04);
}

.feature-box:hover .icon-wrap {
    background: linear-gradient(135deg, #f29f04 0%, #d98e03 100%);
    color: #ffffff;
    border-color: #f29f04;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(242, 159, 4, 0.2);
}

.feature-box h4 {
    font-family: 'Oswald', sans-serif;
    color: #0b1528;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.feature-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero p, .about-hero .text-muted, .about-hero .lead {
        font-size: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-card .stat-number {
        font-size: 32px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-box h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }
}
