/* Mobile Responsive Styles */
@media screen and (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    background-color: #4d5878;
    text-align: center;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px;
  }

  .slider_section .detail-box h1 {
    font-size: 28px;
  }

  .slider_section .detail-box .btn-box {
    flex-direction: column;
  }

  .slider_section .detail-box .btn-box a {
    width: auto;
    padding: 10px 20px;
  }

  .about_section .row,
  .service_section .service_container,
  .client_section .box {
    flex-direction: column;
    align-items: center;
  }

  .service_section .service_container {
    padding: 20px;
  }

  .service_section .service_container .box {
    width: 100%;
    max-width: 300px;
  }

  .client_section .box {
    padding: 25px 15px;
  }

  .contact_section .form_container {
    margin-right: 0;
  }

  .info_section {
    text-align: center;
  }

  .info_section .info_contact,
  .info_section .info_links {
    align-items: center;
  }

  .whatsapp-float,
  .quote-float {
    right: 15px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media screen and (max-width: 575px) {
  .slider_section .detail-box h1 {
    font-size: 22px;
  }

  .about_section .detail-box a,
  .service_section .btn-box a,
  .contact_section .form_container button {
    padding: 8px 20px;
  }

  .news_section .box .detail-box {
    padding: 15px;
  }

  .footer_section p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .whatsapp-float,
  .quote-float {
    right: 15px;
    bottom: 60px; /* Adjust if overlapping */
    font-size: 14px;
    display: flex !important; /* Ensure visibility */
    z-index: 9999;
  }
}
/* Make WhatsApp and Quote buttons show on mobile */
@media screen and (max-width: 767px) {
  .whatsapp-float,
  .quote-float {
    display: flex !important;
    font-size: 14px;
    right: 15px;
    z-index: 9999;
  }

  .whatsapp-float {
    bottom: 70px;
  }

  .quote-float {
    bottom: 20px;
  }
}

/* Optional fix if toggler isn't animated */
.navbar-toggler .s-1, 
.navbar-toggler .s-2, 
.navbar-toggler .s-3 {
  background-color: white;
  height: 3px;
  width: 25px;
  margin: 5px 0;
  display: block;
}
 
