@media (max-width: 1120px) {}

@media (max-width: 992px) {
  .hero_area {
    min-height: auto;
  }

  .hero_area::before {
    width: 100%;
  }

  .slider_section .slider_form {
    width: 100%;
    max-width: 550px;
    margin-top: 45px;
    margin-bottom: 75px;
  }

  .slider_section .carousel-indicators {
    left: 0;
    justify-content: center;
  }

  .news_section .news_container {
    flex-direction: column;
  }

  .news_section .news_container .box:nth-child(2) {
    margin-top: 75px;
    margin-bottom: 75px;
  }

  .contact_section .contact_form {
    padding: 25px 15px;
    margin: 0 auto;
    max-width: 475px;
  }

  .why_section .why_container {
    padding: 0;
  }

  .info_section .box {
    width: 100%;
  }

  .footer_section p {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .about_section .detail-box {
    padding: 0;
    margin-bottom: 45px;
  }

  .about_section .detail-box::before {
    right: -5px;
  }

  .about_section .img-box {
    padding: 45px 0;
  }

  .service_section .service_container .box:nth-child(2) {
    margin: 45px 0;
  }

  .service_section .service_container {
    flex-direction: column;
  }

  .contact_section .img-box {
    padding-left: 25px;
    margin-top: 35px;
  }

  .app_section .detail-box {
    margin-bottom: 35px;
  }

  .info_section .info_links ul {
    flex-direction: column;
    align-items: center;
  }


}

@media (max-width: 576px) {
  .news_section .news_container {
    padding: 0;
  }
}

@media (max-width: 480px) {}

@media (max-width: 420px) {
  .why_section .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why_section .box .img-box {
    margin: 0;
    margin-bottom: 25px;
  }
}

@media (max-width: 360px) {
  .app_section .detail-box .btn-box {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Mobile menu as slide-in drawer */
@media (max-width: 991px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* hidden offscreen */
    width: 75%;   /* take 75% of screen */
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 99999;
  }

  .mobile-menu.show {
    right: 0; /* slide in */
  }

  .mobile-menu ul {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }

  .mobile-menu .nav-link {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
  }

  /* Close button inside drawer */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
}
/* Highlight active nav item on big screens */
@media (min-width: 992px) {
  .navbar-nav .nav-link.active {
    color: #fff !important; /* highlight color */
    font-weight: 600;
    border-bottom: 2px solid #fff; /* underline effect */
  }
}

/* Scroll behavior */

.header_section {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ff9800;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: top 0.4s ease;
  z-index: 100000;
}

/* Push page content below header */
body {
  padding-top: 70px !important; /* adjust to your header height */
}
/* Show close button only on small screens */
.close-btn {
  display: block;
}

@media (min-width: 992px) {
  .close-btn {
    display: none; /* hide on big screens */
  }
}

@media (max-width: 767px) {
  .logo-img {
    max-height: 80px !important; /* smaller height */
  }
  body {
    padding-top: 90px !important; /* slightly more space for mobile nav */
  }
}
