footer {
  background: linear-gradient(135deg, #06b6d4, #0097b2);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('https://svgshare.com/i/udC.svg') repeat-x;
  background-size: cover;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h5 {
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
}

.footer-section h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  margin-top: 5px;
}

.footer-section p,
.footer-section li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section li a:hover {
  text-decoration: underline;
  color: #e0f7fa;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background: white;
  color: #06b6d4;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-clock {
  font-size: 0.9rem;
  opacity: 0.9;
}
