
/* === Base Reset & Mobile Friendly Settings === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  padding: 1rem;
}

/* Header Slider */
#headerSlider {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Carousel Item */
  .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  /* Carousel Caption */
  .carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
  }
  
  .carousel-caption h1 {
    font-weight: bold;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-caption p {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  /* Animations */
  .animate__fadeInDown {
    animation: fadeInDown 1s ease-out;
  }
  
  .animate__fadeInUp {
    animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Carousel Control Buttons */
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
    /* background-color: rgba(255, 255, 255, 0.5); */
    border-radius: 50%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .carousel-caption h1 {
      font-size: 2rem;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  }
  
/* === Shipping Section === */
#shipping {
  background-color: #ffffff;
}

#shipping .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
}

#shipping p {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Country Partner Counter */
#shipping .col-md-3 {
  transition: transform 0.3s ease;
}

#shipping .col-md-3:hover {
  transform: translateY(-5px);
}

#shipping img {
  height: 32px;
}

#shipping .count {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Count Animation */
@keyframes countUp {
  from { content: "0"; }
}

/* .count::before {
  content: attr(data-count);
  animation: countUp 2s ease-out forwards;
} */

/* Shipping Partner Logos */
.shipping-logo {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  opacity: 0.8;
}

.shipping-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 1.8rem;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  text-decoration: none;
}

/* === Footer Dark === */
footer.bg-black {
  background-color: #111;
  color: #ccc;
}

footer h5, footer h6 {
  font-weight: 600;
  color: #fff;
}

footer p, footer li, footer a {
  font-size: 0.95rem;
}

footer a.text-white-50:hover {
  color: #fff;
  text-decoration: underline;
}

footer .input-group input {
  max-width: 300px;
}

footer .fab {
  transition: color 0.3s ease;
}

footer .fab:hover {
  color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
  #shipping .count {
    font-size: 1.5rem;
  }

  .whatsapp-float {
    font-size: 1.5rem;
    padding: 10px 12px;
  }
}



/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}



/* Fix for floating WhatsApp button on mobile */
.whatsapp-float {
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}



/* === Responsive Carousel === */
#headerSlider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.carousel-item {
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

/* Navbar Logo */
/* .navbar-logo {
  height: 40px;
  width: auto;
  max-height: 60px;
} */

/* Responsive adjustment */
/* @media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
  }

  .navbar .nav-link {
    font-size: 0.9rem;
  }
} */

.navbar-logo {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

