* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
 margin: 0;
  padding: 0;
  width: 100%;
  /* overflow-x: hidden;  */
}

img {
  max-width: 124%;
  height: auto;
  display: block;
}

/*================================================
header - section
=================================================*/

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .btn-header {
    display: none;
  }
}

/*================================================
hero - section
=================================================*/

/* Tablets: max-width 768px */
@media screen and (max-width: 768px) {
  .about-banner {
    height: 280px;
    background-position: center center;
  }

  .banner-content h1 {
    font-size: 34px;
    text-align: center;
  }

  .banner-content p {
    font-size: 16px;
    text-align: center;
  }
}

/* Mobile: max-width 425px */
@media screen and (max-width: 425px) {
  .about-banner {
    height: 240px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

/* Extra small devices: max-width 375px */
@media screen and (max-width: 375px) {
  .about-banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

/* Smallest devices: max-width 320px */
@media screen and (max-width: 320px) {
  .about-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 13px;
  }
}

/* ===============================
   Responsive - Contact Section
================================= */

/* Tablets: 1024px & below */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: row;
    gap: 20px;
    padding: 0 4%;
  }

  .form-box {
    padding: 30px;
  }

  .contact-box,
  .map-box {
    flex: 1 1 48%;
  }
}

/* Tablets: 768px & below */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 0 30px;
  }

  .left-section,
  .right-section {
    padding: 10px 0;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-row .form-group {
    flex: 1 1 100%;
  }

  .form-box {
    padding: 25px;
  }

  .contact-box,
  .map-box {
   width: 100%;
    height: auto;
    min-height: 175px;
    box-sizing: border-box; 
 }

  /* .map-box {
    height: 300px;
  } */

  .submit-wrap {
    justify-content: center;
  }

  .schedule-call {
    width: 100%;
    text-align: center;
  }
   .map-box {
     border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
  }

  

  .map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

/* Phones: 600px & below */
@media (max-width: 600px) {
  .contact-container {
    padding: 0 20px;
  }

  .form-box {
    padding: 20px;
  }

  .left-section h2,
  .simple-section-heading h2 {
    font-size: 26px;
  }

  .step-content strong {
    font-size: 18px;
  }

  .contact-box p {
    font-size: 16px;
  }

  .contact-box {
    padding: 20px;
  }

  .map-box {
    height: 250px;
  }
}

/* Phones: 425px & below */
@media (max-width: 425px) {
  .contact-container {
    padding: 0 15px;
  }

  .form-box {
    padding: 15px;
  }

  .form-box button {
    width: 100%;
    font-size: 15px;
  }

   .map-box {
    width: 100%;
    height: 250px; /* or increase to 300px for better look */
    padding: 0;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
  }
  

  .map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }

  .hr1 {
    margin: 30px 20px;
  }
}

/* Phones: 375px & below */
@media (max-width: 375px) {
  .schedule-call {
    font-size: 13px;
    padding: 10px 20px;
  }

  .form-box input,
  .form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  .contact-box p {
    font-size: 15px;
  }

  .map-box {
    height: 180px;
  }
}

/* Phones: 320px & below */
@media (max-width: 320px) {
  .left-section h2,
  .simple-section-heading h2 {
    font-size: 22px;
  }

  .form-box button {
    font-size: 14px;
    padding: 12px;
  }

  .map-box {
    height: 160px;
  }

  .contact-box {
    padding: 15px;
  }
}

/* --- footer Responsive Adjustments
 --- */
@media (max-width: 1200px) {
  .footer-map {
    right: 10%;
    width: 500px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left) */
    text-align: left; /* Align text to the left */
    gap: 33px;
  }

  .footer-column {
    flex: 1 1 auto;
    min-width: unset;
    width: 100%;
    max-width: 400px; /* Still keep a max-width for readability */
  }

  .footer-about {
    max-width: 400px;
  }

  .footer-logo {
    margin-bottom: 20px;
    margin-top: 0;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  .footer-column .info-line {
    justify-content: flex-start; /* Align info lines to the left */
  }

  .social-icons {
    margin-top: 25px;
  }

  .social-icons a {
    margin-right: 10px; /* Maintain right margin for spacing */
    margin-left: 0; /* Ensure no left margin from previous centering */
  }

  .footer-map {
    right: 0;
    top: 60%;
    transform: translateY(-50%) translateX(20%);
    opacity: 0.05;
    width: 400px;
  }

  hr {
    margin: 60px 20px 20px;
  }

  .footer-bottom {
    padding: 0 20px;
    text-align: left; /* Align bottom text to the left */
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 20px;
  }

  .footer-logo {
    margin-top: -121px;
    margin-left: -4px;
  }
  .footer-about p {
    margin-top: -118px;
  }
  .footer-map {
    display: none;
  }

  .footer-column {
    padding: 0 10px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column a,
  .footer-column .info-line,
  .footer-bottom {
    font-size: 14px;
  }

  .footer-bottom p {
    line-height: 1.5;
  }

  .footer-bottom a br {
    display: none;
  }

  .footer-bottom a span {
    display: inline;
    margin-top: 0;
  }

  hr {
    margin: 40px 10px 20px;
  }
}

@media (max-width: 480px) {
  .footer-about p {
    font-size: 14px;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    font-size: 14px;
    padding: 6px;
  }

  .footer-column h3 {
    font-size: 17px;
  }
}
