.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-label {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: pulse 1.8s infinite;
  gap: 8px;
}

.whatsapp-icon-inline {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


      
      .sdg-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  width: 180px; /* Increased width */
  height: 180px; /* Optional: fix height for symmetry */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  margin: 10px; /* adds spacing between cards */
}

.sdg-card:hover {
  transform: translateY(-5px);
}

.sdg-logo-img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.food-chose-titles {
    font-size: 22px;
    font-weight: 600;
    line-height: 75px;
    color: var(--agrofa-text5, #00200c);
    word-wrap: break-word;
    margin-bottom: 43px;
}
.footer-widget--contact {
  color: #ffffff;
}


.footer-contact-details {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
}

.footer-contact-details strong {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 6px solid #e0e0e0;
  border-top: 6px solid #25D366; /* WhatsApp green or any highlight color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px #25D36699;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
