/* ================= BODY ================= */

body {
  background-color: rgb(233, 241, 233);
  font-family: "Outfit", sans-serif;
  margin: 0;
}

/* ================= DONATION BANNER ================= */

.donation-banner-section {
  width: 100%;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(41, 110, 86, 0.95),
    rgba(22, 60, 48, 0.95)
  );
}

.donation-banner-section::before,
.donation-banner-section::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: url("img/islamic-pattern2.png") center/contain no-repeat;
  opacity: 0.06;
  animation: donationRotate 60s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.donation-banner-section::before {
  top: -200px;
  left: -200px;
}

.donation-banner-section::after {
  bottom: -200px;
  right: -200px;
  animation-direction: reverse;
}

@keyframes donationRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.donation-banner-content {
  position: relative;
  z-index: 5;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.donation-banner-title {
  font-size: clamp(32px, 5vw, 58px);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.donation-banner-subtext {
  font-size: clamp(16px, 2vw, 22px);
  opacity: 0.95;
}

/* ================= PAGE TITLE ================= */

.page-title {
  text-align: center;
  margin: 80px 0 30px;
  font-size: 36px;
  font-weight: 700;
  color: #296e56;
}

.page-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #d4af37, #296e56);
  margin: 15px auto 0;
  border-radius: 3px;
}

/* ================= DONATION PAGE ================= */

.donation-page {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 20px;
  text-align: center;
}

.donation-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.donation-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ================= DONATION CARD ================= */

.donation-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.donation-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #296e56;
}

.donation-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.donation-card img {
  width: 180px;
  margin: 10px auto;
  display: block;
}

.holographic-card {
  position: relative;
  overflow: hidden;
}

.holographic-card:hover::before {
  transform: translateX(100%);
}

.holographic-card:hover {
  box-shadow:
    0 8px 22px #1f5744,
    0 0 25px #d4af37;
}

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }
}

/* ================= DONATION BUTTON ================= */

.donate-buttons {
  margin-top: 25px;
  padding: 14px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #d4af37, #296e56);
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.donate-buttons:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Subtle Glow Animation */
.donation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition: box-shadow 0.4s ease;
}

