.hero-section {
    background: url('/quboinfra/images/bg1.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: #1f392b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    animation: moveBackground 15s linear infinite;
}
.hero-section h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-top: 15rem;
}

.hero-section p.subtext {
    font-family: 'Brush Script MT', cursive;
    font-size: 5rem;
    color: white;
    margin-top: 30px;
}

.about-us-section {
    
    /* background-color: #e2dfd3c5; */
    background: #e7dcd6 url('/quboinfra/images/line'); 
    padding-bottom: 60px;
}
.about-us-section .container {
   padding-top: 10rem;
}
.custom-image {
    width: 100%;
    height: 100%px;
    object-fit: cover;
}
.carousel-image {
    height: 600px;
    object-fit: fill;

}
.custom-section {
  background: #e7dcd6 url('/quboinfra/images/line'); 
  /* background: #e7dcd6;  */
  background-repeat: repeat;
}

.content-box {
  background-color: #1f392b;
  min-height: 100%;
}

.object-fit-cover {
  object-fit: cover;
  height: 100%;
}

.product-section-wrapper {
    position: relative;
    top: 50px;
    z-index: 10;
}

.product-section {
    background-color: #f6f5f0;
    padding-top: 100px;
    padding-bottom: 100px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.product-card {
    min-height: 420px;
    background-color: #1f392b;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h4 {
    font-weight: bold;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .hero-section {
        justify-content: flex-start;
        padding-top: 5rem;
    }

    .hero-section h1 {
        margin-top: 0rem;
        font-size: 20px;
    }

    .hero-section p.subtext {
        font-size: 2rem;
    }

    .product-section-wrapper {
        position: relative;
        top: 3rem;

    }

    .about-us-section .container {
        padding-top: 85rem;
    }
    .section-title{
        margin-top: 1.5rem;
    }
    .carousel-image {
        height: 200px;
    }
}
@keyframes moveBackground {
    0% {
        background-position: center bottom;
    }

    50% {
        background-position: center top;
    }

    100% {
        background-position: center bottom;
    }
}

  

  