* {
  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;
}

/* ===== GRID ===== */
.contact-grid{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

/* ===== CONTACT INFO ===== */
.contact-info{
    flex:1;
    background:#f5f7fa;
    padding:30px;
    border-radius:12px;
}

.contact-info h2{
    color:#0d6efd;
    margin-bottom:15px;
}

.info-item{
    margin:15px 0;
    color:#444;
}

/* ===== FORM ===== */
.contact-form{
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h2{
    color:#0d6efd;
    margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form button{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:12px;
    width:100%;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#0b5ed7;
}

/* ===== MAP ===== */
.map{
    margin-top:40px;
}

.map iframe{
    width:100%;
    height:350px;
    border:0;
    border-radius:12px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .contact-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;
  }
}
