/* =========================
   HEADER + MARQUEE
========================= */
header.header {
  background: #d8ae3a; /* strong green */
  padding: 5px 0;
}

header.header span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: 40px;
}

header.header i {
  margin-right: 6px;
  color: #ffeb3b; /* festive yellow for icons */
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
  background: #fff;
  padding: 12px 0;
  border-bottom: 2px solid #1d8c15;
}

.navbar-brand img.logo-img {
  height: 70px;
  max-height: 100%;
}

/* Navbar Links */
.nav-links .nav-link {
  color: #1d8c15 !important;   /* green links */
  font-weight: 600;
  margin-left: 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: #145c0f !important; /* darker green on hover */
  transform: translateY(-2px);
}

.nav-links .nav-link i {
  font-size: 14px;
  color: #145c0f;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Offcanvas Menu */
.offcanvas {
  background: #f9fff9; /* light greenish background */
}

.offcanvas .nav-link {
  padding: 12px 0;
  font-size: 16px;
}

/* =========================
   HERO SECTION
========================= */
.hero-sec {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.hero-slide.active {
  left: 0;
  opacity: 1;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Hero Buttons */
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 3;
  transition: background 0.3s ease;
}

.hero-btn.prev { left: 20px; }
.hero-btn.next { right: 20px; }

.hero-btn:hover { background: rgba(0, 0, 0, 0.9); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .nav-links .nav-link {
    margin-left: 0;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  header.header span {
    font-size: 12px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-btn {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}
