    /* Navbar background dark */
    .custom-navbar {
      background-color: #111; /* dark color */
    }

    /* Logo image */
    .navbar-logo {
      height: 50px;
      width: auto;
    }

    /* Store name */
    .store-name {
      font-size: 1.6rem;
      font-weight: bold;
      color: white;
      margin-left: 10px;
    }

    /* Navbar links */
    .nav-link {
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      position: relative;
      transition: color 0.3s;
    }

    /* Colorful underline animation */
    .nav-link::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 3px;
      display: block;
      bottom: -5px;
      left: 0;
      background: linear-gradient(to right, #ff0057, #ff9900, #00ffdd, #00aaff, #ff00ff);
      transition: width 0.4s ease;
      border-radius: 2px;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .navbar-toggler {
      border-color: white;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Banner image styling */
    .banner-img {
      width: 100%;
      height: 500px; /* bada size */
      object-fit: cover;
    }

    /* Optional: make banner responsive */
    @media (max-width: 768px) {
      .banner-img {
        height: 400px;
      }
    }
    
    
    .marquee-section {
  background: #111;
  padding: 26px 0;
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 12s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  margin-right: 60px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animation */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



    
.category-section {
  background-color: #ffffff;
}

/* Heading */
.category-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

/* Category Card */
.category-card {
  height: 120px;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Premium Hover Effect */
.category-card:hover {
  background: black;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Shop word underline style */
.shop-word {
  position: relative;
  display: inline-block;
}

.shop-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background: darkblue;
  border-radius: 10px;
}

.products-section {
  background: #f8f8f8;
}

.products-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  transition: all 0.35s ease;
  height: 100%;
}

/* Image full width */
.product-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.product-content {
  padding: 16px;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ff0057;
  margin-bottom: 14px;
}

/* Button */
.buy-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.buy-btn:hover {
  background: linear-gradient(135deg, #ff0057, #ff9900, #00aaff);
  color: #000;
}



.button-container {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;    /* vertical alignment (optional) */
}

.bootstrap-btn {
  background-color: #ff6600; /* apni marzi ka color */
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.bootstrap-btn:hover {
  background-color: #e65c00;
  color: #fff;
}



.promo-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.promo-banner-wrapper {
  position: relative;
  width: 100%;
}

.promo-banner-img {
  width: 100%;
  height: 430px; /* adjust height if needed */
  object-fit: cover;
}

/* Black overlay */
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* semi-transparent black */
  z-index: 1;
}

/* Overlay text */
.promo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2; /* above overlay */
}

.promo-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Promo button */
.promo-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: linear-gradient(135deg, #ff0057, #ff9900, #00aaff);
  color: #000;
  transform: translateY(-3px);
}



.why-choose-section {
  background: #fff;
  padding: 60px 0;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

/* Cards */
.choose-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

/* Icon */
.choose-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* Card Heading */
.choose-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* Card Description */
.choose-card p {
  font-size: 1rem;
  color: #555;
}

/* Hover Effect */
.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}




.features-section {
  background: #111; /* dark background */
  color: #fff;
  padding: 50px 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}



.footer-section {
  background-color: #222;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-section h5 {
  color: #ff6600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ff6600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-icons a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }
  .social-icons a {
    display: block;
    margin: 0.25rem 0;
  }
}



