body {
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
  background: url('images/mainimg.png') no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px; /* padding for small screens */
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.logo-img {
  height: 80px;   /* default logo height */
  width: auto;
}


/* Footer */
footer {
  background: #f8f9fa;
  text-align: center;
  padding: 20px;
}

.footer {
  border-top: 1px solid #ddd;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #28a745;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.2s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 10px;
}

.btn-outline-success {
  border-radius: 30px;
}

.dropdown-menu {
  border-radius: 12px;
}

.nav-item span {
  font-size: 0.95rem;
}


/* Responsive adjustments */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 30px;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .navbar .form-inline {
    justify-content: center;
  }
}

/* Flipkart-like Mobile View */
@media (max-width: 576px) {
  /* Logo smaller */
  .navbar-brand img {
    height: 35px; /* smaller logo */
  }

  /* Free Delivery + Quality Section */
  .navbar .d-flex.align-items-center.me-auto {
    font-size: 0.40rem; /* shrink text size */
  }

  .navbar .d-flex.align-items-center.me-auto i {
    font-size: 1rem !important; /* smaller icons */
  }

  .navbar .d-flex.align-items-center.me-auto .fw-semibold {
    font-size: 0.50rem; /* bold line smaller */
  }

  .navbar .d-flex.align-items-center.me-auto small {
    font-size: 0.6rem; /* subtitle smaller */
  }
  .btn-outline-success {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* Hero Section */
  .hero {
    min-height: 55vh;
    padding: 12px 8px;
  }
  .hero h1 {
    font-size: 1.3rem; /* smaller hero heading */
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .hero .btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* Product Cards */
  .product-card img {
    height: 150px;
  }
  .product-card h5 {
    font-size: 0.8rem;
  }
  .product-card p {
    font-size: 0.7rem;
  }
  .product-card .btn {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
  .product-card select {
    font-size: 0.7rem;
  }
  .product-card .badge {
    font-size: 0.6rem;
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 10px;
    right: 10px;
  }


  /* Footer */
  footer {
    font-size: 0.7rem;
    padding: 12px 8px;
  }
  .footer a {
    font-size: 0.75rem;
  }
}





