/* Hero Section */
.payment-hero-section {
  background: url('../../assets/img/New-Product/creditbg.jpg') no-repeat center center/cover;
  color: #ffffff;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 20px;
}

.payment-hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(10, 12, 27, 0.7); /* slightly deeper overlay */
  z-index: 1;
}

.payment-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.06);
  padding: 50px 35px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-hero-content h3 {
  color: #eb9e39;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.payment-hero-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.4;
}

.payment-hero-content p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .payment-hero-content h2 {
    font-size: 26px;
  }

  .payment-hero-content {
    padding: 35px 20px;
  }
}

/* Payment Details */
.payment-details .payment-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.payment-details .payment-content .payment-list {
  list-style: none;
  padding-left: 0;
}

.payment-details .payment-content .payment-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.7;
}

.payment-details .payment-content .payment-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e88e5;
  font-weight: bold;
}
/* General Section Styling */
.feature-section {
  background: rgb(255, 253, 247);
  color: #fff;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header Styling */
.feature-header {
  background-color: #fcf6ef;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 60px;
}

.feature-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color:#123C8A;
}

.feature-header p {
  color: #333233;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #c48019;
  padding: 30px 24px;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #123C8A;
}

.feature-card p {
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}

/* Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background-color: #123C8A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  perspective: 600px;
}

.icon-inner {
  color: white;
  font-size: 22px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

/* Flip effect on hover */
.feature-card:hover .icon-inner {
  transform: rotateY(180deg);
}


/* Responsive */
@media (max-width: 768px) {
  .payment-hero-content {
    padding: 25px 20px;
  }

  .payment-hero-content h2 {
    font-size: 26px;
  }

  .payment-details .row {
    flex-direction: column;
    text-align: center;
  }

  .payment-details .payment-img {
    margin-top: 20px;
  }
  
}
