* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vend Sans", sans-serif;
}

/* Hero Section */
.hero {
  background: url("/images/shiva.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: white;
  padding: 150px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  filter: blur(40px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(46, 204, 113, 0.12);
  border-radius: 50%;
  animation: float-reverse 8s ease-in-out infinite;
  z-index: 1;
  filter: blur(40px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 84px;
  margin-bottom: 20px;
  font-weight: 900;
  color: white;
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
  animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-highlight {
  color: #00ff00;
  display: block;
  text-shadow:
    0 0 5px rgba(0, 255, 0, 0.6),
    0 0 10px rgba(0, 255, 0, 0.4);
  animation: glowGreenBright 2s ease-in-out infinite;
  font-weight: 900;
  letter-spacing: 3px;
}

@keyframes glowGreenBright {
  0%,
  100% {
    color: #00ff00;
    text-shadow:
      0 0 5px rgba(0, 255, 0, 0.6),
      0 0 10px rgba(0, 255, 0, 0.4);
    transform: scale(1);
  }

  50% {
    color: #00ff66;
    text-shadow:
      0 0 10px rgba(0, 255, 0, 0.8),
      0 0 20px rgba(0, 255, 0, 0.6);
    transform: scale(1.05);
  }
}

.hero h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 25px;
  font-weight: 600;
  opacity: 0.98;
  animation: fadeInAnim 1.2s ease-out 0.3s both;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInAnim {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.98;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.8;
  animation: fadeInAnim 1.4s ease-out 0.5s both;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInAnim 1.6s ease-out 0.7s both;
}

.btn-primary {
  background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
  color: #2ecc71;
  padding: 16px 50px;
  border: 2px solid #2ecc71;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 204, 113, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
  background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
  border: 2px solid #27ae60;
  color: #27ae60;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary.donate-primary {
  background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.35);
}

.btn-primary.donate-primary:hover {
  box-shadow: 0 18px 50px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  padding: 16px 50px;
  border: 3px solid white;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(46, 204, 113, 0.3);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
  color: #2ecc71;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.btn-secondary:hover::before {
  left: 100%;
}

/* Mission Section */
.mission {
  background: linear-gradient(
    135deg,
    #f0f8f5 0%,
    #ffffff 50%,
    #f0f8f5 100%
  );
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.mission::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float-reverse 10s ease-in-out infinite;
  z-index: 0;
}

.mission-header {
  font-size: 30px;
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.mission-subtitle {
  font-size: 50px;
  color: #2ecc71;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease-out;
  display: inline-block;
  background: linear-gradient(90deg, #2ecc71, #27ae60, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #1a5d4d;
  font-weight: 900;
  animation: fadeInScale 0.8s ease-out 0.1s both;
  letter-spacing: 2px;
  line-height: 1.2;
}

.mission-description {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 0.5px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.index-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfa 100%);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 6px solid #2ecc71;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.7s ease-out both;
}

.index-card:nth-child(1) {
  animation-delay: 0.1s;
  border-top-color: #16a34a;
}

.index-card:nth-child(2) {
  animation-delay: 0.2s;
  border-top-color: #16a34a;
}

.index-card:nth-child(3) {
  animation-delay: 0.3s;
  border-top-color: #16a34a;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.index-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.index-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.index-card:hover {
  transform: translateY(-20px) scale(1.02) rotateX(-5deg);
  box-shadow:
    0 30px 60px rgba(46, 204, 113, 0.3),
    0 0 0 1px rgba(46, 204, 113, 0.1);
  border-top: 6px solid;
}

.index-card:nth-child(1):hover {
  border-top-color: #16a34a;
  box-shadow:
    0 30px 60px rgba(22, 163, 74, 0.3),
    0 0 0 1px rgba(22, 163, 74, 0.1);
}

.index-card:nth-child(2):hover {
  border-top-color: #16a34a;
  box-shadow:
    0 30px 60px rgba(22, 163, 74, 0.3),
    0 0 0 1px rgba(22, 163, 74, 0.1);
}

.index-card:nth-child(3):hover {
  border-top-color: #16a34a;
  box-shadow:
    0 30px 60px rgba(22, 163, 74, 0.3),
    0 0 0 1px rgba(22, 163, 74, 0.1);
}

.index-card:hover::before {
  opacity: 1;
}

.index-card:hover::after {
  opacity: 1;
  top: -30%;
  right: -30%;
}

.index-card-icon {
  font-size: 70px;
  margin-bottom: 25px;
  animation: bounceIconIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 153, 255, 0.1) 0%,
    rgba(46, 204, 113, 0.1) 100%
  );
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
}

.index-card:nth-child(1) .index-card-icon {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.15) 0%,
    rgba(0, 153, 255, 0.05) 100%
  );
  color: #16a34a;
}

