body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background: #ffc107;
  color: #000;
  padding: 10px 0;
  font-weight: bold;
}

.hero-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000') center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  letter-spacing: 5px;
  color: #ffc107;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-text {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

.service-card {
  background: #111;
  border: 1px solid #333;
  padding: 35px;
  border-radius: 25px;
  transition: 0.4s;
  height: 100%;
}

.service-card:hover {
  border-color: #ffc107;
  transform: translateY(-8px);
}

.product-card {
  overflow: hidden;
}

.product-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-tag {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  color: #ffc107;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,193,7,0.3);
}

.footer-section {
  padding: 50px 0;
  background: #000;
  border-top: 1px solid #222;
}

.inner-banner {
  min-height: 500px;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
  url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000') center/cover no-repeat;
}

.about-banner {
  border-bottom: 1px solid rgba(255,193,7,0.25);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.45));
}

.banner-subtitle {
  color: #ffc107;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 700;
}

.banner-text {
  color: #d1d1d1;
  max-width: 650px;
}

.banner-image {
  max-height: 420px;
  object-fit: cover;
}

.min-vh-50 {
  min-height: 500px;
}

.z-2 {
  z-index: 2;
}

.inner-banner {
  min-height: 420px;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
  url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000') center/cover no-repeat;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}

@media(max-width:768px){
  .hero-title {
    font-size: 45px;
  }
}

