/* Hero Section */
.hero {
  min-height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../assets/images/network.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #C5A620;
  text-align: center;
}

/* Navbar logo adjustment */
.navbar-brand {
  font-size: 1.1rem;
}
.navbar-brand img {
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
}
.nav-link:hover{
  color: #fdcf00;
}

/* Small card hover effect */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* Dropdown menu styles */
.dropdown:hover .dropdown-menu {
  /* display: block; */
  left: 0%;
}
@media (max-width: 991px) {
  .dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
  }
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
}
.dropdown-menu a {
  display: inline-block;
  perspective: 1200px;
}

.dropdown-menu img {
  max-height: 60px;
  transition: 
    transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.8s ease,
    filter 0.8s ease;

  transform-style: preserve-3d;
}

.dropdown-menu a:hover img {
  transform: rotateY(360deg) translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.35);
  filter: brightness(1.1);
}

/* ===== Product Cards ===== */
.card {
  border: none;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-img-top {
  height: 130px;
  object-fit:contain;
  padding: 15px;
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

.card:hover img {
  transform: scale(1.08);
}

.carousel-item img {
 transition: transform 0.5s ease;
}

/* ===== Fade Up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}
.whatsapp-label {
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background-color: #d3d3d3;
  color: #000;
  transition: all 0.3s ease;
  white-space: nowrap;
}
/* Default text */
.whatsapp-label::before {
  content: "Contact Us";
}

/* Change text when hovered */
.whatsapp-float img:hover + .whatsapp-label::before {
  content: "WhatsApp";
}

/* Buy button */
.buy-btn{
  background:#25D366; 
  border:none; color:#fff;
  font-weight:600;
}
.buy-btn:hover{
  background:#027a30; 
  border:none; color:#000000;
}

/* REMOVE DEFAULT ICON */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
}

/* COMMON ICON STYLE */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  width: 32px;
  height: 32px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
}

/* LEFT ARROW */
.carousel-control-prev-icon::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* RIGHT ARROW */
.carousel-control-next-icon::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
}

