/* ============================================
   GLOBAL DESIGN
============================================ */
body {
    margin: 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.text-warning { color: #f7c20a !important; }

/* Fix Logo Scaling */
.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   HERO SECTION (Clean Solar Look)
============================================ */
.hero-clean {
    height: 70vh;
    background: linear-gradient(180deg, #000000 0%, #111111 60%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    color: white;
}

.hero-clean::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247,194,10,0.28) 0%, transparent 72%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-clean * {
    position: relative;
    z-index: 3;
}

/* Yellow Button */
.hero-btn {
    background: #f7c20a;
    color: #000;
    border: none;
    transition: 0.3s;
    font-weight: 600;
}

.hero-btn:hover {
    transform: scale(1.05);
    background: #ffdd58;
}

/* ============================================
   PROJECT BOXES
============================================ */
.project-box {
    background: #000;
    border: 2px solid #f7c20a;
    border-radius: 8px;
    padding: 20px;
    color: white;
    transition: 0.3s ease-in-out;
}

.project-box:hover {
    transform: translateY(-5px);
}

.project-box img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #f7c20a;
}

.project-title {
    color: #f7c20a;
    font-size: 1.35rem;
    margin-top: 10px;
    font-weight: 600;
}

/* ============================================
   PREMIUM CLIENT LOGO SLIDER
============================================ */
.client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.client-track {
    display: flex;
    gap: 40px;
    animation: scrollClients 25s linear infinite;
}

.client-track img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.client-track img:hover {
    transform: scale(1.12);
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
============================================ */
@media (max-width: 768px) {
    .client-track img {
        height: 60px;
        margin-right: 20px;
    }

    .hero-clean {
        height: 60vh;
    }

    .project-box {
        margin-bottom: 20px;
    }
}
