.landing-page {
  font-family: 'Poppins', sans-serif;
}

/* Notification Banner */
.notification-banner {
  background: #1b5e20;
  color: #fff;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.banner-text {
  animation: scroll-left 20s linear infinite;
  font-size: 16px;
  padding: 0 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Header */
.landing-header {
  background: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.landing-header-inner {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-logo img {
  height: 48px;
}

/* Nav */
.landing-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.landing-nav a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Hover underline */
.landing-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #1b5e20;
  transition: width 0.3s ease;
}

.landing-nav a:hover {
  color: #1b5e20;
}

.landing-nav a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
}

/* Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #000;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #1b5e20;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.founder-dp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

/* Donate Button */
.donate-btn {
  background: #1b5e20;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.donate-btn:hover {
  background: #145214;
}

/* Hero */
.landing-hero {
  height: calc(100vh - 120px); /* Adjusted for banner + header */
  width: 100%;
  position: relative;
}

/* Slider */
.hero-slider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Image slide */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Wrapper for proper sizing */
.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.hero-dot.active {
  opacity: 1;
}

/* Transforming Section */
.transforming-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #001f3f; /* Dark blue */
  margin-bottom: 40px;
}

.transforming-content {
  width: 90%;
  margin: auto;
  display: flex;
  gap: 40px;
}

.left-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}

.right-content {
  flex: 1;
}

.right-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Impact Section */
.impact-section {
  padding: 60px 0;
  background: #fff;
}

.impact-stats {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #1b5e20;
}

.stat-unit {
  font-size: 24px;
  color: #1b5e20;
}

.stat-label {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

/* Mobile Donate Button */
.mobile-donate-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1b5e20;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  text-decoration: none;
  z-index: 1000;
  animation: flash 1.5s infinite;
}

/* Media Queries */
@media (max-width: 991px) {
  .landing-header {
    height: auto;
    padding: 12px 0;
  }

  .landing-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-nav ul {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .header-right {
    margin-left: auto;
  }

  .landing-hero {
    height: 50vh;
  }

  .hero-arrow {
    font-size: 18px;
    padding: 8px 12px;
  }

  .transforming-content {
    flex-direction: column;
  }

  .impact-stats {
    flex-direction: column;
    align-items: center;
  }

  /* Show mobile donate */
  .mobile-donate-btn {
    display: block;
  }

  /* Hide desktop donate on mobile */
  .header-right .donate-btn {
    display: none;
  }
}