.navbar {
    background-color: #000;
    padding: 12px 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .navbar-brand {
    color: gold;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 1px;
  }

  .nav-link {
    color: white !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: gold !important;
  }

  .navbar-toggler {
    border: none;
    background: none;
  }

  .navbar-toggler .fa-bars {
    color: gold;
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .navbar-toggler.collapsed .fa-bars {
    transform: rotate(0deg);
  }

  .navbar-toggler:not(.collapsed) .fa-bars {
    transform: rotate(90deg);
  }

  .search-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
  }

  .collapse.navbar-collapse.show {
    animation: slideDown 0.3s ease-in-out;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-10%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 991px) {
    .navbar-nav {
      background-color: #000;
      border-top: 1px solid #333;
      padding-top: 10px;
    }

    .nav-item {
      text-align: center;
    }
  }
/* ============shop============ */


/* Product Section Styles */
.shop-section {
    background-color: #f9f9f9;
  }
  
  .text-gold {
    color: #d4af37;
  }
  
  .card.product-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  
  .card.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .card-img-top {
    
    object-fit: cover;
  }
  
  .btn-gold {
    background-color: #d4af37;
    color: #000;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
  }
  
  .btn-gold:hover {
    background-color: #b38e22;
    color: #fff;
   
  }

  .fa-whatsapp{
    font-size: 30px;
    color: rgb(5, 114, 5);
    
  }
  
  /* Scroll animation */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
/* ===================vedio================   */

/* Video Section Styling */
/* Video Section Styling */
.promo-video-section {
    background-color: #111;
  }
  
  .video-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease;
    object-fit: cover;
  }
  
  .video-box:hover {
    transform: scale(1.01);
  }
  
  .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 12px;
    object-fit: cover;
  }
  
  /* Animate on scroll */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* ==================footer============== */
.footer {
  background-color: #111;
  color: white;
  border-top: 2px solid gold;
}

.footer h5 {
  color: gold;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer p {
  color: #ccc;
}

.footer a {
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: gold;
}

.social-icons a {
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: gold;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .social-icons a {
    font-size: 20px;
  }
}
