* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  /* color: #fff; */
  overflow-x: hidden;
  /* overflow-y:hidden; */
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d5016;
}

.nav-logo i {
  color: rgb(74, 124, 89);
  margin-right: 10px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #007a5e;
}

.nav-link.active {
  color: #007a5e;
  font-weight: 600;
  border-bottom: 2px solid #007a5e;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    gap: 2rem;
    padding: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 998;
  }

  .nav-menu.active {
    display: flex;
  }
}


/* Donate Hero Section */

.donate-hero {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
  color: #fff;
  padding: 150px 0 80px;
  text-align: center;
}

.donate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.donate-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.donate-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Stats Grid */
.donation-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.donation-stat {
  text-align: center;
}

.donation-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.donation-stat .stat-label {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Donate Hero Responsiveness */
@media (max-width: 768px) {
  .donate-hero h1 {
    font-size: 2rem;
  }

  .donation-stats {
    padding: 2rem;
  }

}


/* Crypto Wallets Section */

.crypto-wallets {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.crypto-wallets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.crypto-wallets-header {
  text-align: center;
  margin-bottom: 4rem;
}

.crypto-wallets-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2d5016;
}

/* .crypto-wallets-header p {
  color: #4b5563;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
} */

.crypto-section {
  margin-bottom: 4rem;
}

.crypto-section h3 {
  font-size: 1.8rem;
  color: #2d5016;
  margin: 0px 0px 32px;
  border-bottom: 2px solid #4a7c59;
  padding: 0px 0px 8px;
}

.crypto-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /* margin-bottom: 3rem; */
}

.crypto-wallet-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.crypto-wallet-card:hover {
  transform: translateY(-5px);
}

.crypto-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0px 0px 24px;
}

.crypto-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.crypto-icon-bitcoin {
  background-color: #f7931a;
}

.crypto-icon-ethereum {
  background-color: #2775ca;
}

.crypto-icon-usdt {
  background-color: #26a17b;
}

.crypto-icon-usdc {
  background-color: #2775ca;
}

.crypto-info {
  display: block;
  color: rgb(51, 51, 51);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 25.6px;
}

.crypto-info h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #2d5016;
}

.crypto-info .network {
  font-size: 0.9rem;
  color: #666;
}

.wallet-address {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1rem;
}

.wallet-address label {
  font-weight: 600;
  color: #2d5016;
  /* font-size: 0.95rem; */
  margin-bottom: 0.5rem;
  display: block;
}

.address-container {
  border-radius: 10px;
  background: #f8f9fa;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.address-container code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  word-break: break-all;
  color: #333;
}

.address-container code:hover {
  cursor: pointer;
  transition: 0.2s;
  background-color: rgba(74, 124, 89, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  color: #111827;
}

.qr-code-section {
  /* margin-top: 1.5rem; */
  text-align: center;
}

.qr-code-section img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .qr-code-section p {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
} */

/* .qr-code-section small {
  color: #6b7280;
  font-size: 0.85rem;
} */


/* Donation Impact */


.donation-impact {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.donation-impact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.donation-impact h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d5016;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  /* max-width: 1000px;
  margin: 0 auto; */
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4a7c59;

}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.impact-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #4a7c59;
  margin-bottom: 1rem;
}

.impact-description {
  color: #666;
  line-height: 1.6;
}


/* Security-transparency Style */

.security-transparency {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.st-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.security-transparency h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #2d5016;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  /* max-width: 1200px;
  margin: 0 auto; */
}

.security-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* .security-item:hover {
  transform: translateY(-5px);
} */

.security-icon {
  font-size: 3rem;
  color: #4a7c59;
  margin-bottom: 1rem;
}

.security-item h3 {
  /* font-size: 1.4rem; */
  color: #2d5016;
  margin-bottom: 1rem;
}

.security-item p {
  /* font-size: 0.95rem; */
  color: #333;
  line-height: 1.6;
}

/* Donation Notes Style */

.donation-notes {
  padding: 80px 0;
  background: white;
}

.dn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.donation-notes h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 3rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.note-item {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
  padding: 2rem;
  border-radius: 15px;
}

.note-item h3 {
  color: #2d5016;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* .note-item i {
  color: #ff9800;
  font-size: 1.2rem;
} */

.note-item ul {
  list-style: none;
  padding: 0;
}

.note-item li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.note-item li::before {
  content: '•';
  color: #4a7c59;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-support {
  text-align: center;
  background: #4a7c59;
  color: white;
  padding: 2rem;
  border-radius: 15px;
}

.contact-support a {
  color: #fff;
  text-decoration: underline;
}

.contact-support a:hover {
  text-decoration: none;
}

/* Footer */

.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #4a7c59;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* .footer-section h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #00b894;
  margin-top: 8px;
} */

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 10px;
  color: #4a7c59;
}

.fa-hands-helping:before,
.fa-handshake-angle:before {
  content: "\f4c4";
}

/* .footer p {
  line-height: 1.6;
  font-size: 14px;
  color: white;
} */

.footer-section ul {
  list-style: none;
  /* padding: 0; */
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4a7c59;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: white;
}

/* .contact-info i {
  margin-right: 10px;
  color: #00b894;
} */

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* .footer-bottom-content p {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
} */

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: #00b894;
}

/* Footer Responsiveness */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Scroll To The Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgb(74, 124, 89);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.3s;
  pointer-events: none;
}