/* contact.css */
.contact-section {
    padding: 60px 20px;
    background: #f4f7fa;
    font-family: 'Poppins', sans-serif;
  }
  
  .contact-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 550px; /* Set fixed height for equal sides */
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0a3d62;
    margin-top: 70px;
  }
  
  .info-item {
    margin-bottom: 25px;
  }
  
  .info-item h3 {
    font-size: 20px;
    color: #0a3d62;
    margin-bottom: 8px;
  }
  
  .info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 2px;
  }

  .info-item p:hover{
    color: #0a3d62;
    text-decoration: underline;
  }
  
  .contact-map {
    flex: 1.2;
    min-width: 300px;
    height: 100%; /* Full height */
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%; /* Full height */
    border: 0;
    border-left: 2px solid #e0e0e0;
  }
  
  /* Responsive for Mobile */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      height: auto; /* Remove fixed height on small screens */
    }
  
    .contact-map {
      height: 300px;
      border-left: none;
      border-top: 2px solid #e0e0e0;
    }
  }
  