
.footer__container {
    width: 100%;
    /* max-width: 1800px; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
  }
  .footer__area {
    padding: 0 20px; /* Adjust padding as needed for left and right spacing */
  }
  
  .d-flex {
    margin-bottom: 10px; /* Adjust vertical spacing between contact items */
  }
  .footer__col {
    max-width: 600px; /* Adjust based on your layout */
    margin: 0 auto; /* Center the content */
  }
  


.goog-te-combo{
   
 
    background: #B88BBA;
    color: white;
    height: 40px;
    border-radius: 40px;
    padding: 10px;
    border: #1457ff;
    backdrop-filter: blur(20px);
    font-size: medium;
    font-weight: 400;
}

.goog-te-combo option{
    background: #9fbaff;
    height: 40px;
    margin-top: 5px;
    font-size: medium;
    color: black;
}

.footer_text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_text a{
    color: white;
    /* margin-top: 10px; */
    
}


.footer__area{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.footer_link_text a{
    color: white;
    font-size: 14px;
    font-family: Poppins, sans-serif;

}
.gmap_canvas {
    position: relative; /* Allows for positioning child elements */
    overflow: hidden; /* Prevents overflow of child elements */
    background: none !important; /* Ensure no background */
    height: 100%; /* Use 100% height of the parent container */
    width: 100%; /* Use 100% width of the parent container */
    max-height: 400px; /* Set a maximum height for better responsiveness */
    max-width: 130%; /* Set a maximum width for better responsiveness */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add some shadow for better visibility */
    border-radius: 5px; /* Add rounded corners */
  
}
.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 200px;
    width: 200px;
 

  }

  .language-dropdown-container {
    padding: 32px;
    margin-top: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ff9fcf; /* Light background to match theme */
}

.language-label {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #123456; /* Adjust color to match theme */
    margin-bottom: 10px; /* Space between label and dropdown */
}

.language-dropdown {
    display: inline-block;
    padding: 15px;
    border: 1px solid #ff9fcf; /* Border color to match theme */
    border-radius: 5px;
    background-color: #ff9fcf; /* Background color for dropdown */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.language-dropdown:hover {
    border-color: #ff6f91; /* Change border color on hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Slight shadow effect on hover */
}

.language-dropdown select {
    border: none; /* Remove default border from select */
    outline: none; /* Remove outline */
    background: transparent; /* Make background transparent */
    font-size: 16px; /* Font size for dropdown options */
    color: #123456; /* Text color to match theme */
    width: 100%; /* Full width of the dropdown */
}

