.elementor-313 .elementor-element.elementor-element-0e675cc{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-a83a25c */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Roboto:wght@400;500&display=swap');

/* --- Footer Container --- */
.ravi-agro-footer {
  background-color: #ffffff;
  border-top: 1px solid #E6F0FA;
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

.footer-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- Individual Widgets --- */
.footer-widget {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.widget-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.widget-icon svg {
  width: 24px;
  height: 24px;
  color: #2F88CA; /* Brand Blue */
  stroke-width: 1.5;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2F88CA; /* Brand Blue for titles */
  margin: 0 0 10px 0;
}

.widget-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* --- Social Widget Specifics --- */
.social-widget {
  align-items: flex-start; /* Removed the icon on the left for this one based on screenshot */
}

.social-title {
  color: #1A2B3C; /* Darker navy for 'Follow us' to match screenshot */
  margin-bottom: 12px;
}

.social-icons-wrapper {
  display: flex;
  gap: 12px;
}

.social-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #1A2B3C;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-box svg {
  width: 18px;
  height: 18px;
}

.social-icon-box:hover {
  background-color: #2F88CA;
  border-color: #2F88CA;
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom-bar {
  background-color: #F8F9FA;
  border-top: 1px solid #eeeeee;
  padding: 20px;
}

.bottom-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-bar-container p {
  margin: 0;
  font-size: 14px;
  color: #777777;
}

/* --- Responsive Design --- */

/* Tablet View */
@media (max-width: 992px) {
  .footer-main-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

/* Mobile View (Stacks exactly like the screenshot) */
@media (max-width: 768px) {
  .footer-main-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 20px;
  }

  .bottom-bar-container {
    flex-direction: column;
    text-align: center;
  }
}/* End custom CSS */