/* Footer styles */

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fb628d;
  color: #eee;
  padding: 40px 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  gap: 30px;

}

.footer > div {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.footer h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #7fdfff;
  border-bottom: 2px solid #7fdfff;
  padding-bottom: 6px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #7fdfff;
  text-decoration: underline;
}

.footer p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 8px 0;
}

.foot-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-social h3 {
  margin-bottom: 12px;
}

.foot-social a {
  display: inline-block;
  margin-right: 12px;
}

.foot-social a img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.foot-social a:hover img {
  filter: brightness(0) invert(0.6) sepia(1) saturate(5) hue-rotate(180deg);
}
.icon-soc{
    display: flex;
}
/* Responsive for small screens */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 20px;
  }
  .footer > div {
    min-width: 100%;
  }
  .foot-social {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
