/* Custom Styles for About Us Page */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/head_banner/about_bg.webp') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f9f9f9;
}

.section-header-custom {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-custom h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.section-header-custom .underline {
    width: 60px;
    height: 3px;
    background: #f39200;
    margin: 15px auto;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #f39200;
    font-weight: 700;
}

.stat-box p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.advantage-card {
    padding: 30px;
    background: #fff;
    border-left: 5px solid #f39200;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 0 10px 10px 0;
    height: 100%;
}

.advantage-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.vertical-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
}

.vertical-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.vertical-card-header {
    background: #fdf7ee;
    padding: 20px;
    border-bottom: 1px solid #f9e6cc;
}

.vertical-card h5 {
    color: #f39200;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.vertical-card .card-body {
    padding: 25px;
}

.vertical-card ul {
    padding-left: 18px;
    color: #555;
    margin: 0;
}

.vertical-card ul li {
    margin-bottom: 10px;
}

.cta-section {
    background: #222;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.btn-brand {
    background: #f39200;
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    display: inline-block;
    text-decoration: none !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
}

.btn-brand:hover {
    background: #d68100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 146, 0, 0.4);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}
