/* --- Values Section --- */
.values-section {
    background-color: #080808;
    padding: 80px 10%;
    color: white;
    text-align: center;
    border-top: 1px solid #222;
}

.values-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 2px solid #222;
    padding-bottom: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.value-tab {
    background: none;
    border: none;
    color: #666;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    padding-bottom: 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-tab:hover {
    color: white;
}

/* Active Indicator line */
.value-tab.active {
    color: white;
}

.value-tab::after {
    content: '';
    position: absolute;
    bottom: -2px; /* On the border line */
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.value-tab.active::after {
    width: 100%;
}

.values-content {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-text {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeIn 0.5s ease;
}

.value-text.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Clients Section --- */
.clients-section {
    background-color: #050505;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Hide scrollbar for marquee */
}

.clients-title {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-title .highlight {
    color: #050505; /* Cutout effect or inverse */
    background-color: var(--primary-orange);
    padding: 0 10px;
}

/* Infinite Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Gradient Fade on sides */
.marquee-container::before, .marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, #050505, transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, #050505, transparent); }


.marquee-content {
    display: inline-flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

.marquee-content i {
    font-size: 4rem;
    color: #333; /* Dark grey logos */
    transition: color 0.3s, transform 0.3s;
}

.marquee-content i:hover {
    color: white; /* Light up on hover */
    filter: drop-shadow(0 0 10px var(--primary-orange));
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move half way (since duplicate content) */
}

/* Responsive */
@media (max-width: 768px) {
    .values-nav { flex-direction: column; gap: 15px; border-bottom: none; }
    .value-tab::after { display: none; } /* Hide underline on mobile */
    .value-tab.active { color: var(--primary-orange); }
}
