/* ============================================
   GLOBAL
============================================ */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}

.text-warning {
    color: #f7c20a !important;
}

/* Fix logo size */
.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   HERO SECTION WITH IMAGE (FINAL – FIXED)
============================================ */
.hero-clean {
    position: relative;
    height: 85vh;

    /* IMPORTANT: absolute path + forced */
    background-image: url("/assets/img/hero-building.jpg") !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Hero button */
.hero-btn {
    background: #f7c20a;
    color: #000;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ffd84d;
    transform: scale(1.05);
}

/* ============================================
   PROJECT BOXES (SAME IMAGE SIZE FIX)
============================================ */
.project-box {
    background: #000;
    border: 2px solid #f7c20a;
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.project-box:hover {
    transform: translateY(-6px);
}

/* FIX IMAGE SIZE */
.project-box img {
    width: 100%;
    height: 240px;              /* 👈 SAME HEIGHT FOR ALL */
    object-fit: cover;          /* 👈 CROPS, NO STRETCH */
    object-position: center;    /* 👈 CENTER CROP */
    border-radius: 8px;
    border: 2px solid #f7c20a;
}

/* Title */
.project-title {
    color: #f7c20a;
    font-size: 1.25rem;
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}


/* ============================================
   CLIENT LOGO SLIDER (2 ROWS – FINAL)
============================================ */
.client-slider {
    background: #ffffff;
    overflow: hidden;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 50px;
}

.client-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Row 1: Left → Right */
.track-left {
    animation: scrollLeft 30s linear infinite;
}

/* Row 2: Right → Left */
.track-right {
    animation: scrollRight 32s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .hero-clean {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .client-track img {
        height: 55px;
        margin-right: 20px;
    }

    .project-box {
        margin-bottom: 20px;
    }
}