.donation-card:hover::after {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* Mobile */
@media (max-width: 600px) {
  .donation-methods {
    gap: 25px;
  }

  .donation-card {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }
}

.donate-buttons {
  position: relative;
  z-index: 3;

  background: linear-gradient(90deg, #d4af37, #296e56);
  color: white;
  font-weight: 700;
}

.disabled-btn {
  background: #bdbdbd !important;
  color: #666 !important;
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(100%);
}

.disabled-btn:hover {
  transform: none;
  box-shadow: none;
}

.donate-button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #296e56;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.donate-buttonsss {
  margin-top: 20px; /* space from the Target text */
  width: 80%; /* optional: control button width */
  max-width: 250px;
  padding: 12px;
  background: linear-gradient(90deg, #2b9b5ace);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
  line-height: 1.5;
}

.donate-button:hover {
  background: #1f5744;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }

  .card-row {
    flex-direction: column;
  }
}

.heading-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px; /* Adjust this to widen or reduce gap */
  margin-top: 40px;
  flex-wrap: wrap;
}

/*HEADING FRAME*/

.heading-frame {
  position: relative;
  width: 350px;
  height: 500px;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column; /* stack vertically */
  justify-content: flex-start; /* align from top */
  align-items: center; /* center horizontally */
  text-align: center;
  padding-top: 40px; /* optional: add some top spacing */
  border: 4px solid #296e56;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay for readability */
.heading-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.heading-frame h2 {
  margin-bottom: 20px; /* space between heading and button */
  line-height: 1.5;
  position: relative;
  z-index: 2;
  color: white; /* keep text visible on overlay */
}

/* ===============================
   DIFFERENT BACKGROUND IMAGES
================================= */

.frame-one {
  background-image: url("../../uploads/death_1777973764_surau-solat-area-updated.jpg");
}

.frame-two {
  background-image: url("../../uploads/death_1779167222_surau-toilet-updated.jpg");
}

.frame-three {
  background-image: url("../../uploads/1779166454_surau-ruang-solat-luar-updated.jpg");
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 768px) {
  .heading-container {
    flex-direction: column;
    gap: 30px;
  }

  .heading-frame {
    width: 90%;
    height: 400px;
  }
}

/* Button upgrade */
.donate-buttons {
  margin-top: 25px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #296e56;
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.donate-buttons:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Subtle Glow Animation */
.donation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition: box-shadow 0.4s ease;
}

.donation-card:hover::after {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.donate-button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #296e56;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.donate-buttonsss {
  margin-top: 20px;
  width: 80%;
  max-width: 250px;
  padding: 12px;
  background: #296e56;
  font-family: "Outfit", sans-serif;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Receipt specific styling */
.receipt-container {
  max-width: 500px;
  margin: 60px auto 80px;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.receipt-header {
  font-size: 28px;
  font-weight: 700;
  color: #296e56;
  margin-bottom: 15px;
}

.receipt-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #296e56);
  margin: 12px auto;
  border-radius: 3px;
}

.receipt-details p {
  font-size: 16px;
  color: #444;
  margin: 12px 0;
}

.receipt-details strong {
  color: #1b7f5f;
}

.thank-you {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #296e56;
}

.back-button {
  margin-top: 30px;
  padding: 12px 25px;
  background: #296e56;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.back-button:hover {
  background: #1f5744;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .receipt-container {
    padding: 25px 20px;
  }

  .receipt-header {
    font-size: 24px;
  }
}

/* HERO */
.donation-hero {
  position: relative;
  height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://hatcon.com/cdn/shop/files/11_062a3341-ff31-48a7-8770-67dd97566f79.jpg?v=1683188026")
      center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.donation-Thero {
  position: relative;
  height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://cdn.impiana.my/2025/06/Untitled-design205-696x364.jpg.webp")
      center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.donation-Uhero {
  position: relative;
  height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://img.turkiyetoday.com/images/2024/08/Turkey-Seoul-mosque-seoul-central-mosque.jpg")
      center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-content {
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donation-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.donation-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* PROGRESS UPGRADE */
.progress-wrapper {
  max-width: 800px;
  margin: 0 auto 60px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.completed-badge {
  background: #4caf50;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
}

.progress-bg {
  width: 100%;
  height: 55px;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 20px;
  background: #296e56;
  transition: width 1.5s ease-in-out;
}

.progress-bg h3.goal,
.progress-bg h3.raised {
  font-family: "Outfit", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 78px;
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline;
  color: #fff;
}

.progress-bg h3.raised {
  color: #fff;
  margin: 14px 25px 0 50px;
  padding: 0 25px 0 0;
}

.progress-bg h3.goal {
  color: #838282;
  text-align: center;
}

.progress-bg h3.goal {
  float: right;
  display: inline;
  padding: 0 25px 0 0;
  text-align: center;
}

body .progress-bg div {
  animation: progress-bar 2s ease forwards;
}

@keyframes progress-bar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.progress-wrapper {
  margin-top: 60px;
  text-align: center;
}

.goal {
  margin-top: 15px;
  font-size: 20px;
  color: #555;
}

.arabic-text {
  font-size: 22px;
  margin-bottom: 15px;
  direction: rtl;
}

.page-title {
  text-align: center;
  margin: 80px 0 30px;
  font-size: 36px;
  font-weight: 700;
  color: #296e56;
}

.page-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #d4af37, #296e56);
  margin: 15px auto 0;
  border-radius: 3px;
}

.donation-page {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 20px;
  text-align: center;
}

.donation-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.donation-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===============================
   DONATION METHODS - UPGRADED
================================= */

.donation-methods {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 20px; /* space between cards */
  flex-wrap: wrap; /* makes it responsive */
}

.donation-card {
  width: 300px; /* control card size */
}

/* CARD BASE */
.donation-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* HOVER EFFECT */
.donation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ICON STYLE */
.donation-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #296e56;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* TEXT */
.donation-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* QR IMAGE */
.donation-card img {
  width: 200px;
  margin: 15px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.donation-card img:hover {
  transform: scale(1.05);
}

/* PRIMARY CARD (Card Payment Highlight) */
.donation-card:last-child {
  background: white;
}

.donation-card:last-child h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #296e56;
}

.donation-card:last-child p {
  color: #444;
  font-size: 18px;
}

.donation-card:last-child .donate-buttons {
  background: #296e56;
  color: white;
}

/* Button upgrade */
.donate-buttons {
  margin-top: 25px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #296e56;
  color: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.donate-buttons:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Subtle Glow Animation */
.donation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition: box-shadow 0.4s ease;
}

.donation-card:hover::after {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* Mobile */
@media (max-width: 600px) {
  .donation-methods {
    gap: 25px;
  }

  .donation-card {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }
}

.donate-button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #296e56;
  font-family: "Outfit", sans-serif;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.donate-buttonsss {
  margin-top: 20px; /* space from the Target text */
  width: 80%; /* optional: control button width */
  max-width: 250px;
  padding: 12px;
  background: #296e56;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-title::afters {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #296e56);
  margin: 12px auto;
  border-radius: 3px;
}

.donation-pages {
  max-width: 500px;
  margin: 0 auto 80px;
  padding: 20px;
  text-align: center;
}

.donation-intros {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.donation-form-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.donation-form-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.donation-form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #296e56;
}

.donation-form input {
  width: 100%;
  padding: 12px 15px;
  margin-top: 8px;
  border: 2px solid #296e56;
  border-radius: 8px;
  font-size: 16px;
  transition:
    border 0.3s ease,
    box-shadow 0.3s ease;
}

.donation-form input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  outline: none;
}

.card-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.card-col {
  flex: 1;
}

.donate-buttons {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background: #296e56;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    transform 0.2s ease;
}

.donate-button:hover {
  background: #1f5744;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }

  .card-row {
    flex-direction: column;
  }
}

/* Receipt specific styling */
.receipt-container {
  max-width: 500px;
  margin: 60px auto 80px;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.receipt-header {
  font-size: 28px;
  font-weight: 700;
  color: #296e56;
  margin-bottom: 15px;
}

.receipt-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #296e56);
  margin: 12px auto;
  border-radius: 3px;
}

.receipt-details p {
  font-size: 16px;
  color: #444;
  margin: 12px 0;
}

.receipt-details strong {
  color: #1b7f5f;
}

.thank-you {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #296e56;
}

.back-button {
  margin-top: 30px;
  padding: 12px 25px;
  background: #296e56;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.back-button:hover {
  background: #1f5744;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .receipt-container {
    padding: 25px 20px;
  }

  .receipt-header {
    font-size: 24px;
  }
}

/* Container for multiple buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Style for each button inside */
.action-buttons button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #296e56;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.action-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: #1f5744;
}

/* Focus effect for accessibility */
.action-buttons button:focus {
  outline: 2px solid #d4af37;
  outline-offset: 3px;
}

/* Optional: small screens */
@media (max-width: 480px) {
  .action-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .action-buttons button {
    width: 100%; /* Full width buttons on mobile */
  }
}

/* ================= PRAYER TIMES ROTATING PATTERN ================= */

.prayertimes-banner-section {
  width: 100%;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(41, 110, 86, 0.95),
    rgba(22, 60, 48, 0.95)
  );
  overflow: hidden;
}

.prayertimes-banner-section::before,
.prayertimes-banner-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url("img/islamic-pattern2.png") center/contain no-repeat;
  opacity: 0.08;
  animation: prayertimesRotate 40s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.prayertimes-banner-section::before {
  top: -180px;
  left: -180px;
}

.prayertimes-banner-section::after {
  bottom: -180px;
  right: -180px;
  animation-direction: reverse;
}

@keyframes prayertimesRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.prayertimes-banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 5;
}

.prayertimes-banner-title {
  font-size: clamp(32px, 5vw, 60px);
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  font-weight: 600;
}

.prayertimes-banner-subtext {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 40px;
  color: #fff;
}

.prayertimes-cta-btn {
  background: #fff;
  color: #296e56;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.prayertimes-cta-btn:hover {
  background: #1f5744;
  color: #fff;
}

/* ================= CLEAN HEADING CARD ================= */

.heading-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes button to bottom */
  align-items: center;
  text-align: center;
  padding: 30px 20px;
}

/* Wrap content nicely */
.heading-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

/* Title */
.heading-frame h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

/* Details section */
.heading-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Target styling */
.target {
  font-size: 18px;
  font-weight: 600;
  color: #d4af37; /* gold highlight */
}

.raised {
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

/* Date styling */
.date {
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

/* Button spacing fix */
.donate-buttonsss {
  margin-top: auto;
}

.heading-frame:hover {
  transform: translateY(-8px);
  transition: 0.3s ease;
}

/* ================= CARD PROGRESS ================= */

.progress-card {
  width: 100%;
  margin-top: 10px;
}

/* top text */
.progress-top {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

/* track */
.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  overflow: hidden;
}

/* fill */
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2db838, #1a5715);
  border-radius: 20px;
  transition: width 1.2s ease-in-out;
}

/* ================= WHY DONATION SECTION ================= */

.donation-info {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.info-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #296e56;
  margin-bottom: 40px;
  position: relative;
}

.info-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #b8961e);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* GRID */
.info-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.info-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(41, 110, 86, 0.08);
}

.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ICON */
.info-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

/* TEXT */
.info-box h4 {
  font-size: 18px;
  color: #296e56;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

input[type="file"] {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  color: white;
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.amount-btn {
  padding: 14px;
  border: none;
  border-radius: 20px;
  background: #e9e9e9;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
}

.amount-btn[data-amount="10"] {
  color: #444;
}

.amount-btn[data-amount="30"] {
  color: #444;
}

.amount-btn[data-amount="50"] {
  color: #444;
}

.amount-btn[data-amount="100"] {
  color: #444;
}

.amount-btn:hover {
  background: #1f5744;
  color: white;
}

.amount-btn.active {
  background: #296e56;
  color: white;
}

/* ================= PRAYER TIMES ROTATING PATTERN ================= */

.prayertimes-banner-section {
  width: 100%;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(41, 110, 86, 0.95),
    rgba(22, 60, 48, 0.95)
  );
  overflow: hidden;
}

.prayertimes-banner-section::before,
.prayertimes-banner-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url("img/islamic-pattern2.png") center/contain no-repeat;
  opacity: 0.08;
  animation: prayertimesRotate 40s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.prayertimes-banner-section::before {
  top: -180px;
  left: -180px;
}

.prayertimes-banner-section::after {
  bottom: -180px;
  right: -180px;
  animation-direction: reverse;
}

@keyframes prayertimesRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.prayertimes-banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 5;
}

.prayertimes-banner-title {
  font-size: clamp(32px, 5vw, 60px);
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  font-weight: 600;
}

.prayertimes-banner-subtext {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 40px;
  color: #fff;
}

.prayertimes-cta-btn {
  background: #fff;
  color: #296e56;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.prayertimes-cta-btn:hover {
  background: #296e56;
  color: #fff;
}
