/* Footer Base */
.footer {
  background: #f7f7f7;
  padding: 60px 10%;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* Footer Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: #222;
}

.footer-col h4 i {
  color: #2ea44f;
  margin-right: 6px;
}

/* Logo and About */
.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
  
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6px;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #2ea44f;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a i {
  margin-right: 6px;
}

.footer-col ul li a:hover {
  color: #2ea44f;
}

/* Contact */
.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
}
.contact-info{
    margin-right: 30px;
}

.contact-info i {
  margin-right: 8px;
  color: #ff9800;
}

.phone-green {
  color: #2ea44f !important;
}

/* socialmedia Gallery */
.insta-gallery {
  display: grid;
  grid-template-columns: repeat(2, 80px);
  gap: 10px;
}

.insta-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Footer Bottom */
.footer-bottom {
  background: #0a7c20;
  color: #fff;
  /* Make the background full width */
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-top: 40px;
}

/* Content wrapper to provide padding and space-between */
.footer-bottom-content {
  max-width: 2000px; /* Match the main container width */
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  color: #ffd700;
  font-weight: 600;
}

.footer-bottom img {
  max-height: 30px;
}

/* ================== Responsive CSS ================== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}