* {
  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 {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

/* Grid */
.contact-grid {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f7fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* LEFT SIDE */
.contact-info {
    width: 50%;
}

.contact-info img {
    width: 100%;
    height: 100%;
}

/* RIGHT SIDE */
.contact-form {
    width: 50%;
    padding: 40px;
    background: #ffffff;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #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;
}
/* form */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info img {
        height: 250px;
    }
}
/* footer */
@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;
  }
}
