

@media (max-width: 1120px) {}

@media (max-width: 992px) {
  
  .custom_nav-container .navbar-nav {
    padding-top: 15px;
    align-items: center;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 25px;
    margin: 5px 0;
  }

  .footer_section .footer_bg_box img {
    -o-object-position: 10% top;
    object-position: 10% top;
  }
}

@media (max-width: 767px) {

  .about_section .img-box {
    margin-bottom: 30px;
  }

  .contact_section .form_container {
    margin-bottom: 45px;
  }

  .client_section .box {
    margin: 45px 0;
  }

}

@media (max-width: 576px) {}

@media (max-width: 480px) {
  .about_section {
    border-radius: 90px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 420px) {}

@media (max-width: 376px) {}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* Show large image carousel, hide small one by default */
#carouselExampleControls {
    display: block;
}
#carouselExampleControls2 {
    display: none;
}

/* On small screens, show small carousel and hide large one */
@media screen and (max-width: 768px) {
    #carouselExampleControls {
        display: none;
    }
    #carouselExampleControls2 {
        display: block;
    }
}

@media (max-width: 1200px) {
  .custom-caption {
    max-width: 50%;
  }

  .custom-caption h2 {
    font-size: 2rem;
  }

  .custom-caption p {
    font-size: 1.1rem;
  }
}

/* ✅ Medium screens (tablets) */
@media (max-width: 992px) {
  .custom-caption {
    max-width: 60%;
  }

  .custom-caption h2 {
    font-size: 1.7rem;
  }

  .custom-caption p {
    font-size: 1rem;
  }
}

/* ✅ Small screens (phones) */
@media (max-width: 768px) {
  .custom-caption {
    top: 40%;
    max-width: 80%;
    padding: 10px;
  }

  .custom-caption h2 {
    font-size: 1rem;
  }

  .custom-caption p {
    font-size: 0.65rem;
  }
}

/* ✅ Extra small screens (very small phones) */
@media (max-width: 480px) {
  .custom-caption h2 {
    font-size: 1rem;
  }

  .custom-caption p {
    font-size: 0.55rem;
  }
}



/* Media query for small devices */
@media (max-width: 768px) {
  .custom-btn {
    padding: 0;
    margin: 0;
    font-size: 0.6rem;
    width: 50%;      /* Full width button on small screens */
    box-sizing: border-box;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .custom-btn {
    font-size: 0.65rem;
    padding: 7px 15px;
  }
}