.footer {
  background: var(--background-green-color); /* green theme */
  color: var(--white-color);
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer h2,
.footer h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--grey-color); /* highlight color */
}

.socials a {
  margin-right: 10px;
  font-size: 20px;
  text-decoration: none;
  color: var(--white-color);
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--grey-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid var(--background-grey-color);
  padding-top: 15px;
}









/* about us*/
/* about us*/
/* about us*/
/* about us*/
/* about us*/
/* about us*/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--background-green-color, rgba(0, 128, 0, 0.8));
  overflow: auto;
  direction: rtl;
  justify-content: center;
  align-items: center;
}

/* Modal content */
.modal-content {
  background: var(--background-white-color, #fff);
  color: var(--grey-color, #333);
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease;
  text-align: justify;
}

/* Heading */
.modal-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--green-color, #28a745);
}




/* Heading */
.modal-content p {
  font-size: 12px;  
}

/* Close button */
.close {
  color: var(--grey-color, #333);
  font-size: 40px;
  float: left;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: var(--green-color, #28a745);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
