:root {
    --about-bg-light: #f8fafc;
    --about-bg-soft: #eef3f7;
}

.parallax-page-content {
    background: var(--light-bg) !important;
}

.about-us-parallax-bg {
    background-image: url('../images/about_us_header_back.jpg');
}

.about-features {
    background: linear-gradient(
        180deg,
        rgba(10, 38, 59, 0.03),
        rgba(238, 116, 31, 0.05)
    );
    padding: 80px 0;
}

.about-feature-box {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 45px 30px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(10, 38, 59, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* subtle brand glow */
.about-feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 38, 59, 0.12),
        rgba(238, 116, 31, 0.18)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.about-feature-box:hover::before {
    opacity: 1;
}

.about-feature-box:hover {
    transform: translateY(-10px);
}

/* ICON BASE */
.about-feature-box i {
    position: relative;
    z-index: 1;
    font-size: 38px;
    margin-bottom: 22px;
    width: 76px;
    height: 76px;
    line-height: 76px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-features .col-md-4:nth-child(1) .about-feature-box,
.about-features .col-md-4:nth-child(3) .about-feature-box {
    background-color: var(--primary);
}

.about-features .col-md-4:nth-child(2) .about-feature-box {
    background-color: var(--accent);
}

.about-features .col-md-4:nth-child(1) .about-feature-box i,
.about-features .col-md-4:nth-child(3) .about-feature-box i {
    color: var(--primary);
}

.about-features .col-md-4:nth-child(2) .about-feature-box i {
    color: var(--accent);
}

.about-feature-box h5 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.about-feature-box p {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
}

.about-stats {
    background: var(--light-bg);
    padding: 70px 0;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-weight: 600;
    color: var(--primary);
}