.hero {
    background: linear-gradient(rgba(0,0,0,1), rgba(0,0,0,0)), url('../images/May 13, 2025, 03_54_16 PM.png') center/cover;
}

.services {
    background: white, url('../images/paint-bucket-1602900_1280.jpg') center/cover;
}

.carousel-image {
    max-height: 300px; /* Adjust this value to your desired height */
    object-fit: contain; /* Ensures the image fits within the height without cropping, preserving aspect ratio */
}

.service-card {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.portfolio-item {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.scroll-track {
    display: flex;
    animation: scroll-left 360s linear infinite;
    width: max-content;
    align-items: center;
}


.thumb-wrapper {
    flex: 0 0 auto;
    margin: 0 10px;
}

.thumb-img {
    height: auto;
    width: auto;
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}