.footer {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
    background-color: rgb(255, 255, 255);
}
.home-page .footer {
    margin-top: 37vh;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    max-width: 350px; /* Keep the logo size */
    -webkit-box-reflect: below -146px linear-gradient(transparent, rgba(0, 0, 0, 0.2)); /* Bring the reflection closer */
    transform: perspective(450px) rotateX(10deg); /* Add subtle 3D effect */
    
}



.footer-links {
    text-align: left;
    display: flex;
    gap: 50px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-column a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 500;
}

.footer-links-column a:hover {
    color: #004680;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 20px;
    color: #2c2c2c;
    text-decoration: none;
}

.footer-social a:hover {
    color: #005180;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 12px;
}

.footer-bottom a:hover {
    color: #05465c;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 13vh;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}
/* Language Selector */
.language-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
  }
  
  .language-selector .language-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .language-dropdown-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .language-dropdown-btn:hover {
    background-color: #0056b3;
  }
  
  .language-arrow-down {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .language-dropdown-menu {
    display: none;
    position: absolute;
    bottom: 100%; /* Dropdown opens upwards */
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    min-width: 150px;
    z-index: 1000;
  }
  
  .language-dropdown-menu .language-dropdown-item {
    padding: 10px 15px;
    border: none;
    background-color: white;
    color: #333;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
  }
  
  .language-dropdown-menu .language-dropdown-item:hover {
    background-color: #f1f1f1;
  }
  
  .language-dropdown:hover .language-dropdown-menu {
    display: block;
  }
  
  .language-dropdown:hover .language-arrow-down {
    transform: rotate(-135deg);
  }
  