* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner-top {
  background: #4c6c03;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social i {
  color: white;
  font-size: 20px;
  margin-right: 12px;
  transition: 0.3s;
}

.social i:hover {
  color: #0d6efd;
}

.info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.info a {
  color: white;
  text-decoration: none;
  margin-left: 5px;
}

.navbarcont {
  display: flex;
  justify-content: space-between; /* pushes left & right apart */
  align-items: center;
  background: #82dc13;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.navbar-left {
  display: flex; /* important */
  align-items: center; /* vertical center */
  gap: 10px; /* space between logo & text */
  color: white;
  font-size: 22px;
  font-weight: bold;
}
.logo {
  height: 80px; /* adjust as needed */
  width: auto;
  border-radius: 20px;
}

.navbar-right a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

.nav-right a:hover {
  color: #0d6efd;
}

.noticebar{
    display: flex;
  justify-content:center; 
  align-items: center;
  flex-wrap: wrap;
}
.notice-card {
  width: 400px;             
  max-height: 500px;
  background-color: #fdfdfd;  
  border-radius: 8px;         
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  padding: 16px;
  margin: 20px;
  font-family: Arial, sans-serif;
  display:grid;
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.notice-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
}

.notice-header .date {
  font-size: 0.9rem;
  color: #888;
}

.notice-body p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.notice-footer {
  text-align: right;
}

.notice-footer .read-more {
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.notice-footer .read-more:hover {
  background-color: #0056b3;
}

.footer {
  background: #1b4d2c;
  color: #fff;
  padding: 50px 0 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer .container {
  margin: auto;
  padding: 0 20px;
}

/* ===== Grid Layout ===== */
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: space-between;
}

/* each column */
.footer-info > div,
.footer-grid,
.footer-info-grid {
  flex: 1 1 220px;
  min-width: 220px;
}

/* ===== Headings ===== */
.footer h4 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #ff7a18;
  font-weight: 600;
}

/* ===== Links ===== */
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-info ul li a:hover {
  color: #ff7a18;
  padding-left: 5px;
}
/* ===== Mission Text ===== */
.footer-grid p {
  color: #ddd;
  line-height: 1.7;
  font-size: 14px;
}
/* ===== Social Icons ===== */
.social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.social ul li a {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social ul li a:hover {
  transform: translateY(-3px);
}

/* ===== Bottom Copy ===== */
.copy {
  background: #2b4d40;
  color: #ccc;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

.copy a {
  color: #ff7a18;
  text-decoration: none;
}

.copy a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-info {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    text-align: center;
  }

  .social ul {
    justify-content: center;
  }

  .footer-info ul li a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer h4 {
    font-size: 18px;
  }
}
