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/banner-bg.jpg"); /* 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-bg.jpg");
  opacity: 1;
}


@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}





    :root {
      --orange: #ff7a00;
      --black: #0b0b0b;
      --dark: #121212;
      --gray: #9a9a9a;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* NAVBAR */
    header {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .nav {
      max-width: 1200px;
      margin: auto;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 22px;
      font-weight: 700;
      color: var(--orange);
    }

    .nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .nav ul li a {
      color: var(--white);
      font-weight: 500;
      transition: 0.3s;
    }

    .nav ul li a:hover {
      color: var(--orange);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6)),
        radial-gradient(circle at top, #ff7a00 0%, transparent 60%);
      display: flex;
      align-items: center;
      padding: 120px 20px 60px;
    }

    .hero-content {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 700;
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero p {
      max-width: 600px;
      color: var(--gray);
      font-size: 17px;
    }

    .btn {
      display: inline-block;
      padding: 14px 28px;
      background: var(--orange);
      color: var(--black);
      font-weight: 600;
      border-radius: 30px;
      transition: 0.3s;
      width: fit-content;
    }

    .btn:hover {
      background: #ff9a3c;
      transform: translateY(-2px);
    }

    /* SECTIONS */
    section {
      padding: 80px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 700;
    }

    .section-title h2 span {
      color: var(--orange);
    }

    .section-title p {
      color: var(--gray);
      margin-top: 10px;
    }

    /* CARDS */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .card {
      background: var(--dark);
      border-radius: 16px;
      padding: 30px;
      transition: 0.3s;
      border: 1px solid rgba(255,122,0,0.1);
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: var(--orange);
    }

    .card h3 {
      margin-bottom: 12px;
      color: var(--orange);
    }

    .card p {
      color: var(--gray);
      font-size: 15px;
    }

    /* PAYMENT */
    .payment {
      background: linear-gradient(135deg, #ff7a00, #ff9a3c);
      color: var(--black);
      text-align: center;
      border-radius: 24px;
      padding: 60px 30px;
    }

    .payment h2 {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .payment p {
      max-width: 700px;
      margin: auto;
      font-weight: 500;
    }

    /* FOOTER */
    footer {
      background: #060606;
      padding: 30px 20px;
      text-align: center;
      color: var(--gray);
      font-size: 14px;
    }

    footer span {
      color: var(--orange);
    }

    /* ANIMATION */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: 0.8s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }
    }

    .span-color{
       color: var(--orange);
    }

    #about-us .card {
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-us .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.25);
}
