.hero-banner {
      background: linear-gradient(135deg, rgba(15, 32, 39, 0.7), rgba(32, 58, 67, 0.7), rgba(44, 83, 100, 0.7));
 /* You can change gradient colors */
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .hero-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
  }

  .hero-banner h1::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #00fff7, #ff00ff);
    margin: 10px auto 0;
    border-radius: 2px;
    animation: underlineFade 2s forwards;
  }

  .hero-banner p {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes underlineFade {
    from { width: 0; }
    to { width: 60%; }
  }

  /* Gallery Grid Styling */
.gallery-grid .gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00fff7, 0 0 40px #ff00ff inset;
}

/* Overlay Effect */
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay .product-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.overlay button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s all;
}
.overlay button:hover {
  background: #000;
  color: #fff;
}

/* Special Offer Styling */
.special-offer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #111;
  box-shadow: 0 0 20px darkgray, 0 0 40px #848888 inset;
  animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
  0% { box-shadow: 0 0 20px #fff, 0 0 40px #fff inset; }
  50% { box-shadow: 0 0 10px #fff, 0 0 20px #fff inset; }
  100% { box-shadow: 0 0 25px #fff, 0 0 50px #fff inset; }
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
}
.cta-section h2 {
  font-size: 2rem;
}
.cta-section .btn {
  background-color: #fff !important;
  color: #000 !important;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-section .btn:hover{background-color: darkgray !important; color: #000 !important;}
.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

      @media (max-width: 480px) {
          .hero-banner h1{
            font-size: 24px;
          }
  
}