/* ---------- FOOTER ---------- */
*{
    margin: 0%;
}
.footer {
  width: 100%;
  background-color: #161d39f3;
  color: #ffffff;
  padding: 25px  0px ;
  /* height: 60vh; */
  text-align: center;
}

/* ---------- Logo ---------- */
.footer-logo-f {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo-f img {
  width: 320px;
  max-width: 100%;
  margin-bottom: 1.5%;
}

/* ---------- Contact Info Boxes ---------- */
.footer-about {
  display: flex;
  justify-content: center;
}

.footer-about-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}

.footer-about-1box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-about-1box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-icon img {
  width: 50px;
  margin-bottom: 15px;
}

.f-heading {
  color: #076382;
  font-size: 18px;
  margin-top: 10px;
}

.f-para {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

/* ---------- Copyright ---------- */
.footer-last-box {
  margin-top: 60px;
  /* padding-bottom: 1%; */
}

.footer-last p {
  font-size: 15px;
  color: #ccc;
}

.footer-last p a {
  text-decoration: none;
  color: #00bfff;
  transition: color 0.3s ease;
}

.footer-last p a:hover {
  color: #fff;
}

/* ---------- Scroll to Top Button ---------- */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #00bfff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  display: none;
  transition: background-color 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  background-color: #007acc;
  transform: scale(1.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .footer-about-box {
    grid-template-columns: 1fr;
  }

  .footer-about-1box {
    text-align: center;
  }

  .footer-logo-f img {
    width: 180px;
  }
}
