@media (max-width: 1300px) {}

@media (max-width: 1120px) {}

@media (max-width: 992px) {
  .hero_area {
    min-height: 100vh; /* Ensure it takes the full height of the viewport */
    position: relative; /* Position relative for absolute positioning of inner elements */
    overflow: hidden; /* Hide overflow if needed */
  }

  .hero_bg_box {
    position: absolute; /* Position it absolutely to fill the hero area */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex; /* Use flexbox to center the image */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

  .bg_img_box img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Cover the area without distortion */
  }


  .hero_area .hero_bg_box {
    display: none; /* Hide the hero background box */
  }

  .slider_section {
    padding: 45px 0 75px 0; /* Adjust padding as needed */
  }

  .custom_nav-container .navbar-nav {
    padding-top: 15px; /* Adjust navbar padding */
    align-items: center; /* Align items in the navbar */
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 25px; /* Adjust padding for nav links */
    margin: 5px 0; /* Adjust margin for nav links */
  }
}

@media (max-width: 768px) {
  .about_section .img-box {
    margin-bottom: 45px; /* Margin for the about section */
  }
}

@media (max-width: 576px) {
  .header_section .header_top .contact_nav a span {
    display: none; /* Hide contact nav span */
  }

  .client_section .client_container {
    width: 100%; /* Full width for client container */
  }

  .client_section .box {
    margin: 0; /* Remove margin for client box */
  }

  .owl-nav {
    display: flex; /* Flex display for owl nav */
    justify-content: center; /* Center owl nav */
    margin-top: 45px; /* Margin for owl nav */
  }

  .client_section .owl-carousel .owl-nav .owl-prev,
  .client_section .owl-carousel .owl-nav .owl-next {
    position: unset; /* Reset position for owl nav buttons */
    margin: 0 2.5px; /* Margin for nav buttons */
  }
}

@media (max-width: 480px) {
  .slider_section .detail-box h1 {
    font-size: 2rem; /* Font size for detail box */
  }

  .track_section form {
    flex-direction: column; /* Column layout for form */
    align-items: flex-start; /* Align items to flex start */
  }

  .track_section form input {
    width: 100%; /* Full width for input */
  }

  .track_section form button {
    padding: 10px 60px; /* Padding for button */
    margin-top: 10px; /* Margin for button */
  }
}

@media (max-width: 420px) {
  .service_section .box {
    flex-direction: column; /* Column layout for service box */
  }

  .service_section .box .img-box {
    justify-content: flex-start; /* Align img-box to flex start */
    margin-bottom: 15px; /* Margin for img-box */
  }
}

@media (max-width: 376px) {}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px; /* Max width for container */
  }
}