body {
    font-family: Arial, sans-serif;
}

.hero-section {
    position: relative;
    background: url('../assets/img/hero-bg.png') center/cover no-repeat;
    color: white;
    text-align: center;
    margin-top: 68px;
    padding: 220px 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    color: #ff6600;
}

.logo {
    width: 320px;
    height: auto;
}

/* Apply max-width only for small screens (tablets and mobiles) */
@media (max-width: 991px) {
    .logo {
        max-width: 220px;
    }
}

.navbar {
    border-bottom: 2px solid linear-gradient(to bottom, #222, rgba(34, 34, 34, 0.1));

}

.navbar-brand {
    display: flex;
    align-items: center;
}

.recent-orders-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 10px;
    border-radius: 5px;
    animation: slideIn 10s infinite;
}

.recent-orders-popup p {
    margin-bottom: 0 !important;
}

@keyframes slideIn {

    0%,
    100% {
        transform: translateX(-100%);
    }

    10%,
    90% {
        transform: translateX(0);
    }
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    /* Increase font size */
    font-weight: bold;
    /* Make text bold */
    display: flex;
    align-items: center;
    gap: 8px;
    /* Spacing between icon and text */
}

.navbar-nav .nav-link i {
    font-size: 1.2rem;
    /* Icon size */
}

section {
    padding: 80px 0;
    /* Adds vertical spacing */
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
        /* Less padding on smaller screens */
    }
}
#about p {
font-size: 1.25rem; /* Adjust size as needed */
line-height: 1.6;
}
html {
scroll-padding-top: 80px; /* Adjust according to navbar height */
}

#location-suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
    display: none;
    max-height: 200px; /* Prevents overflow */
    overflow-y: auto;
}
.list-group-item {
    cursor: pointer;
    padding: 8px;
}
.list-group-item:hover {
    background: #f1f1f1;
}

.offer-section {
    background: url('../assets/img/desi-shopper.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 0;
}

.offer-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.coupon-code {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.coupon-code:hover {
    background: #ffaa00;
}