body {
  padding-top: 80px;
  background: #0b0b0b;
  color: #fff;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000, #111);
}

.hero-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Background image with opacity */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("image/hero-bg.webp"); /* change image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* control background opacity */
  z-index: 0;
}

/* Keep content above background */
.hero-section .container {
  position: relative;
  z-index: 1;
}


.card {
  border-radius: 15px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 176, 0, 0.3);
}

.nav-link.btn {
  color: #fff !important;
}

.wt-button{
    background-color: #47d266;
    color: #000;
}

.ft {
  position: relative;
  background-image: url("image/footer-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Overlay */
.ft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust opacity here */
  z-index: 1;
}

/* Keep content above overlay */
.ft .container,
.ft section {
  position: relative;
  z-index: 2;
}

.whatsapp-title {
  background: linear-gradient(90deg, #00d26a, #00b95c);
  color: #000;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

.whatsapp-title i {
  margin-right: 6px;
}

/* Carousel */
.whatsapp-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.whatsapp-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
}

.whatsapp-carousel::-webkit-scrollbar {
  display: none;
}

/* Card */
.whatsapp-card {
  min-width: 220px;
  background: linear-gradient(145deg, #00e676, #00c853);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-5px);
}

.whatsapp-card i {
  font-size: 40px;
  color: white;
}

.whatsapp-card .username {
  font-weight: 600;
  font-size: 15px;
}

.whatsapp-card input {
  width: 100%;
  margin-top: 4px;
  border-radius: 5px;
  border: none;
  padding: 3px 6px;
  font-size: 13px;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00e676;
  border: none;
  padding: 6px 10px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left {
  left: 5px;
}

.nav-btn.right {
  right: 5px;
}

.ft::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4)
  );
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 18px;
  background-color: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.whatsapp-text {
  line-height: 1;
}

/* 📱 Mobile View */
@media (max-width: 767px) {
  .whatsapp-btn {
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    border-radius: 0;
    padding: 14px 20px;
    font-size: 16px;
  }
}


.payment-icon {
  height: 35px;
  width: auto;
  object-fit: contain;
}

/* Optional: slightly bigger icons on mobile */
@media (max-width: 576px) {
  .payment-icon {
    height: 30px;
  }
}


.hero-section::before {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("image/banner.webp");
  opacity: 1;
}


@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}


