.google-maps-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 30px 0;
    text-align: center;
    margin-top: 0px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.google-maps-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-title {
    color: #004aad;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 50px;
    margin-bottom: 40px;
}

.map-container {
    max-width: 100%;
    height: 450px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid;
    border-image: linear-gradient(to right, #004aad, #26cb2d) 1;
    margin-bottom: 80px;
    transition: box-shadow 0.5s ease;
  }
  
  .map-container:hover {
    box-shadow: 0px 12px 45px rgba(0, 74, 173, 0.5); 
  }

.map-container {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s ease-in-out 0.3s, opacity 1s ease-in-out 0.3s;
  opacity: 0;
}

.google-maps-section.visible .map-container {
  transform: scaleX(1);
  opacity: 1;
}

  
  @media (max-width: 991px) {
    .location-title {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }
  
    .map-container {
      height: 400px;
      margin-bottom: 60px;
    }
  }
  
  @media (max-width: 767px) {
    .location-title {
      font-size: 2rem;
      padding: 0 15px;
    }
  
    .map-container {
      height: 350px;
      margin: 0 10px 50px;
    }
  }
  
  @media (max-width: 576px) {
    .location-title {
      font-size: 1.8rem;
      margin-bottom: 25px;
      padding: 0 10px;
    }
  
    .map-container {
      height: 300px;
      border-width: 3px;
      margin: 0 10px 40px;
    }
  }
  