.footer {
  position: relative;
  z-index: 1;
  color: white;
  font-family: "Poppins", sans-serif;
  max-width: 1450px;
  border-radius: 30px;
  margin: auto;
  overflow: hidden;
  background: linear-gradient(
    to right,
    rgba(0, 68, 95, 0.8),
    rgba(61, 129, 146, 0.8)
  );

  background-image: linear-gradient(180deg, #00444d 0%, #095158 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/footer-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left; /* <== change here */
  opacity: 0.15;
  z-index: -1;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}
.footer-logo img {
  height: 50px;
}
.footer-contact p {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}
.footer-contact p span {
  font-size: 20px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-section {
  flex: 1 1 250px;
  padding: 20px;
}
.footer-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}
.footer-section ul {
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}
.footer-section ul li a:hover {
  color: #ffd700;
}
.social-icons i {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
}
.footer-copy {
  text-align: center;
  padding: 15px;
  background-color: rgba(255, 255, 255);
  font-size: 14px;
  width: 1100px;
  position: absolute;
  left: 200px;
  bottom: 0px;
  padding: 20px 20px 20px 20px;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
}
.footer-copy a {
  color: black;
  text-decoration: none;
}
.footer-copy p {
  color: black;
  margin: auto;
}

.footer-copy a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    margin-top: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section {
    width: 100%;
    text-align: center;
    list-style-position: inside;
  }
  .footer-logo img {
    width: 95%;
  }
  .footer-copy {
    width: 300px;
    left: 20px;
    bottom: -10px;
  }
}

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* icons */
/* Floating Icons Styling */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common icon style */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.phone-icon {
  background-color: #4285f4;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive visibility */
@media (min-width: 768px) {
  .phone-icon {
    display: none;
  }
}

a .fab.fa-whatsapp {
  color: #ffffff;
  font-size: 24px;
}
a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: rgb(214, 214, 214);
}
