@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.contain {
  max-width: 1170px;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: #585858;
  padding: 25px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}
.footer-col {
  text-align: start;
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #00faa8;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  text-align: start;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col ul li p {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col ul {
  padding-left: 0 !important;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(
    255,
    255,
    255,
    0.2
  ); /* Matches the semi-transparent background */
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px; /* Centers the icon vertically */
  border-radius: 50%; /* Circular shape */
  color: #ffffff; /* White icons */
  transition: all 0.5s ease; /* Smooth hover transition */
}

.footer-col .social-links a:hover {
  color: #24262b; /* Dark icon color on hover */
  background-color: #ffffff; /* White background on hover */
}
/*responsivness*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
