﻿/* ==== About Values Section ==== */
.abt-values {
    padding: 100px 20px;
    background: #1A1A1A; /* nền tối */
    font-family: "Montserrat", sans-serif;
    color: #fff; /* chữ mặc định trắng */
}

.abt-heading {
    margin-bottom: 60px;
}

    .abt-heading .abt-pre {
        display: block;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        color: #D4A017; /* highlight vàng */
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .abt-heading h2 {
        font-size: 2.2rem;
        font-weight: 900;
        color: #fff; /* chữ trắng nổi bật */
        line-height: 1.4;
    }

        .abt-heading h2 span {
            color: #D4A017; /* highlight vàng */
        }

/* Grid */
.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.abt-value-item {
    background: #2a2a2a; /* card xám đậm nổi bật trên nền đen */
    padding: 40px 25px;
    border-radius: 0px 53px 0px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    .abt-value-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    }

.abt-value-icon {
    margin-bottom: 20px;
}

    .abt-value-icon img {
        width: 80px;
        height: auto;
        filter: brightness(0) invert(1); /* icon trắng trên nền tối */
    }

.abt-value-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D4A017; /* chữ vàng nổi bật */
    margin-bottom: 15px;
}

.abt-value-item p {
    font-size: 0.95rem;
    color: #ccc; /* xám sáng dễ đọc */
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .abt-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
