body{
    font-family: 'Poppins', sans-serif;
}
.custom-border{
    border: 1px solid #ececec;
}
.section-main-heading {
    font-size:42px;
    font-family: poppins;
}


.carousel-item img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.product-filter{
    display: flex;
    flex-direction: row;
    text-wrap: nowrap;
    justify-content: space-between;
}

.hero-heading {
    font-weight:600;
    margin-top: 50px;
}

.hero-subheading {
    font-size: 15px;
}

.footer ul {
    list-style: none; /* Removes the dots */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.footer ul li a {
    color: inherit; /* Inherits the text color from the parent */
    text-decoration: none; /* Removes underline */
}

.footer ul li a:hover {
    text-decoration: underline; /* Optional: Adds underline on hover */
}

.col-8 {
    position: relative;
}

.col-8 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 97%;
    height: 94%;
    margin-top: 15px;
    margin-left: 14px;
    background-color: rgba(0, 0, 0, 0.5); /* Light black film */
    border-radius: 5px; /* Matches the image's rounded corners */
    z-index: 1;
}

.col-8 .overlay-text {
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.col-4 img {
    height:480px;
    object-fit: cover;
}

.navbar{
    border-bottom: 2px solid #f5f5f5;
}


@media screen and (max-width: 426px) {

    .hero-heading {
        margin-top: 0%;
    }
    
    .hero-subheading {
        font-size: 12px;
        margin-bottom: 30px;
    }
/* 
    #categoriesCarousel{
        display: none;
    } */



    .carousel .carousel-inner .carousel-item img {
        height: 400px;
    }

    .section-main-heading {
        font-size: 30px;
    } 

    .row .col-lg-3 {
        width: 120px;
    }
    
    .row .col-lg-9 {
        width: 300px;
    }



    .row .col-lg-7 .row .col-lg-4 {
        margin-bottom: 20px;
    }

    .customer-stories {
        display: flex;
        flex-direction: column;
    }

    .customer-stories .col-4 {
        width: 100%;
        height: auto;
    }

    .customer-stories .col-8 {
        width: 100%;
        height: 50%;
    }

    .customer-stories .col-8 h2{
        font-size: 20px;
    }

    .col-8 .overlay {
        width: 94%;
        height: 89%;
    }

    .carousel-inners .carousel-items {
        display: flex;
        justify-content: center;

    }

    .carousel-inners .carousel-items img {
        max-width:100px;
        height: auto;
    }


}