/* Footer Styles */
.footer-section {
  background: linear-gradient(to bottom, #182845,#182845, #182845);
  color: white;
}

.footer-logo {
  max-width: 210px !important;
}

.footer-section h5 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #4285F4;
}

.footer-section .footer-text {
  font-size: 15px;
  line-height: 23px;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
}

.footer-section .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-section .footer-links a {
  color: white;
  text-decoration: none;
}

.footer-section .footer-links a:hover {
  text-decoration: underline;
  color: #4285F4;
}

/* Footer Bottom Styles */
.footer-bottom {
  background-color: #182845; /* Solid Black Background */
  color: rgb(255, 255, 255);
}

.footer-bottom .dotted-line {
  border: none;
  border-top: 2px dotted orange;
  width: 100%;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
  transform: scale(1.1) rotate(360deg);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .footer-section .row > div {
    margin-bottom: 1.5rem;
  }

  .footer-bottom .dotted-line {
    width: 75%;
  }
}
