body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
}


.logoimg {
    width: 100px;
    height: 50px;
}



.carousel-item {
    position: relative;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* 0.4 = 40% black opacity */
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    /* Make sure caption appears above the overlay */
}

.carousel-item img {
    height: 100%;
    /* optional: fit height */
    width: 100%;
    object-fit: cover;
    /* keeps image aspect and covers area */
}


.footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    border-radius: 0 0 15px 15px;
}

.form-section,
.business-details-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}









.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* .card-img-top {
    height: 220px;
    object-fit: cover;
}

.product-card {
    transition: transform 0.2s;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
} */

.img-lazy {
    background-color: #e9ecef;
    min-height: 200px;
    display: block;
}


.bdrr {
    width: 100px;
    text-shadow: 1px 1px 2px rgb(147, 108, 115);
}

.bdrr img {
    /* border: 2px solid red; */
    width: 200px;
    height: 150px;
}