.index-card:nth-child(2) .index-card-icon {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.15) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  color: #16a34a;
}

.index-card:nth-child(3) .index-card-icon {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.15) 0%,
    rgba(22, 163, 74, 0.05) 100%
  );
  color: #16a34a;
}

.index-card:hover .index-card-icon {
  animation: scaleIconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 20px 50px rgba(46, 204, 113, 0.4);
}

@keyframes bounceIconIn {
  0% {
    opacity: 0;
    transform: scale(0) rotateY(360deg);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotateY(0);
  }
}

@keyframes scaleIconPop {
  0% {
    transform: scale(1) rotate(10deg);
  }

  50% {
    transform: scale(1.25) rotate(-5deg);
  }

  100% {
    transform: scale(1.15) rotate(10deg);
  }
}

.index-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a5d4d;
  font-weight: 900;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.index-card:nth-child(1) h3 {
  color: #16a34a;
}

.index-card:nth-child(2) h3 {
  color: #16a34a;
}

.index-card:nth-child(3) h3 {
  color: #16a34a;
}

.index-card:hover h3 {
  transform: translateX(5px);
  font-size: 30px;
}

.index-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  letter-spacing: 0.3px;
}

.index-card:hover p {
  color: #444;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .mission h2 {
    font-size: 42px;
  }

  .mission-description {
    font-size: 18px;
  }

  .index-card {
    padding: 50px 30px;
  }

  .index-card h3 {
    font-size: 24px;
  }

  .index-card p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .mission {
    padding: 80px 30px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mission h2 {
    font-size: 36px;
  }

  .mission-description {
    font-size: 16px;
  }

  .index-card {
    padding: 40px 25px;
  }

  .index-card h3 {
    font-size: 22px;
  }

  .index-card p {
    font-size: 14px;
  }

  .index-card-icon {
    font-size: 50px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .mission {
    padding: 60px 20px;
  }

  .mission h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .mission-description {
    font-size: 14px;
  }

  .index-card {
    padding: 35px 20px;
  }

  .index-card h3 {
    font-size: 20px;
  }

  .index-card p {
    font-size: 13px;
  }

  .index-card-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }
}

/* Impact Section */
.impact {
  background: linear-gradient(
    135deg,
    #f0f8f5 0%,
    #ffffff 50%,
    #f0f8f5 100%
  );
  color: white;
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.impact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
  filter: blur(50px);
}

.impact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float-reverse 10s ease-in-out infinite;
  z-index: 0;
  filter: blur(50px);
}

.impact-container {
  background: url("/images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  border-radius: 25px;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  box-shadow:
    0 30px 80px rgba(46, 204, 113, 0.3),
    0 0 0 1px rgba(46, 204, 113, 0.2);
  border: 3px solid rgba(46, 204, 113, 0.3);
  animation: slideInBoxContainer 0.8s
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.impact-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
  filter: blur(40px);
}

.impact-container::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float-reverse 10s ease-in-out infinite;
  z-index: 0;
  filter: blur(40px);
}

@keyframes slideInBoxContainer {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
    box-shadow: 0 0 0 rgba(46, 204, 113, 0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow:
      0 30px 80px rgba(46, 204, 113, 0.3),
      0 0 0 1px rgba(46, 204, 113, 0.2);
  }
}

.impact-header {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
  animation: slideInDown 0.6s ease-out;
}

.impact h2 {
  font-size: 56px;
  margin-bottom: 15px;
  color: #2ecc71;
  font-weight: 900;
  animation: fadeInScale 0.8s ease-out 0.1s both;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.impact-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.2s both;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.stat {
  padding: 50px 35px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  border: 2px solid rgba(46, 204, 113, 0.4);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.7s ease-out both;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.stat:nth-child(1) {
  animation-delay: 0.1s;
  border-color: rgba(0, 153, 255, 0.6);
}

.stat:nth-child(2) {
  animation-delay: 0.2s;
  border-color: rgba(37, 99, 235, 0.6);
}

.stat:nth-child(3) {
  animation-delay: 0.3s;
  border-color: rgba(22, 163, 74, 0.6);
}

.stat:nth-child(4) {
  animation-delay: 0.4s;
  border-color: rgba(255, 152, 0, 0.6);
}

.stat::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.3) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: 18px;
}

.stat:hover {
  transform: translateY(-30px) scale(1.12) rotateY(8deg);
  background: rgba(255, 255, 255, 0.25);
  filter: brightness(1.4);
  box-shadow:
    0 40px 100px rgba(46, 204, 113, 0.6),
    0 0 0 3px rgba(46, 204, 113, 0.8),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.8);
  animation: pulseCardBorder 0.6s ease-out;
}

