/* Professional Footer Styles */
.footer {
  background: #113d3c;
  color: #fff;
  padding: 50px 0px 10px 0px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 4px solid #00d1b2;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #00d1b2;
  display: inline-block;
  padding-bottom: 5px;
  color: #00d1b2;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  color: #ddd;
  margin: 8px 0;
  /* text-align: center; */
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #fff;
}


.social-icons i {
  transform: scale(1.5);
}

.social-icons{
  display: flex;
  /* gap: 25px; */
  justify-content: space-evenly;
  padding-top: 2rem;
}





/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ca8a2c;
  color: #fff;
}

.footer-bottom p {
  margin: 5px 0;
}


.footer-box p a {
  color: white;
}

/* Back to Top Button Styles */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
  background-color: #007bff;
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#topBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* Responsive Adjustment */
@media screen and (max-width: 600px) {
  #topBtn {
    bottom: 20px;
    right: 20px;
    padding: 10px 14px;
    font-size: 16px;
  }
}
  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    transition: bottom 0.3s ease;
  }

  .floating-whatsapp.shift-up {
    bottom: 80px; /* Adjust upward when top button is visible */
  }

  /* #topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 999;
    background-color: #333;
    color: white;
    padding: 10px 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
  } */

