.footer {
  background-color: #202020;
  color: aliceblue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0; /* Increased padding for better spacing */
  min-height: 35vh;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.footer .footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 15px;
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .contact-box {
  display: flex;
  align-items: center;
  text-align: start;
  gap: 10px;
}

.footer .contact-box i {
  font-size: 24px;
  color: #ce9546; /* Changed icon color for contrast */
}

.footer .footer-logo {
  flex: 1;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
}

.footer .footer-logo-image {
  width: 350px;
  object-fit: contain;
}

.footer-bottom {
  padding-top: 10px;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  text-decoration: none;

  font-size: 14px;
  margin: 2vh 0 0 0;
  color: aliceblue !important;
}
.footer-bottom p a {
  text-decoration: none;
  font-size: 14px;
  margin: 2vh 0 0 0;
  color: aliceblue !important;
}
.footer-bottom p a:hover {
  text-decoration: none;
  font-size: 14px;
  margin: 2vh 0 0 0;
  color: #ce9546 !important;
}
/* Link Styles */
.footer-link {
  text-decoration: none; /* Remove underline */
  color: aliceblue; /* Link color */
  transition: color 0.3s; /* Smooth color transition */
}

.footer-link:hover {
  color: #ce9546; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer .footer-section {
    align-items: center;
  }

  .footer .contact-info {
    align-items: center;
  }
}