.stat:nth-child(1):hover {
  background: rgba(0, 153, 255, 0.25);
  border-color: #0099ff;
  box-shadow:
    0 40px 100px rgba(0, 153, 255, 0.7),
    0 0 0 3px rgba(0, 153, 255, 0.9),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat:nth-child(2):hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
  box-shadow:
    0 40px 100px rgba(37, 99, 235, 0.7),
    0 0 0 3px rgba(37, 99, 235, 0.9),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat:nth-child(3):hover {
  background: rgba(22, 163, 74, 0.25);
  border-color: #16a34a;
  box-shadow:
    0 40px 100px rgba(22, 163, 74, 0.7),
    0 0 0 3px rgba(22, 163, 74, 0.9),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat:nth-child(4):hover {
  background: rgba(255, 152, 0, 0.25);
  border-color: #ff9800;
  box-shadow:
    0 40px 100px rgba(255, 152, 0, 0.7),
    0 0 0 3px rgba(255, 152, 0, 0.9),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat:hover::before {
  opacity: 1;
  top: -20%;
  left: -20%;
}

.stat:hover::after {
  opacity: 1;
}

@keyframes pulseCardBorder {
  0% {
    box-shadow:
      0 40px 100px rgba(46, 204, 113, 0.6),
      0 0 0 0px rgba(46, 204, 113, 0.8);
  }

  50% {
    box-shadow:
      0 40px 100px rgba(46, 204, 113, 0.6),
      0 0 0 6px rgba(46, 204, 113, 0.5);
  }

  100% {
    box-shadow:
      0 40px 100px rgba(46, 204, 113, 0.6),
      0 0 0 3px rgba(46, 204, 113, 0.8),
      inset 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

.stat h3 {
  font-size: 72px;
  color: #2ecc71;
  margin-bottom: 15px;
  font-weight: 900;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
  animation: countUp 0.8s ease-out both;
  text-shadow:
    0 4px 20px rgba(46, 204, 113, 0.6),
    0 0 10px rgba(46, 204, 113, 0.4);
  letter-spacing: 2px;
}

.stat:nth-child(1) h3 {
  color: #bf60aa;
  text-shadow:
    0 4px 20px rgba(209, 91, 179, 0.6),
    0 0 10px rgba(0, 153, 255, 0.4);
}

.stat:nth-child(2) h3 {
  color: #2563eb;
  text-shadow:
    0 4px 20px rgba(37, 99, 235, 0.6),
    0 0 10px rgba(37, 99, 235, 0.4);
}

.stat:nth-child(3) h3 {
  color: #16a34a;
  text-shadow:
    0 4px 20px rgba(22, 163, 74, 0.6),
    0 0 10px rgba(22, 163, 74, 0.4);
}

.stat:nth-child(4) h3 {
  color: #ff9800;
  text-shadow:
    0 4px 20px rgba(255, 152, 0, 0.6),
    0 0 10px rgba(255, 152, 0, 0.4);
}

.stat:hover h3 {
  font-size: 92px;
  transform: scale(1.2) rotate(-8deg) translateY(-10px);
  filter: drop-shadow(0 0 30px rgba(46, 204, 113, 1));
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.3);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat p {
  font-size: 19px;
  opacity: 0.99;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat:hover p {
  font-size: 22px;
  color: #2ecc71;
  transform: translateY(-8px);
}

.stat:nth-child(1):hover p {
  color: #0099ff;
}

.stat:nth-child(2):hover p {
  color: #2563eb;
}

.stat:nth-child(3):hover p {
  color: #16a34a;
}

.stat:nth-child(4):hover p {
  color: #ff9800;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .impact-container {
    padding: 60px 40px;
  }

  .impact h2 {
    font-size: 42px;
  }

  .stat h3 {
    font-size: 56px;
  }

  .stat:hover h3 {
    font-size: 72px;
  }

  .stat p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .impact {
    padding: 80px 30px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-container {
    padding: 50px 30px;
    border-radius: 18px;
  }

  .impact h2 {
    font-size: 36px;
  }

  .stat {
    padding: 40px 25px;
  }

  .stat h3 {
    font-size: 48px;
  }

  .stat:hover h3 {
    font-size: 62px;
  }

  .stat p {
    font-size: 15px;
  }

  .stat:hover p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .impact {
    padding: 60px 20px;
  }

  .impact-container {
    padding: 40px 20px;
    border-radius: 15px;
  }

  .impact h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .impact-subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .stat {
    padding: 30px 20px;
  }

  .stat h3 {
    font-size: 40px;
  }

  .stat:hover h3 {
    font-size: 54px;
  }

  .stat p {
    font-size: 13px;
  }

  .stat:hover p {
    font-size: 15px;
  }
}

/* Journey Section */
/* JOURNEY SECTION NEW ANIMATED DESIGN */
.journey {
  position: relative;
  padding: 800px 50px 300px;
  background: linear-gradient(135deg, #f2fff8, #ffffff);
  text-align: center;
  overflow: hidden;
}

/* CENTER LOGO */
.journey-logo-container {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  z-index: 5;
}

.journey-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 50px rgba(46, 204, 113, 0.3);
  animation: floatLogo 6s ease-in-out infinite;
}

/* TITLE */
.journey-title {
  font-size: 3.8rem;
  color: #00a651;
  font-weight: 700;
  text-shadow: 0px 6px 20px rgba(0, 166, 81, 0.3);
  margin-bottom: 30px;
}

/* PARAGRAPH */
.journey-text {
  color: #0f6938;
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 500;
  animation: fadeUp 1.6s ease-out;
}

/* BUTTON */
.btn-journey {
  font-size: 1.4rem;
  padding: 18px 50px;
  background: linear-gradient(135deg, #00c853, #00a86b);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;

  box-shadow: 0 15px 40px rgba(0, 201, 84, 0.32);
  transition: 0.3s ease;
}

/* HOVER EFFECT – MORE ANIMATED & COLORFUL */
.btn-journey:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #00e676, #00c853);
  box-shadow: 0 20px 50px rgba(0, 230, 118, 0.45);
}

/* CLICK EFFECT */
.btn-journey:active {
  transform: scale(0.96);
}

/* ANIMATIONS */
@keyframes rotateBg {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes rotateBgReverse {
  0% {
    transform: translateX(-50%) rotate(360deg);
  }

  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}

@keyframes pulseCircle {
  0%,
  100% {
    box-shadow: 0 0 100px rgba(46, 204, 113, 0.35);
  }

  50% {
    box-shadow: 0 0 150px rgba(46, 204, 113, 0.55);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-18px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .journey {
    padding: 150px 40px;
    min-height: 900px;
  }

  .journey::before {
    width: 500px;
    height: 500px;
    top: -120px;
  }

  .journey::after {
    width: 440px;
    height: 440px;
    top: -110px;
  }

  .journey-logo-container {
    width: 380px;
    height: 380px;
    margin-bottom: 60px;
  }

  .journey h2 {
    font-size: 42px;
  }

  .journey p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .journey {
    padding: 120px 30px;
    min-height: 800px;
  }

  .journey::before {
    width: 400px;
    height: 400px;
    top: -100px;
  }

  .journey::after {
    width: 350px;
    height: 350px;
    top: -90px;
  }

  .journey-logo-container {
    width: 300px;
    height: 300px;
    margin-bottom: 50px;
    box-shadow:
      0 30px 80px rgba(46, 204, 113, 0.3),
      0 0 0 10px rgba(46, 204, 113, 0.12);
  }

  .journey h2 {
    font-size: 36px;
  }

  .journey p {
    font-size: 16px;
  }

  .btn-journey {
    padding: 15px 45px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .journey {
    padding: 100px 20px;
    min-height: 700px;
  }

  .journey::before {
    width: 300px;
    height: 300px;
    top: -80px;
  }

  .journey::after {
    width: 260px;
    height: 260px;
    top: -70px;
  }

  .journey-logo-container {
    width: 240px;
    height: 240px;
    margin-bottom: 40px;
    box-shadow:
      0 20px 60px rgba(46, 204, 113, 0.3),
      0 0 0 8px rgba(46, 204, 113, 0.1);
    border: 5px solid #2ecc71;
  }

  .journey h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .journey p {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .btn-journey {
    padding: 12px 35px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}

/* Testimonials Section */

.testimonials-section {
  width: 100%;
  padding: 120px 40px;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
  background-image: url("/images/p10.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  overflow-x: hidden;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 5;
}

.testi-title {
  position: relative;
  color: white;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  z-index: 10;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
}

.testi-subtitle {
  position: relative;
  color: #e8ffe8;
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
  z-index: 10;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

/* .testi-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 35px;
  z-index: 10;

  overflow: hidden;
} */

.testi-wrapper {
  display: flex;
  gap: 24px;

  overflow-x: auto; /* enable horizontal scroll */
  overflow-y: hidden;
  flex-wrap: nowrap;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 10px;

  -webkit-overflow-scrolling: touch; /* smooth mobile scroll */
}
.testi-wrapper::-webkit-scrollbar {
  display: none;
}
.testi-wrapper {
  cursor: grab;
}

.testi-wrapper:active {
  cursor: grabbing;
}

/* Cards */
.testi-card {
  flex: 0 0 320px; /* fixed width card */
  max-width: 320px;

  padding: 25px;
  border-radius: 18px;
  background: rgba(0, 80, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

  transition:
    0.6s ease,
    transform 0.6s ease;

  opacity: 0;
  transform: translateY(0);

  scroll-snap-align: start; /* smooth snap while scrolling */
}

/* Hover effect */
.testi-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  border-color: #00ff66;
}

/* Avatar */
.avatar {
  width: 55px;
  height: 55px;
  background: #00b44e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

/* Header */
.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.testi-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.testi-header span {
  font-size: 14px;
  opacity: 0.85;
}

/* Stars */
.stars {
  font-size: 20px;
  color: #00ff66;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* Review text */
.review {
  font-style: italic;
  color: #eaffea;
  font-size: 16px;
  line-height: 1.6;
}

/* Scroll-triggered animations */
[data-animate="top"] {
  transform: translateY(-80px);
  opacity: 0;
}

[data-animate="bottom"] {
  transform: translateY(80px);
  opacity: 0;
}

[data-animate="left"] {
  transform: translateX(-80px);
  opacity: 0;
}

[data-animate="right"] {
  transform: translateX(80px);
  opacity: 0;
}

.testi-card.animate {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

/* Animations for titles */
@keyframes fadeDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .testi-card {
    max-width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .testi-card {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .testi-title {
    font-size: 36px;
  }
}

/* FAQ Section */
.faq {
  background-color: #f8f9f8;
  padding: 50px 20px;
}

.faq h2 {
  font-size: 60px;
  margin-bottom: 60px;
  text-align: center;
  color: #2ecc71;
  font-weight: 700;
  animation: titleSlideIn 0.8s ease-out;
}
@media (max-width: 576px) {
  .row {
    padding: 0 15px;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left: 5px solid #2ecc71;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.faq-question {
  padding: 20px;
  background: linear-gradient(135deg, #f0f8f5 0%, #f8f9f8 100%);
  cursor: pointer;
  display: flex;
  font-size: 20px !important;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  color: #1a5d4d;
  transition: all 0.3s ease;
  font-size: 15px;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e8f5f1 0%, #f0f8f5 100%);
  color: #2ecc71;
  padding-left: 30px;
}

.faq-answer {
  padding: 20px;
  display: none;
  color: #666;
  line-height: 1.8;
  font-size: 20px;
  background-color: white;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDownFAQ {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDownFAQ 0.4s ease-out;
}

.faq-toggle {
  font-size: 24px;
  transition: all 0.3s ease;
  color: #2ecc71;
  font-weight: bold;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg) scale(1.2);
}

/* CTA Section */
.cta {
  position: relative;
  padding: 90px 60px;
  text-align: center;
  padding-bottom: 150px;
  background-image: url("/images/c4.jpg");
  /* your image path */
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  /* optional parallax effect */
  border-radius: 20px;
  overflow: hidden;
  color: #004d26;
  transition: transform 0.4s ease;
  margin-bottom: 100px;
}

.cta:hover {
  transform: scale(1.02);
}

.cta h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  animation: fadeDown 1s ease forwards;
}

.cta p {
  font-size: 25px;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

/* Input and button */
.cta-input {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-input input {
  padding: 14px 24px;
  border-radius: 25px;
  border: 2px solid white;
  width: 320px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-input input:focus {
  outline: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.cta-input button {
  background: #00b44e;
  border: 2px solid white;
  border-radius: 25px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.cta-input button:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: #007a2e;
}

/* Floating shapes */
.floating-shapes span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float 6s linear infinite;
}

.floating-shapes span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.floating-shapes span:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
}

.floating-shapes span:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
}

.floating-shapes span:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
}

.floating-shapes span:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Section animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta-input input {
    width: 90%;
  }
}

/* Footer */

footer {
  background: #0f3d2e;
  color: white;
  padding: 60px 50px 40px;
  position: relative;
  overflow: hidden;
}

.footer-section a {
  color: white;
  /* <-- Make sure this is white */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 8px #00ff66;
  /* Optional green glow on hover */
  color: white;
  /* <-- Ensure color stays white on hover too */
}

.footer-links a {
  color: white;
  /* <-- Make sure this is white */
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 0 8px #00ff66;
  /* Green glow */
  color: white;
  /* <-- Force it white on hover */
}

/* Grid layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 40px;
}

/* Headings */
.footer-section h4 {
  font-size: 30px !important;
  margin-bottom: 20px;
  color: #00b44e;
  font-weight: 700;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #00ff66;
  transition: width 0.3s ease;
}

.footer-section h4:hover::after {
  width: 50px;
}

/* List items with icons */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 20px !important;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.footer-section ul li i {
  color: #00b44e;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li:hover i {
  transform: scale(1.2);
}

/* Donate button */
.donate-btn {
  display: inline-block;
  background: #00b44e;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  margin: 10px 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.donate-btn:hover {
  background: #007a2e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 180, 78, 0.5);
}

/* Tax info */
.tax-info {
  font-size: 12px;
  color: #a2d5a1;
  margin-top: 5px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #00b44e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b44e;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  background: rgba(0, 180, 78, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00b44e;
  color: white;
  transform: translateY(-5px) scale(1.2);
  box-shadow: 0 8px 20px rgba(0, 180, 78, 0.5);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 180, 78, 0.3);
  padding-top: 25px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #00b44e;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-copyright {
  color: #a2d5a1;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-section {
    margin-bottom: 30px;
  }
  .footer-section ul li {
    font-size: 15px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .footer-section ul li a,
  .footer-section ul li span {
    color: white !important;
    font-size: 20px !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .footer-section ul li i {
    color: #00b44e !important;
    font-size: 20px !important;
    display: inline !important;
    visibility: visible !important;
  }
  .footer-section h4 {
    font-size: 25px !important;
    color: #00b44e !important;
  }
  .footer-section p {
    font-size: 20px !important;
    color: white !important;
  }
}
.star-rating {
  display: flex;
  gap: 6px;
  font-size: 28px;
  cursor: pointer;
}

.star-rating span {
  color: #ccc;
  transition: color 0.3s;
}

.star-rating span.active {
  color: gold;
}

.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #ccc;
}

/* hover left side stars */
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: gold;
}

/* ================= MOBILE HERO FIX ================= */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px;
    min-height: 520px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .hero-highlight {
    font-size: 44px;
    letter-spacing: 1px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* extra small phones */
@media (max-width: 480px) {
  .hero {
    padding: 100px 15px;
    min-height: 480px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-highlight {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 22px;
    font-size: 13px;
  }
}
/* ===== HERO MOBILE FIX (Keep text big but fit screen) ===== */

@media (max-width: 768px) {
  .hero {
    padding: 130px 25px;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .hero-highlight {
    font-size: 60px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
    margin: auto;
    margin-bottom: 35px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 36px;
    font-size: 15px;
  }
}

/* small phones */
@media (max-width: 480px) {
  .hero {
    padding: 120px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-highlight {
    font-size: 50px;
  }
}

.hero-highlight {
  position: relative;
  color: #00ff00;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow:
    0 0 5px rgba(0, 255, 0, 0.6),
    0 0 10px rgba(0, 255, 0, 0.4);
}

/* moving color shine */
.hero-highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #00ffff; /* passing color */
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid transparent;
  animation: shineText 4s linear infinite;
  opacity: 0.8;
}

@keyframes shineText {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.hero-highlight {
  position: relative;
  color: #00ff00;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow:
    0 0 5px rgba(0, 255, 0, 0.6),
    0 0 10px rgba(0, 255, 0, 0.4);
}

/* moving color shine */
.hero-highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffd700; /* passing color */
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid transparent;
  animation: shineText 4s linear infinite;
  opacity: 0.8;
}

@keyframes shineText {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* ================= GAME STYLE SERVICE ROADMAP ================= */

.game-map-roadmap {
  padding: 120px 20px;
  background: #f6fbff;
  text-align: center;
  overflow: hidden;
}

/* TITLE */

.map-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #2ecc71, #00c853, #27ae60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  letter-spacing: 2px;
  text-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);

  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
  }
  100% {
    text-shadow: 0 0 25px rgba(46, 204, 113, 0.8);
  }
}

.map-subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 18px;
}

/* ROAD PROGRESS BAR */

.road-progress {
  width: 100%;
  height: 6px;
  background: #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.road-progress-bar {
  height: 6px;
  width: 0%;
  background: #2ecc71;
  transition: width 0.3s;
}

/* MAP CONTAINER */

.map-container {
  position: relative;
  max-width: 1200px;
  height: 2100px;
  margin: auto;
}

/* ROAD PATH */

/* CHECKPOINTS */

.checkpoint {
  fill: #2ecc71;
  filter: drop-shadow(0 0 8px #2ecc71);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

/* MOVING VEHICLE */

.road-vehicle {
  position: absolute;
  font-size: 34px;

  offset-path: path(
    "M600 0 C200 200,1000 350,600 550 C200 750,1000 900,600 1100 C200 1300,1000 1500,600 1700 C200 1850,1000 1950,600 2100"
  );

  offset-distance: 0%;

  animation: drive 22s linear infinite;
}

@keyframes drive {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

/* SERVICE CARDS */

.map-card {
  position: absolute;
  width: 260px;
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  opacity: 1;
  transform: none;
  transition: 0.6s;
}

.map-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #2ecc71;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.map-card a:hover {
  background: #27ae60;
}

/* CARD POSITIONS */

.step1 {
  top: 120px;
  left: 60%;
}
.step2 {
  top: 350px;
  left: 15%;
}
.step3 {
  top: 600px;
  left: 65%;
}
.step4 {
  top: 850px;
  left: 20%;
}
.step5 {
  top: 1100px;
  left: 60%;
}
.step6 {
  top: 1350px;
  left: 25%;
}
.step7 {
  top: 1600px;
  left: 65%;
}
.step8 {
  top: 1850px;
  left: 20%;
}

/* ================= MOBILE RESPONSIVE ================= */

/* ================= MEMBERS VIDEO SHOWCASE ================= */

.members-showcase {
  padding: 120px 40px;
  background: linear-gradient(135deg, #f4fbf7, #ffffff);
  text-align: center;
  overflow: hidden;
}

.members-showcase-title {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(90deg, #2ecc71, #00c853, #27ae60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.members-showcase-title span {
  display: block;
  font-size: 26px;
  color: #1a5d4d;
}

.members-showcase-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 18px;
}

/* slider */

.members-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.members-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
}

.members-slider::-webkit-scrollbar {
  display: none;
}

/* cards */

.member-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 18px;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* glow border */

.member-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #2ecc71, #00c853, #27ae60);
  filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

.member-card:hover::before {
  opacity: 1;
}

/* spotlight effect */

.member-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(46, 204, 113, 0.5),
    transparent 70%
  );
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.member-card:hover::after {
  opacity: 1;
}

/* video */

.member-card video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* arrows */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #2ecc71;
  color: white;
  font-size: 26px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.slider-btn.left {
  left: -20px;
}
.slider-btn.right {
  right: -20px;
}

.slider-btn:hover {
  background: #27ae60;
}

/* popup */

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.video-popup video {
  width: 100%;
  border-radius: 10px;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* mobile responsive */

@media (max-width: 768px) {
  .members-showcase {
    padding: 80px 20px;
  }

  .member-card {
    flex: 0 0 220px;
  }

  .slider-btn {
    display: none;
  }

  .video-popup-content {
    width: 95%;
  }
}

.member-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.members-section {
  padding: 140px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f6fff8, #ffffff);
  overflow: hidden;
}

.members-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #2ecc71, #00c853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.members-subtitle {
  color: #555;
  margin-bottom: 70px;
}

/* CAROUSEL */

.carousel {
  perspective: 1200px;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-track {
  position: relative;
  width: 600px;
  height: 350px;
  transform-style: preserve-3d;
  animation: rotateCarousel 25s linear infinite;
}

.member-card {
  position: absolute;

  width: 260px;
  height: 320px;

  background: white;

  border-radius: 20px;

  padding: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

  transition: 0.4s;

  cursor: pointer;
}

.member-card:hover {
  transform: scale(1.1);
  box-shadow: 0 30px 60px rgba(46, 204, 113, 0.5);
}

/* VIDEO */

.member-card video {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */

.member-card h3 {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 800;
  color: #1a5d4d;
}

.member-card p {
  font-size: 13px;
  color: #777;
}

/* VIDEO POPUP */

.video-popup {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.85);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 999;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.video-content video {
  width: 100%;
  border-radius: 10px;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 768px) {
  .carousel {
    height: 360px;
  }

  .member-card {
    width: 220px;
    height: 290px;
  }

  .member-card video {
    height: 150px;
  }

  .members-title {
    font-size: 30px;
  }
}

/* CAROUSEL */

.carousel {
  perspective: 1200px;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 600px;
  height: 350px;

  transform-style: preserve-3d;

  animation: rotateCarousel 25s linear infinite;
}

/* MEMBER CARD */

.member-card {
  position: absolute;

  width: 260px;
  height: 320px;

  background: white;

  border-radius: 20px;

  padding: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

  cursor: pointer;

  backface-visibility: hidden; /* prevents flipping */

  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.member-card:hover {
  transform: scale(1.08);
  box-shadow: 0 30px 60px rgba(46, 204, 113, 0.5);
}

/* VIDEO */

.member-card video {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */

.member-card h3 {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 800;
  color: #1a5d4d;
}

.member-card p {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
    align-items: center !important;
  }
}

.footer-section.about p,
.footer-section.donate p {
  font-size: 18px;
  line-height: 1.8;
}

.footer-section.about p span {
  font-size: 18px;
}

.footer-section.donate .tax-info {
  font-size: 16px;
}

.footer-section.donate .donate-btn {
  font-size: 18px;
  padding: 12px 30px;
}

/* Road center line animation */
.road-center-line {
  animation: roadDash 3s linear infinite;
}
@keyframes roadDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -180;
  }
}

/* Checkpoint pulse rings */
.cp-ring {
  animation: cpPulse 2s ease-in-out infinite;
}
@keyframes cpPulse {
  0%,
  100% {
    r: 14;
    opacity: 0.3;
  }
  50% {
    r: 22;
    opacity: 0.6;
  }
}

.road-vehicle {
  display: none !important;
}

@media (max-width: 768px) {
  /* Hide SVG road completely on mobile */
  .map-road {
    display: none !important;
  }

  /* Hide progress bar on mobile */
  .road-progress {
    display: none;
  }

  /* Container becomes normal flow */
  .map-container {
    position: relative !important;
    height: auto !important;
    transform: none !important;
    max-width: 100% !important;
    padding: 0 16px;
    display: block;
  }

  /* Vertical green line in center */
  .map-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #2ecc71, #00c853);
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 0;
  }

  /* All cards back to normal flow */
  .map-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 55% !important;
    margin-bottom: 30px !important;
    z-index: 2;
    padding: 14px 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .map-card h3 {
    font-size: 13px !important;
    margin-bottom: 6px;
  }

  .map-card p {
    font-size: 11px !important;
    line-height: 1.5;
  }

  .map-card a {
    font-size: 11px !important;
    padding: 6px 10px !important;
    margin-top: 8px;
  }

  /* Dot on the center line per card */
  .map-card::before {
    content: "" !important;
    position: absolute !important;
    width: 12px !important;
    height: 12px !important;
    background: #2ecc71 !important;
    border-radius: 50% !important;
    top: 20px !important;
    z-index: 3 !important;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6) !important;
    opacity: 1 !important;
    filter: none !important;
  }

  /* Right side cards — dot on left side */
  .step1,
  .step3,
  .step5,
  .step7 {
    margin-left: auto !important;
    margin-right: 4% !important;
    border-radius: 12px 12px 12px 0 !important;
  }
  .step1::before,
  .step3::before,
  .step5::before,
  .step7::before {
    left: -22px !important;
    right: auto !important;
  }

  /* Left side cards — dot on right side */
  .step2,
  .step4,
  .step6,
  .step8 {
    margin-left: 4% !important;
    margin-right: auto !important;
    border-radius: 12px 12px 0 12px !important;
  }
  .step2::before,
  .step4::before,
  .step6::before,
  .step8::before {
    right: -22px !important;
    left: auto !important;
  }
}
/* ===== MEMBERS SECTION ===== */
.members-section .carousel-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  position: relative;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.members-section .carousel-container::-webkit-scrollbar {
  display: none;
}

.members-section .carousel-container:active {
  cursor: grabbing;
}
.members-section .carousel-container::-webkit-scrollbar {
  display: none;
}

.members-section .carousel-container:active {
  cursor: grabbing;
}

.members-section .carousel-track {
  display: flex;
  width: max-content;
  position: relative;
  height: auto;
  transform-style: unset;
  animation: none;
}

.members-section .carousel-track::-webkit-scrollbar {
  display: none;
}

.members-section .carousel-track .carousel-inner {
  display: flex;
  gap: 25px;
  padding: 20px 30px;
  width: max-content;
  /* NO animation — static */
}

.members-section .member-card {
  flex: 0 0 auto;
  width: 260px;
  min-width: 260px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.members-section .member-card:hover {
  border: 2px solid gold;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.members-section .member-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  pointer-events: none;
}

.members-section .member-info {
  padding: 15px;
  text-align: center;
  background: linear-gradient(135deg, #000, #111);
}

.members-section .member-info h3 {
  color: gold;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.members-section .member-info p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
}

/* VIDEO POPUP */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-content video {
  width: 100%;
  border-radius: 15px;
}

.close-video-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  font-size: 32px;
  color: gold;
  cursor: pointer;
  z-index: 10001;
}

.close-video-btn:hover {
  transform: scale(1.2);
}

/* MEMBERS TITLE */
.members-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: #111;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 10px;
}

.members-title span {
  display: block;
  font-size: 48px;
  color: #16a34a;
  text-shadow:
    0 0 10px rgba(22, 163, 74, 0.6),
    0 0 25px rgba(22, 163, 74, 0.4);
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow:
      0 0 10px rgba(22, 163, 74, 0.6),
      0 0 20px rgba(22, 163, 74, 0.3);
  }
  to {
    text-shadow:
      0 0 20px rgba(22, 163, 74, 1),
      0 0 40px rgba(22, 163, 74, 0.6);
  }
}

.members-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 12px auto;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #16a34a,
    #22c55e,
    transparent
  );
  animation: lineMove 3s infinite alternate;
}

@keyframes lineMove {
  from {
    width: 80px;
    opacity: 0.6;
  }
  to {
    width: 180px;
    opacity: 1;
  }
}

.members-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .members-title {
    font-size: 28px;
  }
  .members-title span {
    font-size: 32px;
  }
}