/* HERO SECTION */
.about-hero {
    height: 45vh;
    min-height: 280px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.about-hero h1 {
    letter-spacing: 1px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

/* TEXT TOP */
.text-top {
    color: #d9cb82;
    letter-spacing: 2px;
}

/* ABOUT TEXT */
.about-para {
    font-family: "Work Sans", sans-serif;
    color: #555;
    font-size: 17px;
    line-height: 30px;
}

/* IMAGE CARD */
.about img {
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* BADGE */
.badge-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.badge-box .icon {
    width: 40px;
    height: 40px;
    background: #d9cb82;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.container-trust-bar {
    max-width: 1300px;
    /* control width */
    margin-left: auto;
    margin-right: auto;
    /* center like Bootstrap */
    padding-left: 15px;
    padding-right: 15px;
}

.trust-bar {
    background: #96282b;
    border-radius: 10px;
    padding: 20px 12px;
    /* small height */
    overflow: hidden;
}

.trust-wrapper {
    overflow: hidden;
}

/* track */
.trust-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
}

/* item */
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.trust-item i {
    font-size: 16px;
    color: #d9cb82;
}

/* ===== DESKTOP (ONLY 4 ITEMS, NO SCROLL) ===== */
@media (min-width: 992px) {
    .trust-track {
        width: 100%;
        justify-content: center;
        gap: 100px;
    }

    /* hide duplicate items */
    .duplicate {
        display: none;
    }
}

/* ===== MOBILE AUTO SCROLL ===== */
@media (max-width: 991px) {
    .trust-track {
        animation: scroll 20s linear infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/* CORE VALUES */
.core-values-container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 15px;
}

.core-value {
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.core-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ICON STYLE */
.icon-wrapper {
    background: linear-gradient(135deg, #d9cb82, #cbbd70);
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #000;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(217, 203, 130, 0.5);
}

.core-value:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(217, 203, 130, 0.8);
}

.core-value-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

/* HEADING */
h2 {
    font-weight: 700;
    color: #222;
    position: relative;
}

h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #d9cb82;
    border-radius: 2px;
    transition: width 0.3s ease;
}

h3:hover::after {
    width: 100%;
}
/* MOBILE */
@media (max-width: 768px) {
    .about-hero {
        height: 30vh;
    }
}