/* Website Footer Styles */
.website-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* margin-top: 2rem; */
  position: relative;
  overflow: hidden;
}

.website-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo-img {
  height: 40px;
  width: auto;

}
.footer-text p {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  font-weight: 400;
  margin: 0;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  position: relative;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.footer-links a span {
  transition: color 0.3s ease;
}

.footer-links a:hover span {
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column !important;
    gap: 1rem;
  }
  
  .footer-logo-img {
    height: 50px;
  }
  
  .footer-text {
    margin: 0 !important;
  }
  
  .footer-text p {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
  
  .footer-links {
    justify-content: center;
    gap: 0.5rem !important;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.5rem 0 !important;
    flex-direction: column !important;
    gap: 1rem;
  }
  
  .footer-logo-img {
    height: 45px;
  }
  
  .footer-text {
    margin: 0 !important;
  }
  
  .footer-text p {
    font-size: 0.75rem;
    line-height: 1.3;
    padding: 0 0.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}