/* Default footer styles for desktop */
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  background-color: white;
}

.footer-section {
  min-width: 200px;
  text-align: start;
  /* margin-left: 3%; */
}

.footer-logo {
  width: 60px;
  height: auto;
}


.footer-logo-container {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 50px; /* Adjust as needed */
  margin-right: 10px; /* Space between logo and text */
}

.footer-text {
  font-size: 16px; /* Adjust font size as needed */
  color:black; /* Adjust color as needed */
}


.footer-section h6 {
  color: red;
}

.footer-section p, .footer-section a {
  color: black;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: black;
  text-decoration: none;
}

.footer-section ul li a:hover {
  font-weight: bold;
}

.footer-bottom-text {
  text-align: start;
  padding-top: 20px;
  border-top: 1px solid #444;
  background-color: white;
}

.footer-bottom {
  margin-left: -19px;
  margin-bottom: -25px;
  padding-top: 20px;
  background-color: white;
}

.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -8%;
  font-size: 120%;
}

/* .social-icons img {
  width: 30px;
} */

.footer-bottom-text p {
  color: #000;
  text-align: center;
}

.footer-section-1 {
  position: absolute;
  left: 83%;
  margin-top: 8%;
  color: red;
}

/* Mobile Footer Adjustments */
@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-section, .footer-section-1 {
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
      left: 0;
  }

  .footer-section h6, .footer-section-1 h6 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .footer-section ul, .footer-section-1 ul {
      list-style: none;
      padding-left: 0;
      margin-top: 1%;
  }

  .footer-section ul li, .footer-section-1 ul li {
      margin-bottom: 5px;
  }

  .social-icons {
      justify-content: center;
      gap: 5px; /* Reduce gap between icons */
  }

  .social-icons img {
      width: 25px; /* Reduce the size of the icons on mobile for better layout */
  }

  .footer-bottom {
      text-align: center;
      margin: 0;
  }
}
