footer {
  flex-shrink: 0; /* Prevents the footer from shrinking */
  background-color: #f8f9fa;
  padding: 0.75rem 0;
  margin-top: 2rem;
  border-top: 1px solid #dee2e6;
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}

/* Footer content styling */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  bottom: 0;
}

.footer-info {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media  (max-width: 768px)  {
  
  .footer-links {
    display: grid;
    margin-top: 1rem;
    justify-content: center;
  }
  
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0066cc;
}


.lang-btn svg {
  width: 24px;
  height: 16px;
  display: block;
}

/* Add to your style section */
.lang-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0.2rem;
  transition: transform 0.1s;
}

.lang-btn:not(:disabled):hover {
    background-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Add to your CSS */
/* Highlight the active language button */
.lang-btn.active {
  border-bottom: 2px solid var(--primary-color);
  background: transparent;
  color: #2d46b9;
  font-weight: bold;
  transform: scale(1.2);
}
.lang-btn:focus,
.lang-btn:hover {
  outline: none;
  transform: scale(1.2);
  border-bottom: 2px solid var(--primary-color);
  background: transparent;
}

.lang-switcher {
  display: flex; 
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  footer {
    position: static;
    width: 100vw;
    left: 0;
    right: 0;
    min-width: 0;
    box-sizing: border-box;
  }
  .footer-content {
    padding: 0 0.5rem;
    flex-direction: column;
    /* align-items: flex-start; */
  }
}