/* Payment banner section  */
.payment-hero-section {
  position: relative;
  height: 50vh;   /* ✅ Fixed height everywhere */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.payment-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.payment-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.payment-slide.active {
  opacity: 1;
  z-index: 1;
}

.payment-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.payment-hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.payment-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.payment-hero-buttons .payment-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.payment-btn-primary {
  background: #ffcc00;
  color: #000;
  border: 2px solid transparent;
}

.payment-btn-primary:hover {
  background: #fff;
  color: #000;
  border-color: #ffcc00;
}

.payment-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.payment-btn-secondary:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .payment-hero-title {
    font-size: 2rem;
  }
  .payment-hero-subtitle {
    font-size: 1rem;
  }
  .payment-hero-buttons .payment-btn {
    padding: 10px 20px;
    /* margin-top: 10px; */
  }
}

/* ✅ Mobile pe bhi same 50vh height rahegi */
@media (max-width: 576px) {
  .payment-hero-section {
    height: 50vh;
    padding: 20px;
    text-align: center;
  }
  .payment-hero-content {
    max-width: 100%;
  }
}

/* payment section  */

.pay-section-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 20px;
      background: #f9f9f9;
    }

    .pay-section-left,
    .pay-section-right {
      flex: 1 1 400px;
      max-width: 550px;
      padding: 20px;
      box-sizing: border-box;
    }

    .qr-display-box {
      text-align: center;
      border-left: 10px solid #800000;
      border-right: 10px solid #800000;
      padding: 25px 15px;
      background: #fff;
      border-radius: 5px;
    }

    .qr-display-box img.logo1 {
      width: 100px;
      margin-bottom: 10px;
    }

    .qr-display-box h2 {
      font-size: 20px;
      margin: 10px 0 5px;
      font-weight: bold;
    }

    .qr-display-box p {
      font-size: 14px;
      color: #333;
      margin: 5px 0;
    }

    .qr-display-box img.qr {
      width: 200px;
      margin: 20px 0;
    }

    .qr-caption {
      font-weight: bold;
      font-size: 16px;
    }

    .form-section-title {
      text-align: center;
      font-size: 15px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #444;
    }

    .form-box-container {
      background: #eee;
      padding: 25px;
      border-radius: 5px;
    }

    .form-field {
      margin-bottom: 18px;
    }

    .form-field label {
      display: block;
      font-size: 13px;
      margin-bottom: 5px;
      text-transform: uppercase;
      font-weight: bold;
      color: #333;
    }

    .form-field input {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 3px;
    }

    .form-submit-button {
      background: #000;
      color: #fff;
      font-weight: bold;
      padding: 12px 25px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      display: block;
      margin: 0 auto;
      transition: background 0.3s ease;
    }

    .form-submit-button:hover {
      background: #800000;
    }

    @media (max-width: 1024px) {
      .pay-section-wrapper {
        padding: 30px 15px;
      }

      .qr-display-box img.qr {
        width: 160px;
      }
    }

    @media (max-width: 600px) {
      .pay-section-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .pay-section-left,
      .pay-section-right {
        max-width: 100%;
        padding: 10px;
      }

      .qr-display-box img.qr {
        width: 140px;
      }

      .form-submit-button {
        width: 100%;
      }
    }