
 /* Footer */
.footer {
  background: black;

  color: white;
  width: 100%;
  margin-top: -1rem !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.footer .container {
  padding: 0;
}
/* new changes */

/* .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d469ff,
    #4f1c5d,
    #d469ff,
    transparent
  );
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
} */

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  margin-top: 10px;
}

.footer-social {
  display: flex;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: #d4af37;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #d4af37;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  /* color: var(--white); */
  color: gold;
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 1rem;
  color: #d4af37;
  width: 20px;
  text-align: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-bottom p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom ul {
  display: flex;
}

.footer-bottom ul li {
  margin: 0 0.8rem;
}

.footer-bottom ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom ul a:hover {
  /* color: var(--white); */
  color: gold;
}
.footer-img {
  margin-top: 8px;
  width: 200px; /* Adjust this value as needed */
  height: auto;
  max-height: 150px; /* Optional: limits height for very tall images */
}
.footer-img a {
  display: inline-block;
}