.landing-page {
  font-family: 'Poppins', sans-serif;
}

/* Header */
.landing-header {
  background: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.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 FIX */
.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;
}


/* Donate Button */
.donate-btn {
  background: #1b5e20;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 4px;
}

.donate-btn:hover {
  background: #145214;
}


.landing-hero {
  height: calc(100vh - 80px);
  width: 100%;
}


/* 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 FULL COVER */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 THIS FIXES GAP */
  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;
}



/* 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;
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

@media (max-width: 991px) {

  .landing-header {
    height: auto;
    padding: 12px 0;
  }

  .landing-nav ul {
    flex-wrap: wrap;
    gap: 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .landing-hero {
    height: 70vh;
  }
}

