/* XXL devices (very large screens, 1400px and up) */
@media (min-width: 1400px) {
    body{
        overflow-x: hidden !important;
    }
}

/* Extra large devices (large desktops, 1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    body{
        overflow-x: hidden !important;
    }
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body{
        overflow-x: hidden !important;
    }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body{
        overflow-x: hidden !important;
    }
  .mobile-header {
    background: #fff;
    padding: 5px 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  /* ✅ Mobile Menu Button */
  .mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* ✅ Offcanvas Menu */
  .offcanvas {
    background: #fff;
    width: 280px;
    transition: transform 0.4s ease-in-out;
  }
  .offcanvas-header {
    background: #28a745;
    color: white;
    padding: 15px;
  }
  .offcanvas .nav-link {
    font-size: 18px;
    color: #333;
    padding: 12px;
    padding: 10px !important;
    transition: all 0.3s ease;
  }
  .offcanvas .nav-link:hover {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
  }

  /* ✅ Dropdown Menu Styling */
  .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
  }
  .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px;
  }
  .dropdown-menu .dropdown-item:hover {
    background: #28a745;
    color: white;
  }
  .swiper-button-next,
.swiper-button-prev {
  color: white !important;
  height: 25px;
  width: 25px;
  display: none;
  transition: transform 0.3s ease;
}

.btn-stand {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: var(--transition), transform 0.3s ease-in-out;
  }

  .banner-content a {
    display: inline-block;
    padding: 7px 15px;
    font-size: 18px;
    background: #156f01;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.8s forwards;
  }
  .about-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 100px !important;
}

.experience-card {
    position: absolute;
    top: 0;
    left: 0%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding:  10px;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.banner-content h1 {
    font-size: 36px;
}


.banner-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: zoomInOut 10s infinite alternate ease-in-out;
  }

.experience-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.experience-card p {
    font-size: 20px;
    margin-bottom: 0px;
}

.counter-box {
    padding: 15px 10px 3px 10px;
    background: white;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.mb-5 {
    margin-bottom: 1rem !important;
}
.service-card img {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.service-content ul li {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
}

.section-padding {
    padding: 40px 0 30px;
}


.footer-section .col-lg-3{
    margin-bottom: 30px;
}

.social-icons{
    margin-bottom: 20px;
}
    .section-padding {
        padding: 50px 0 40px;
    }
    .footer-section .col-lg-3{
        margin-bottom: 30px;
    }

    .ext-section img {
      height: 375px;
      width: 100%;
      margin-bottom: 20px;
      border-radius: 10px;
      object-fit: cover;
      transition: box-shadow 0.3s ease;
  }
  .related-services {
    border: 1px solid rgba(21, 11, 51, 0.1) !important;
    margin-top: 20px;
    padding: 2rem;
    border-radius: 10px;
}


section{
  overflow-x:  hidden !important;
}
    
}

/* Small devices (phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {

    body{
        overflow-x: hidden !important;
    }
  .mobile-header {
    background: #fff;
    padding: 5px 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  /* ✅ Mobile Menu Button */
  .mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* ✅ Offcanvas Menu */
  .offcanvas {
    background: #fff;
    width: 280px;
    transition: transform 0.4s ease-in-out;
  }
  .offcanvas-header {
    background: #28a745;
    color: white;
    padding: 15px;
  }
  .offcanvas .nav-link {
    font-size: 18px;
    color: #333;
    padding: 12px;
    padding: 10px !important;
    transition: all 0.3s ease;
  }
  .offcanvas .nav-link:hover {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
  }

  /* ✅ Dropdown Menu Styling */
  .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
  }
  .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px;
  }
  .dropdown-menu .dropdown-item:hover {
    background: #28a745;
    color: white;
  }
  .swiper-button-next,
.swiper-button-prev {
  color: white !important;
  height: 25px;
  width: 25px;
  display: none;
  transition: transform 0.3s ease;
}

.btn-stand {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: var(--transition), transform 0.3s ease-in-out;
  }

  .banner-content a {
    display: inline-block;
    padding: 7px 15px;
    font-size: 18px;
    background: #156f01;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.8s forwards;
  }
  .about-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 100px !important;
}

.experience-card {
    position: absolute;
    top: 0;
    left: 0%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding:  10px;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.experience-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.experience-card p {
    font-size: 20px;
    margin-bottom: 0px;
}

.counter-box {
    padding: 15px 10px 3px 10px;
    background: white;
    border-radius: 10px;
    margin: 0 auto;
    width: 70%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.mb-5 {
    margin-bottom: 1rem !important;
}
.service-card img {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.service-content ul li {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
}

.section-padding {
    padding: 40px 0 30px;
}


.footer-section .col-lg-3{
    margin-bottom: 30px;
}

.social-icons{
    margin-bottom: 20px;
}

.ext-section img {
  height: 375px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}




}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    body{
        overflow-x: hidden !important;
    }
  .mobile-header {
    background: #fff;
    padding: 5px 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  /* ✅ Mobile Menu Button */
  .mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  /* ✅ Offcanvas Menu */
  .offcanvas {
    background: #fff;
    width: 280px;
    transition: transform 0.4s ease-in-out;
  }
  .offcanvas-header {
    background: #28a745;
    color: white;
    padding: 15px;
  }
  .offcanvas .nav-link {
    font-size: 18px;
    color: #333;
    padding: 12px;
    padding: 10px !important;
    transition: all 0.3s ease;
  }
  .offcanvas .nav-link:hover {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
  }

  /* ✅ Dropdown Menu Styling */
  .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
  }
  .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 10px;
  }
  .dropdown-menu .dropdown-item:hover {
    background: #28a745;
    color: white;
  }
  .swiper-button-next,
.swiper-button-prev {
  color: white !important;
  height: 25px;
  width: 25px;
  display: none;
  transition: transform 0.3s ease;
}

.btn-stand {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    transition: var(--transition), transform 0.3s ease-in-out;
  }

  .banner-content a {
    display: inline-block;
    padding: 7px 15px;
    font-size: 18px;
    background: #156f01;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.8s forwards;
  }
  .about-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 100px !important;
}

.experience-card {
    position: absolute;
    top: 0;
    left: 0%;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding:  10px;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.experience-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.experience-card p {
    font-size: 20px;
    margin-bottom: 0px;
}

.counter-box {
    padding: 15px 10px 3px 10px;
    background: white;
    border-radius: 10px;
    margin: 0 auto;
    width: 70%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.mb-5 {
    margin-bottom: 1rem !important;
}
.service-card img {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.service-content ul li {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
}

.section-padding {
    padding: 40px 0 30px;
}


.footer-section .col-lg-3{
    margin-bottom: 30px;
}

.social-icons{
    margin-bottom: 20px;
}


.ext-section img {
  height: 275px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  object-fit: cover;
  transition: box-shadow 0.3s ease;
}

.serv-inn .carousel img {
  width: 100%;
  object-fit: cover;
  height: 325px;
}

.related-services {
  border: 1px solid rgba(21, 11, 51, 0.1) !important;
  padding: 2rem;
  margin-top: 20px;
  border-radius: 10px;
}


.video-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex
;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease-in-out;
}

.tp-contact-form__form-box {
  background-color: #1987542b;
  padding: 30px 20px;
}



















}
