:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #fe5a0e;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


:root {
  --para-color: black;
  --heading-color: #097d13;
  --bg-border: #e9e9e9;
  --primary-color: #fe5a0e;
  --nav-color: #fff;
  --bg-light: #f7f9fa;
  --bg-white: #fff;
  --gun-color: #fff;
  --border-radius: 6px;
  --bg-color: #fff;
  --footer-bg: #1b1a1a;
  --breadcrumb-bg: #e9e9e9;
  --card-bg: #fff;
}













/* General Styles for Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -50px;
  z-index: 1000;
  display: none; /* Hide by default */
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
  /* Overlay styles */
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: -1; 
  border-radius: .25rem;
}

  
  /* Show the dropdown menu on hover for larger screens */
  .nav-item:hover .dropdown-menu {
    display: block;
  }
  .parent-container {
    position: relative;
  }

/* Style for inner dropdown menu */
.inner-dropdown-menu {
  display: none; /* Hide by default */
  position: absolute;
  top: 80%; /* Center vertically */
  left: 100%; /* Align to the right of the parent container */
  transform: translateY(-15%); /* Center vertically relative to its own height */
  border-radius: .25rem;
  border: 1px solid rgba(0,0,0,.125);
  background-color: #ffffff;
  overflow-y: auto; /* Make it scrollable if content overflows */
  max-height: 300px; /* Limit the maximum height to trigger scrolling */
  width: 500px; /* Adjust as needed */
  z-index: 1000; /* Ensure it appears on top of other elements */
}




  /* .inner-dropdown-menu_2{
    display: none; 
    position: absolute;
    top: 75%;
    left: 100%;
    margin-top: -1px;
    border-radius: .25rem;
    border: 1px solid rgba(0,0,0,.125);
    background-color: #ffffff;
    
  }
   */
  /* Show the inner dropdown menu when its parent is hovered */
  .dropdown-item:hover .inner-dropdown-menu {
    display: block;
  }

  .dropdown-item:hover .inner-dropdown-menu_2{
    display: block;
  }

  .nav-inner-item li:hover{
    background-color: darkorange;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {

 

    /* Adjust dropdown and inner dropdown menus on smaller screens */
 
  
    .inner-dropdown-menu,.inner-dropdown-menu_2 {
      position: static;
      float: none;
      margin-top: 2.5rem;
    }
  
    /* Ensure dropdown menus are visible on smaller screens only when hovered */
    .nav-item:hover .dropdown-menu {
      display: block;
    }
  
    .dropdown-item:hover .inner-dropdown-menu {
      display: block !important;
    }

    /* .dropdown-item:hover .inner-dropdown-menu_2{
      display: block;
    } */

       /* Ensure that the dropdown has a maximum height and scrolls when necessary */
.dropdown-menu {
  max-height: 300px; /* Adjust based on your layout */
  overflow-y: auto; /* Enable vertical scrolling */
}

/* Styling for inner dropdown menus */
.inner-dropdown-menu {
  max-height: 200px; /* Adjust as needed */
  overflow-y: auto;
  max-width: 80%;
}

/* Optional: Style the list inside the inner dropdown menu */
.nav-inner-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Optional: Ensure the list items have proper spacing */
.nav-inner-item li {
  padding: 0.5rem; /* Adjust for padding around each item */
}
  }
  

  .nav-inner-item{
    display: flex;
    flex-direction: column;
  }

  .mobile-position{
    width: 125px;
    margin-left: 20px;
    margin-top: 10px;
  }


  /* social-icon css */
  .social-icons{
    position: fixed;
    top: 85%;
    left: 1%;
    z-index: 999;
    padding: 0.4%;  
  }
  

  .social-icons .call-icon{
    margin-top: 10%;
  }

  .social-icons .fa-phone{
    font-size: 1.5rem;
    color: white;
    background-color: #fe5a0e;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-icons .fa-phone:hover{
    color: #fe5a0e ;
    background-color: white;
    transition: all 0.5s;
  }
  

  .social-icons .fa-envelope{
    font-size: 1.5rem;
    color: white;
    background-color: grey;
    padding: 10px;
    border-radius: 50%;
  }
  
  .social-icons .fa-envelope:hover{
    color: grey ;
    background-color: white;
    transition: all 0.5s;
  }






  /* contact-icon css */
  .contact-icon{
    position: fixed;
    top: 30%;
    /* margin-left: 2%; */
    right: 0%;
    z-index: 999;
    background-color: white;
    padding: 0.4%;
   border-top-left-radius: 5px;
   border-bottom-left-radius: 5px;
    
  }

  @media (max-width: 768px) {
    .contact-icon{
    display: none;      
    }
  }
  
  .contact-icon .call-icon{
    margin-top: 5%;
  }

  .contact-icon .fa-phone{
    font-size: 1.5rem;
    color: white;
    background-color: #fe5a0e;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-icon .fa-phone:hover{
    color: #fe5a0e ;
    background-color: white;
    transition: all 0.5s;
  }
  
  
  .contact-icon .fa-whatsapp{
    font-size: 1.5rem;
    color: white;
    background-color: green;
    padding: 12px;
    border-radius: 5px;
  }
  
  .contact-icon .fa-whatsapp:hover{
    color: green;
    background-color: white;
    transition: all 0.5s;
  }
  
  

  .contact-icon .fb-icon{
    margin-top: 5%;
  }

  .contact-icon .fa-facebook{
    font-size: 1.5rem;
    color: white;
    background-color: #454ed8;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center
  }

  .contact-icon .fa-facebook:hover{
    color: #454ed8;
    background-color: white;
    transition: all 0.5s;
  }


  
  .contact-icon .yt-icon{
    margin-top: 5%;
  }

  .contact-icon .fa-play{
    font-size: 1.5rem;
    color: white;
    background-color: red;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center
  }

  .contact-icon .fa-play:hover{
    color: red;
    background-color: white;
    transition: all 0.5s;
  }
  
  
  .contact-icon .inst-icon{
    margin-top: 5%;
  }

  .contact-icon .fa-instagram{
    font-size: 1.5rem;
    color: white;
    background-color: rgb(237, 60, 184);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center
  }

  .contact-icon .fa-instagram:hover{
    color: rgb(237, 60, 184);
    background-color: white;
    transition: all 0.5s;
  }

  .contact-icon .linkedin-icon{
    margin-top: 5%;
  }

  .contact-icon .fa-linkedin{
    font-size: 1.5rem;
    color: white;
    background-color: rgb(60, 148, 237);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center
  }

  .contact-icon .fa-linkedin:hover{
    color: rgb(60, 148, 237);
    background-color: white;
    transition: all 0.5s;
  }
  
  
  
/* Style the image in the modal */
.modal-body img {
  max-width: 100%;
  max-height: 80vh;
  cursor: zoom-in;
}

/* Style the zoom effect */
.modal-body {
  text-align: center;
}

.modal-body img.zoomed {
  transform: scale(2); /* Zoom level, adjust as needed */
}

.modal-body img {
  transition: transform 0.3s ease;
}

.cta-section {
  background-color: #6ed17596;
  padding: 2rem;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* margin-top: 50px; */
  /* padding-bottom: 50px; */
}
.cta-section h2 {
  margin-bottom: 1rem;
}
.cta-section .btn-primary {
  margin-top: 1rem;
}


::placeholder,option{
  color: black;
  opacity: 1; /* Firefox */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Custom CSS for active navigation link */
.navbar-nav .nav-item .nav-link.active {
  color: orange; /* Text color for the active link */
  font-weight: bold; /* Optional: Make text bold */
}

.navbar-nav .nav-item .nav-link.active::after {
  content: ""; /* Adds a visual indication */
  display: block;
  width: 100%;
  height: 2px;
  background-color: orange; /* Orange underline */
  position: absolute;
  bottom: 0;
  left: 0;
}

.sub-img{
 cursor: pointer;
}



  .useful-links{
   justify-content: center !important;
  }


  @media (max-width: 1024px) {
    .w3l-main-slider .banner-info-bg {
      max-width: 520px !important;
      /* margin-top: 100px; */
      margin-bottom: 30px;
  }

  .btn-style{
    padding: 0.375rem 0.75rem;
  }
    
  }


@media (max-width: 768px) {


  
 .useful-links{
  justify-content: start !important;
 }

 .w3l-main-slider .banner-view {
    /* background: url(../website/assets/images/slider/slider-1.png) no-repeat center; */
    background-size: contain;
    position: relative;
    z-index: 0;
    display: grid;
    align-items: center;
    padding: 3em 0;
    background-repeat: no-repeat;
    background-position: center;
}


.w3l-main-slider .banner-info-bg p,a.banner_btn{
display: none !important;
}

.w3l-main-slider .banner-info-bg h5,.description-info{

  color: var(--heading-color) !important;
}

.w3l-main-slider .banner-info-bg {
  max-width: 360px !important;
  justify-content: start;
}

/* Optional: Add hover effect */
.dropdown-item:hover {
  background-color: white !important; /* Light grey background on hover */
  color: black !important;
}


}

.inner-banner-info{
  margin-right: 0px !important;
  display: flex;
  justify-content: end;
}
/* #products .product_item:nth-child(even){
  background-color: aliceblue !important;
} */

#contactForm .error, #surveyForm .error, #brochure_form .error, #careerForm .error{
  color: red;
}

#recaptchaSurvey-error, #recaptchaContact-error, #recaptchaBrochure-error, #recaptchaCareer-error{
  color: red;
  font-size: 16px;
  font-weight: 600;
}

