.contact_us-Banner{
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../images/contact_banner.avif') center/cover no-repeat;
}

.contact_us-Banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.507); /* Darker overlay */
}

.contact-banner-text h2 {
    color: #ffffff;
    z-index: 2;
}

.contact-banner-text{
    width: 50%;
    display: flex;
    justify-content: end;   
    padding: 13%;
    float: right;
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    padding: 10px;
}
.form-control:focus {
    border-bottom: 2px solid #15c1ae;
    outline: none;
    box-shadow: none;
}


.contact-us_btn {
    background-color: #15c1ae;
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    border: none
}

.contact-us_btn:hover {
    transition: .2s;
    background-color: #0073a0;
    padding: 8px;
    border-radius: 5px;
    border: none
}

.map-section {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
}
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
iframe {
    width: 100%;
    height: 100%;
}

.social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    display: inline-block;
    color: #333; /* Default icon color */
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
  }

  .social-icons a:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
  }

  .social-icons a i {
    padding: 10px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Light background for icons */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Specific colors for each social media icon */
  .social-icons a[href*="facebook.com"] i {
    color: #1877F2;
  }

  .social-icons a[href*="instagram.com"] i {
    color: #E1306C;
  }

  .social-icons a[href*="twitter.com"] i {
    color: #1DA1F2;
  }

  .social-icons a[href*="linkedin.com"] i {
    color: #0A66C2;
  }


@media (max-width: 575px) {

    .contact_us-Banner {
        height: 188px;
    }
}