.footer {
    background: linear-gradient(to bottom, #56b6dc 0%, #a9bed1 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
  }

  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer .logo {
    width: 100%;
  }
  .footer .logo img {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
  }

  .footer .container div {
    margin: 10px 0;
  }

  .footer .social-icons a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
  }

  .footer .social-icons a:hover {
    color: #3498db;
  }

  .footer a {
    color: #ecf0f1;
    text-decoration: none;
  }

  .footer i {
    margin-left: 20px;
    margin-right: 0px;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .footer .quick-links,
  .footer .contact-info {
    margin: 20px 0;
    font-size: 18px;
  }

  .footer .contact-info p,
  .footer .quick-links a {
    margin: 5px 0;
  }

  .footer .copyright {
    margin-top: 20px;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .footer .container {
      padding: 0 10px;
    }

    .footer .quick-links,
    .footer .contact-info {
      font-size: 16px;
    }

    .footer .social-icons a {
      margin: 0 5px;
    }
  }

  .scrollButton{
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .scrollButton.show {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, display 0s 0.5s; /* Add transition for display as well */
}

.scrollButton.hide {
    opacity: 0;
}

  #scrollUpButton {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 40px;
    padding: 5px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000; /* Ensure the button is above other content */
    transition: opacity 0.3s;
}

#scrollDownButton {
  position: fixed;
  bottom: 20px;
  right: 70px;
  width: 40px;
  padding: 5px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* Ensure the button is above other content */
  transition: opacity 0.3s;
}

#homeButton {
  position: fixed;
  bottom: 20px;
  right: 130px;
  width: 40px;
  padding: 5px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* Ensure the button is above other content */
  transition: opacity 0.3s;
}

#ContactSCW {
  position: fixed;
  bottom: 20px;
  right: 200px;
  padding: 5px;
  background-color: #007BFF;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1000; /* Ensure the button is above other content */
  transition: opacity 0.3s;
  height: 40px;
}

#scrollUpButton:hover{
  background-color:  #0c3868;
}

#scrollDownButton:hover{
  background-color:  #0c3868;
}

#ContactSCW:hover{
  background-color:  #0c3868;
}

#homeButton:hover{
  background-color:  #0c3868;
}