.elementor-300 .elementor-element.elementor-element-10bbd15{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a5cceb7 */.footer {
  background: #d9d6cf;
  padding: 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}

/* 🔥 LOGO FIX WRAPPER */
.logo-wrap {
  width: 200px;
  height: 80px;           /* 👈 control visible area */
  overflow: hidden;       /* 👈 hides extra space */
}

/* 🔥 CROP EFFECT */
.logo-wrap img {
  width: 100%;
  transform: translateY(-20px); /* 👈 REMOVE TOP GAP */
  display: block;
}

/* TEXT */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 10px;
  color: #1b5e20;
}

/* LINKS */
.footer-col a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #444;
}

.footer-col a:hover {
  color: #2e7d32;
}

/* CONTACT */
.footer-col p {
  margin: 0 0 6px;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #bbb;
  margin-top: 25px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}/* End custom CSS */