.fixImage{
  object-fit: cover;
}

.emailInfo{
  display: flex;
  align-items: center;
}


@media (max-width: 425px) {
  
 .w3l-main-slider .banner-view {
  /* background: url(../website/assets/images/slider/slider-1.png) no-repeat center; */
  background-size: contain;
  position: relative;
  z-index: 0;
  display: grid;
  align-items: center;
  padding: 3em 0;
  background-repeat: no-repeat;
  background-position: center;
}
}

/* Optional: Add hover effect */
.dropdown-item:hover {
  background-color: darkorange; /* Light grey background on hover */
  color: white;
}

.proImage{
 height: 160px;
}

.form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--green);
}

.features_list {
  position: relative ;

}

.features_list .inner-container {
  position: relative ;
  background: #fff;
  padding: 74px 55px 30px 55px;
  margin: -175px -55px 0px -55px;
}

.features_list .title-box {
  position: relative ;
  /* max-width: 950px; */
  width: 100%;
}

.features_list .title-box .top-text {
  position: relative ;
  display: block;
  font-size: 16px;
  color: #ffc107;
  font-weight: 700;
  margin-bottom: 10px;
}

.features_list .title-box h1 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 48px;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 23px;
}

.features_list .title-box h3 {
  position: relative;
  display: block;
  font-size: 1em;
  line-height: 32px;
  color: #5d5d66;
  font-weight: 500;
}

