/* HEADER-SEC */
.header-sec {
  position: sticky;
  top: 0px;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--color-bg);
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 90px;
  height: 70px;
  object-fit: contain;
}

.donate-btn {
  padding: 10px 20px;
  background: var(--color-primary);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(25, 77, 116, 0.35);
}

.donate-btn:hover {
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 60%,
    #4c5fd3 100%
  );
  box-shadow: 0 10px 25px rgba(58, 76, 192, 0.35);
  transform: translateY(-2px);
}

/* FUNDRAISING-SEC */
.fundraiser-sec {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: var(--color-bg);
}
.fundraiser-sec h1 {
  text-transform: capitalize;
  color: var(--color-primary);
  margin: 20px 0 23px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
.big-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}
.wp-share-btn {
  margin-top: 10px;
  text-align: end;
}

.wp-share-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0dc143;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.wp-share-btn a i {
  font-size: 18px;
}

.wp-share-btn a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #1ebe5d, #25d366);
}
.mobile-only {
  display: none;
}
.fundraise-text {
  box-shadow: 0 6px 20px #0000001a;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  margin-top: 15px;
}
.fundraise-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}
.fundraise-text p {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 10px;
  text-align: left;
}
.coin-gif {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.fundraising-summary {
  margin-top: 20px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(25, 77, 116, 0.08);
}

.fundraising-summary .fund-amount {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.fundraising-summary .fund-amount .fund-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.fund-amount-btn {
  width: 100%;
  background: linear-gradient(135deg, #00ff99, #2979ff);
  border: 2px solid #e6ebf5;
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 1px #dfe4ee;
}

.fundraising-summary .goal {
  font-size: 14px;
  color: #6b7280;
  margin: 14px 0 10px;
  font-family: sans-serif;
}
.goal span {
  font-size: 22px;
  color: #000 !important;
  font-weight: 600;
}
.progress-bar {
  width: 100%;
  height: 12px;
  background: #eaf0fb;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.progress-bar .progress {
  height: 100%;
  background: linear-gradient(90deg, #2f3fb8, #3b82f6);
  border-radius: 20px;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--color-primary);
}
.stats i {
  margin-right: 4px;
}

.stats strong {
  font-size: 22px;
  color: #111827;
}

.btn-contribute {
  width: 100%;
  background: linear-gradient(90deg, #2f3fb8, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-contribute:hover {
  transform: translateY(-1px);
}

.big-img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
}

.big-img img {
  width: 100%;
  display: none;
  object-fit: cover;
}

.big-img img.active {
  display: block;
  animation: fade 0.8s ease-in-out;
}

/* @keyframes fade {
    from { opacity: 0; transform: scale(1.03); }
    to { opacity: 1; transform: scale(1); }
} */

/* RECEIPT-SECTION */
.receipt-sec {
  background: var(--color-secondary-bg);
  padding: 40px 0;
}
.subtitle {
  font-size: 14px;
  color: var(--color-text);
  margin-top: 4px;
}
.receipt-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.receipt-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font-size: 14px;
}
.receipt-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.receipt-btn:hover {
  background: var(--color-accent);
}
/* CONTRIBUTE DISTRIC-SEX */
.contributors-sec,
.district-sec {
  padding: 50px 0;
  background: #fff;
}
.title {
  text-align: left;
  margin-bottom: 30px;
}
.title h2 {
  color: var(--color-secondary);
  font-size: 28px;
  gap: 10px;
}
.title i {
  color: var(--color-primary);
}
.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 10px;
}
.rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-tertiary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-primary);
  margin-right: 12px;
}
.card-info {
  flex: 1;
  margin-left: 10px;
}
.name,
.district-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}
.district {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 2px;
}
.amount {
  font-size: 18px;
  font-weight: 700;
  background-color: var(--color-white);
  color: var(--color-secondary);
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  font-family: sans-serif;
}

/* FOOTER */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 5px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.bottom-nav .nav-item {
  text-decoration: none;
  color: var(--color-white);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.bottom-nav .nav-item i {
  font-size: 18px;
  margin-bottom: 4px;
}

.bottom-nav .nav-item:hover {
  color: var(--color-secondary);
  font-weight: 600;
}
.bottom-nav .nav-item.active {
  color: var(--color-secondary);
  font-weight: 600;
}
/* DONATION */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 520px;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup-box h2 {
  margin-bottom: 20px;
  text-align: left;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 18px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.input-group label {
  font-size: 14px;
  color: #555;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  color: #374151;
  outline: none;
  margin-bottom: 16px;
}
.input-group input::placeholder,
.input-group textarea::placeholder {
  font-size: 14px;
  color: #374151;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.continue-btn {
  width: 100%;
  background: linear-gradient(135deg, #00ff99, #2979ff);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.continue-btn {
  opacity: 0.85;
}
/* CONTACT-SEC */
.contact-sec {
  background: var(--color-secondary-bg);
  padding: 40px 0;
}
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 22px;
  color: var(--color-primary);
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #e8f6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--color-secondary);
  font-size: 18px;
}

.text span {
  font-size: 13px;
  color: #777;
}

.text strong {
  display: block;
  font-size: 16px;
  color: var(--color-primary);
}

.contact-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-message {
  background: var(--color-secondary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-call {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
}
.mandatory{
  color: var(--color-primary);
  margin-left: 6px;
  font-size: 14px;
  font-weight: bold;
}