* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(241, 231, 231);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #087a0e;
  padding: 5px 20px;
}

.top-bar marquee {
  color: rgb(245, 232, 232);
  font-weight: bold;
  font-size: 18px;
}

.top-bar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

nav {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px; /* Fixed navbar height */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.nav-logo img {
  height: 90px; /* Logo fills navbar height */
  object-fit: contain;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  align-items: center;
  text-decoration: none;
  color: rgb(15, 14, 14);
  font-weight: bold;
}

.nav-links li a:hover {
  background-color: #589612;
  color: white;
  border: 1px solid rgb(128, 0, 21);
  /* border-radius: 20px; */
  padding: 6px 8px; 
}


/* Close button default hidden */
.close-btn {
  display: none;
}

/* ---------- Mobile Styles ---------- */
@media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 270px;
        background-color: #48a15e;
        
        /* padding: 5px 20px; */
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
      }

      .nav-links.active {
        right: 0;
      }

      .nav-links li {
        margin: 5px 0;
        
      }

      .close-btn {
  display: block;
  align-self: flex-start;
  font-size: 24px;
  cursor: pointer;
  /* margin-bottom: 15px; */
  color: #333;
}
    } 

.btn-success {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-success:hover {
  background-color: #28a745;
  transform: scale(1.05);
}
/* Auto open dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
   .marquee-vertical {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .marquee-content {
      display: flex;
      flex-direction: column;
      animation: scroll-up 15s linear infinite;
    }

    @keyframes scroll-up {
      0% { transform: translateY(100%); }
      100% { transform: translateY(-100%); }
    }

    