:root {
  --primary-orange: #ff6b35;
  --primary-blue: #004e89;
  --secondary-orange: #ff8c61;
  --light-blue: #1a659e;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --dark-gray: #2c3e50;
  --medium-gray: #5d6d7e;
  --light-gray: #e8f4f8;
  --success: #28a745;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-orange);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 70px;
  min-height: 90vh;
  background:
    linear-gradient(135deg, rgba(0, 78, 137, 0.9), rgba(255, 107, 53, 0.8)),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--off-white), transparent);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: var(--secondary-orange);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-orange);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--primary-blue);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--primary-blue)
  );
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* About Section */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
}

.stat-label {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Vision Mission Values */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vmv-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: justify;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary-orange);
}

.vmv-card:nth-child(2) {
  border-top-color: var(--primary-blue);
}

.vmv-card:nth-child(3) {
  border-top-color: var(--success);
}

.vmv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.vmv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.vmv-card:nth-child(2) .vmv-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.vmv-card:nth-child(3) .vmv-icon {
  background: linear-gradient(135deg, var(--success), #20c997);
}

.vmv-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.vmv-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Programs Section */
.programs {
  background: linear-gradient(135deg, var(--light-gray), var(--off-white));
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.program-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.program-content {
  display: flex;
  flex-direction: column;
  height: 70%;
  padding: 1.5rem;
}

.program-content .btn {
  margin-top: auto;
  text-align: center;
}

.program-content h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.program-content p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-features i {
  color: var(--success);
}

.partners-slider {
  overflow: hidden;
  background: white;
  padding: 1.5rem 0;
  border-radius: 10px;
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollPartners 20s linear infinite;
}

.partners-track span {
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--primary-blue);
  white-space: nowrap;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Impact Page  */

.impact-hero {
  min-height: 60vh;
  background:
    linear-gradient(135deg, rgba(0, 78, 137, 0.82), rgba(255, 107, 53, 0.72)),
    url("../images/impactGallery/impact-stories.jpg")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.impact-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.impact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* INTRO SECTION */

.impact-intro {
  padding: 5rem 2rem;
  background: white;
}

.impact-intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.impact-intro img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.impact-intro-content h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.impact-intro-content p {
  color: var(--medium-gray);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* STATS */

.impact-stats {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #004e89, #1a659e);
  color: white;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.impact-stat-card:hover {
  transform: translateY(-8px);
}

.impact-stat-card h2 {
  font-size: 3rem;
  color: var(--secondary-orange);
  margin-bottom: 0.5rem;
}

/* GALLERY */

.gallery-section {
  padding: 5rem 2rem;
  background: #f8fbff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* STORY SECTION */

.impact-story {
  padding: 5rem 2rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/impactGallery/impact-stories.jpg")
      center/cover;
  color: white;
  text-align: center;
}

.impact-story h2 {
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.impact-story p {
  max-width: 900px;
  margin: auto;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* MODAL */

.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 85%;
  max-height: 85vh;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .impact-intro-container {
    grid-template-columns: 1fr;
  }

  .impact-hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .impact-hero h1 {
    font-size: 2.2rem;
  }

  .gallery-item img {
    height: 240px;
  }
}

/* Impact Section */
.impact {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: white;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.impact .section-header h2 {
  color: white;
}

.impact .section-header h2::after {
  background: var(--primary-orange);
}

.impact .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary-orange);
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Donation Section */
.donation {
  background: var(--off-white);
}

.donation-container.full-width {
  display: block;
  width: 100%;
}

.donation-info h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.donation-info > p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.donation-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.donation-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.donation-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.method-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.method-content h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.method-content p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.upi-box {
  background: #eef5fb;
  border: 1px solid #d0e3f1;
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary-blue);
  text-align: center;
  margin: 1rem 0;
  font-size: 0.7rem;
}

.upi-pay-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0.7rem 0;
  padding: 0.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.upi-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.copy-btn {
  width: 100%;
  padding: 0.7rem;
  border: none;
  background: var(--primary-blue);
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--primary-orange);
}

.copy-btn i {
  margin-right: 5px;
}

.copy-btn:active {
  transform: scale(0.95);
}

.bank-details {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 1rem;
  border-left: 4px solid var(--primary-blue);
}

.bank-details p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.bank-details strong {
  color: var(--primary-blue);
}

.qr-container {
    text-align: center;
    margin-top: 1rem;
}

.qr-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 12px;
    background: #fff;
    padding: 8px;

    animation: qrPulse 2s infinite;
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
}

@keyframes qrPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

.qr-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* QR Modal */

.qr-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9);

    justify-content: center;
    align-items: center;
}

.qr-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.25s ease;
}

.close-qr {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 40px;
    font-weight: bold;

    cursor: pointer;
}

.qr-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 768px) {
  .donation-methods {
    grid-template-columns: 1fr;
  }
}

.donation-method:nth-child(2) {
  text-align: center;
}

.donation-method:nth-child(2) .method-icon {
  margin: 0 auto 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.trust-badge i {
  color: var(--success);
}

/* Team Section */
.team {
  background: linear-gradient(to bottom, #f8fbff, #eef5fb);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;

  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-gray);
}

.team-card h3 {
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 0.3rem;
}

.designation {
  color: var(--primary-orange);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.8rem;
}

.message {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 0.8rem;
  flex-grow: 1;
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card .quote {
  margin-top: 1rem;
  font-style: italic;
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Testimonials */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.author-info h4 {
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--light-gray), var(--off-white));
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: white;
  padding: 4rem 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--secondary-orange);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .about-grid,
  .donation-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vmv-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Loading Animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--primary-blue);
}

/* Proivacy Policy */

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section p,
.policy-section ul {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.policy-section ul {
  padding-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

.last-updated {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-style: italic;
}

.highlight-box {
  background: var(--off-white);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-orange);
  border-radius: 8px;
  margin: 1.5rem 0;
}

.important-note {
  background: #fff3cd;
  border-left-color: #ffc107;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.important-note strong {
  color: #856404;
}

.info-box {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-orange);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.report-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 2px solid var(--light-gray);
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-orange);
}

.report-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: white;
  padding: 2rem;
  text-align: center;
}

.report-header h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.report-header .year {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.9;
}

.report-body {
  padding: 2rem;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .report-stats {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 8px;
}

.stat-item .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
}

.stat-item .label {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.download-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--primary-orange);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.3s;
}

.download-btn:hover {
  background: #e55a2b;
}

.download-btn i {
  margin-right: 0.5rem;
}

.transparency-section {
  background: var(--off-white);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.financial-summary {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.financial-summary h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.expense-chart {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.expense-item {
  text-align: center;
}

.expense-item .percentage {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary-orange) 0deg,
    var(--primary-orange) var(--deg),
    var(--light-gray) var(--deg)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d4edda;
  color: #155724;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin: 1rem 0;
}

.audit-badge i {
  color: var(--success);
}
