 /* contact us page css start  */
 .about-banner {
    position: relative;
    height: 50vh; /* Full screen height */
    background: url('../img/testimonial/bg.webp');
    background-size: cover;
    background-position: center;
  }
  
  .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 98, 127, 0.7); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .banner-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
  }
  
  .home-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
  }
  
  .home-icon {
    width: 30px;
    margin-right: 10px;
  }
  
  .home-text {
    font-size: 20px;
  }
  
  .about-heading {
    font-size: 50px;
    font-weight: bold;
  }
  
  .about-text {
    font-size: 18px;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .about-heading {
      font-size: 30px;
    }
  
    .home-text {
      font-size: 16px;
    }
  }
  .two-column-section-1,.two-column-section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }

   /* General Reset */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  gap: 2rem;
  flex-direction: row; /* Default: row for large screens */
}

/* Left Section: Contact Info */
.contact-container .contact-info {
  flex: 1;
  max-width: 40%;
}

.contact-container .contact-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-container .contact-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 2rem;
}

.contact-container .info-item {
  display: flex;
  align-items: flex-start; /* top align icon and text */
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-container .info-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  min-height: 60px;
  background-color: var(--tp-theme-1);
  border-radius: 50%;
  flex-shrink: 0; /* prevent shrinking on small screens */
}

.contact-container .info-item .icon i {
  font-size: 1.5rem;
  color: #fff;
}

.contact-container .info-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}


/* Right Section: Contact Form */
.contact-form {
  flex: 1;
  max-width: 50%;
  background-color: var(--tp-theme-1);
  color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-form h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 0.3rem;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  padding: 0.8rem;
  background-color: var(--tp-theme-2);
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 0.3rem;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #fff;
  color: var(--tp-theme-2);
}

/* Responsive - Mobile Screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem; /* Less padding on small screens */
    gap: 1.5rem;
  }

  .contact-container .contact-info,
  .contact-form {
    max-width: 100%;
    padding: 1rem;
  }
}

      
      
      /* Map Section Styling */
      .map-container {
        width: 90%;
        height: 400px;
        margin: 2rem auto;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      }
      
      
          /* contact us page css end  */
      