* {
  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: linear-gradient(to bottom right, #009688, #4CAF50);
  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: 60px; /* 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);
}
.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.2); /* semi-transparent */
    color: #fff;
    border: 2px solid #fff;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
  }
  
   .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
  }
  .hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }