* {
  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;
}

/* ===== CONTAINER ===== */
.container{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

.about-img{
    flex:1;
}

.about-img img{
    width:100%;
    height: 350px;
    border-radius:12px;
}

.about-text{
    flex:1;
}

.about-text h2{
    color:#0d6efd;
    margin-bottom:15px;
}

.about-text p{
    line-height:1.7;
    color:#444;
}

/* ===== VISION MISSION ===== */
.vm-section{
    background:#f5f7fa;
}

.vm-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.vm-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.vm-card h3{
    color:#0d6efd;
    margin-bottom:10px;
}

/* ===== PRINCIPAL ===== */
.principal{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

.principal img{
    width:280px;
    border-radius:12px;
}

.principal-text{
    flex:1;
}

.principal-text h2{
    color:#0d6efd;
    margin-bottom:10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .about-hero h1{
        font-size:28px;
    }
}

.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;
  }
}