.features_list .title-box {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.features_list .upper-content .image-box img {
  width: 100%;
}

.features_list .upper-content .content-box {
  position: relative !important;
  display: block;
  background: #fff;
  margin: 95px 0px 0px -100px;
  padding: 26px 26px 26px 26px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform .5s ease;
}

.features_list .upper-content .content-box .icon-box img {
  height: 80px;
}

.features_list .upper-content .content-box:hover {
  transform: scale(1.1);
}

.features_list .group-title {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.features_list p {
  position: relative;
  display: block;
}

.features_list .icon-box {
  position: relative;
  display: inline-block;
  font-size: 65px;
  line-height: 65px;
  color: var(--orange);
  margin-bottom: 12px;
}

.features_list .lower-content .left-column .content-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 26px 26px 26px 26px;
  border-radius: 10px;
  margin: -185px -30px 0px 30px;
  transition: transform .5s ease;
}

.features_list .lower-content .left-column .content-box:hover {
  transform: scale(1.1);
}

.features_list .lower-content .left-column .content-box .icon-box img {
  height: 80px;
}

.features_list .lower-content .right-column .content-box {
  position: relative;
  display: block;
  margin-left: 50px;
  margin-top: 50px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 26px 26px 26px 26px;
  border-radius: 10px;
  margin: 20px -30px 0px 30px;
  transition: transform .5s ease;
}

.features_list .lower-content .right-column .content-box:hover {
  transform: scale(1.1);
}

.features_list .lower-content .right-column .content-box .icon-box img {
  height: 80px;
}

.features_list .lower-content .right-column .content-box p {
  margin-bottom: 19px;
}

.features_list .lower-content .right-column .content-box p:last-child {
  margin-bottom: 0px;
}


@media only screen and (max-width: 991px) {
  .features_list .upper-content .content-box {
    margin: 30px 0px;
  }

  .features_list .lower-content .left-column .content-box {
    margin: 0px;
  }

  .features_list .lower-content .right-column .content-box {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1024px) {

  .features_list .inner-container {
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media only screen and (max-width: 425px) {
  .features_list .title-box h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .features_list .lower-content .left-column .content-box,
  .features_list .upper-content .content-box {
    padding: 50px 15px 70px 15px;
  }

  .features_list .inner-container {
    padding: 0 !important;
    margin: 0 !important;
  }

  .main_product_img{
    width: auto !important;
  }
}

.card {
  border: none;
}

.card-title {
  font-size: 1.25rem;
}

footer {
  background-color: #212529;
}

/* product-list main image */
.main_product_img{
  max-height: 365px;
  height: 300px;
  width: 550px;
}
/* product list main image */


.gallery_img{
  height:200px;
  }

  .home_product_img{
    height: 200px;
  }


  .service_img{
    height: 50px;
    width: 50px;
  }

  .features_img{
    height: 70px;
    width: 70px;
  }

  #cam_lock_container {
    display: none;
}

.why_us_section li{
  list-style-type: disc !important;
}
.why_us_section ul{
  margin-left: 30px;
}