@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    font-family: "Exo 2", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #fff;
    color: #000;
    font-size: 16px;
    overflow-x: hidden;
    font-family: "Exo 2", sans-serif;
}
ul{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

/* Header */

header .container{
    max-width: 1220px;
}
.header-top-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0px;
}

.logo {
    width: 290px;
}

.logo a img {
    width: 100%;
}
header {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #0A0A0A;
}
.get-in a{
    font-size: 17px;
    font-weight: 600;
    color: #0A0A0A;
    background-color: #fff;
    padding: 12px 15px 14px 15px;
    border-radius: 5px;
    transition: 0.3s ease;
}
.get-in a i{
    font-size: 15px;
    transition: 0.3s ease;
}
.get-in a:hover i{
  transform: rotate(-45deg);
}
.get-in a:hover{
    background-color: #00bcd4;
    color: #fff;
}

/* New Drop-down Menu */

nav {
    padding: 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-toggle {
    position: absolute;
    right: 0px;
    top: 35px;
    font-size: 24px;
    color: #912524;
    cursor: pointer;
    display: none;
    z-index: 1100;
  }

  .menu-toggle.active::before {
    content: "\2715";
  }

  .menu-toggle::before {
    content: "\2630";
  }

  ul.menus {
    list-style: none;
    display: flex;
    align-items: center;
  }

  ul.menus li {
    position: relative;
  }

  ul.menus li a {
    color: #fff;
    padding: 20px 16px;
    display: block;
    font-size: 18px;
    transition: 0.4s all ease;
    position: relative;
    font-weight: 500;
  }
  ul.menus li a:hover{
    transition: 0.4s all ease;
    color: #00bcd4;
  }

  ul.menus ul {
    display: none;
    position: absolute;
    background: #444;
    top: 100%;
    left: 0;
    min-width: 250px;
    z-index: 999999;
  }

  ul.menus ul ul {
    left: 100%;
    top: 0;
  }

  ul.menus li:hover > ul {
    display: block;
  }

  .submenu-toggle {
    display: none;
    position: absolute;
    right: 16px;
    top: 10px;
    cursor: pointer;
    color: #000;
    font-size: 14px;
  }

  ul.menus ul li a:hover {
    background-color: #2D3748;
    color: #fff !important;
  }

  ul.menus ul ul li a {
    width: 250px;
  }
  .in-pro{
    background-color: #18202b !important;
    transition: 0.4s ease all;
  }
  .in-pro li a{
    color: #fff !important;
    padding: 8px 16px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 16px !important;
  }
  .in-pro li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .in-pro li:last-child{
    border-bottom: none;
  }
  .in-pro li a:hover{
    color: #fff !important;
  }
  .in-pro li a i {
    font-size: 10px;
    color: #fff;
}
  .in-pro li a:hover i{
    color: #fff !important;
  }

  /* New Drop-down Menu End */

  /* Banner Css */

#banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.banner-slides {
  position: relative;
  overflow: hidden;
}

.banner-slides .banner-slide-img {
  width: 100%;
}

.slick-active .banner-slide-img {
  animation: zoom-in-out 12s linear infinite alternate;
}

@keyframes zoom-in-out {

  0% {
    transform: scale(1);
    transform-origin: center;
  }

  100% {
    transform: scale(1.15);
    transform-origin: center;
  }
}

/* About Us */

.about-us{
  padding: 80px 0;
  /* background-image: url(../images/ser-bg.webp); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: -15px;
}
.about-pic{
  position: relative;
  display: inline-block;
  padding-bottom: 96px;
}
.about-img-1{
  margin: 0 0 0 30px;
  display: inline-block;
  position: relative;
}
.dot-img{
  position: absolute;
  right: -30px;
  bottom: 0px;
  z-index: -1;
}
.side-img{
  position: absolute;
  left: -60px;
  bottom: 0px;
  overflow: hidden;
}
.jump{
  animation: jumpani 7s linear infinite;
}
@keyframes jumpani{

  0% {
    transform: translateY(0);
}
  40% {
    transform: translateY(-30px);
}
  100% {
    transform: translateY(0);
}

}

.about-detail h2{
  font-size: 20px;
  padding-bottom: 10px;
  color: #0A0A0A;
}
.about-detail h1{
  font-size: 36px;
  color: #0A0A0A;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 15px;
}
.about-detail p{
  line-height: 28px;
  padding-bottom: 15px;
}
.about-detail h3{
  font-weight: 600;
  color: #0A0A0A;
  padding-bottom: 15px;
}
.read-more a{
  margin-top: 15px;
  position: relative;
  padding: 12px 30px;
  display: inline-block;
  color: #0A0A0A;
  font-size: 17px;
  z-index: 1;
  border: 2px solid #0A0A0A;
  font-weight: 600;
}
.read-more a::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: 0.6s ease all;
  background-color: #0A0A0A;
}
.read-more a:hover::before {
  width: 100%;
  z-index: -1;
}
.read-more a:hover {
  color: #fff;
}
.read-more a i{
  font-size: 15px;
  position: relative;
  top: 0px;
}
.side-img .video-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.side-img .video-box{
  background-image: linear-gradient(90deg, #1e1e2a 0%, #1e1e2a 100%);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  height: 60px;
  width: 60px;
  line-height: 62px;
  border-radius: 50%;
  text-align: center;
}
.ripple {
  position: relative;
}

.ripple::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  animation-delay: 0.9s;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: rippleone 3s infinite;
}

.ripple::after {
  position: absolute;
  content: "";
  animation-delay: 0.6s;
  right: 0;
  bottom: 0;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: rippleone 3s infinite;
}

@keyframes rippleone {
  70% {
      box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
      box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.video-box i{
color: #fff;

}

/* Product */

.product-time {
  padding: 60px 0;
  background-color: #F0F1F3;
}

.product-time h2 {
  font-size: 50px;
  line-height: 40px;
  color: #0A0A0A;
  padding-bottom: 25px;
  text-align: center;
}

.cards{
  height: 340px !important;
}
.card {
  margin: auto;
  position: relative;
  width: 100%;
  height: 275px;
  background: #3f4446;
  border-radius: 20px;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: #0A0A0A;
  transform: skewY(345deg);
  transition: 0.3s;
}

.card:hover::before {
  transform: skewY(390deg);
}

.info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.card .info img {
  max-width: 75%;
  transition: 0.3s;
}

.card:hover .info img {
  max-width: 50%;
  transition: 0.4s;
}

.card .info .title {
  font-size: 23px;
  margin: 10px 0;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.last-card .info .title{
  font-size: 22px;
}

.card .info .price {
  font-size: 1.3em;
  margin: 10px 0;
  font-weight: bold;
}

.card .info button {
  padding: 3px 8px;
  opacity: 0;
  border: 1px solid #001f3f;
  transition: 0.3s;
  background: #0A0A0A;
  border: solid white 2px;
  margin-top: 15px;
}

.card:hover .info button {
  opacity: 1;
}

.card .info p {
  font-size: 16px;
  color: #fff;
}

.View {
  color: #fff;
  font-size: 14px;
}

.allpro {
  text-align: center;
  margin-top: 40px;
}

.allpro a {
  background-color: #1a62ac;
  padding: 15px;
  color: #fff;
  border-radius: 12px;
  transition: 0.4s;
}

.allpro a:hover {
  background-color: #001f3f;
}

/* Our Values */

.value{
  padding: 30px 0;
}
.value h2{
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  padding-bottom: 25px;
  text-align: center;
  font-weight: 500;
}
.first-value{
  position: relative;
  padding-left: 35px;
  height: 227px;
}
.first-value:hover .qual-icon{
  transform: rotateY(180deg);
}
.first-value::before{
  position: absolute;
  left: 4px;
  top: 0;
  height: 100%;
  width: 1px;
  content: "";
  background-color: #fff;
}
.first-value::after{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  content: "";
  background-color: #fff;
}
.first-value h3{
  color: #fff;
  font-size: 24px;
  padding-bottom: 15px;
}
.first-value p{
  color: #fff;
  font-size: 17px;
}
.value-box{
  background-color: #0A0A0A;
  border-radius: 15px;
  padding: 75px 100px;
}
.new-de::before{
  background-color: #fff !important;
}
.qual-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.3s ease-in-out all;
}

  /* Services */

  .service-area.style-three {
    background: #0A0A0A;
    background-position: bottom;
    background-size: contain;
    padding: 80px 0 50px 0;
    margin: 0 0 50px 0;
    margin-bottom: 0
}

.service-right {
    margin-left: 70px
}

.service-area.style-three .section-title.style-two.text-left h5.section-sub-title::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(assets/images/cleaning-shapes2.webp);
    background-repeat: no-repeat;
    left: 0;
    top: 29%
}

.service-single-box-tow {
    background: #fff;
    padding: 20px 20px 22px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center
}

.service-content-tow {
    width: calc(100% - 110px);
    display: inline-block
}

.service-single-box-tow::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 100%;
    background: -webkit-linear-gradient(270deg, #004d75, #004d75 100%);
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 10px;
    transform: scale(.2, 1);
    opacity: 0;
    transition: .5s
}

.service-icon-tow {
    height: 85px;
    width: 85px;
    line-height: 80px;
    text-align: center;
    background: -webkit-linear-gradient(270deg, #0A0A0A, #0A0A0A 100%);
    border-radius: 50%;
    margin: 0 24px 0 0;
    transition: .5s
}

h3.service-title-tow {
    font-size: 20px;
    color: #0A0A0A;
    font-weight: 700;
    margin: 0;
    line-height: normal;
    padding-bottom: 7px;
}
.short{
    font-size: 16px;
    font-weight: 500;
}

.service-btn-tow a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    font-family: "Poppins";
    text-decoration: none
}

.service-btn-tow a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 5px
}

.service-number {
    float: right;
    margin: -11% -10% 0 0;
    height: 45px;
    width: 45px;
    text-align: center;
    background: #fba919;
    border-radius: 50%;
    transition: .5s
}

.service-number h1 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    line-height: 45px
}

.service-single-box-tow:hover::before {
    height: 100%;
    opacity: 1;
    top: 0;
    transform: scale(1)
}
.service-single-box-tow:hover p{
  color: #fff;
}



.service-icon-tow img {
    filter: brightness(0) invert(1);
    transition: .5s
}

.service-area.style-three .cleeny-btn {
    margin-left: 0;
    margin-top: 57px
}

.service-area.style-three .cleeny-btn a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 4px
}

.service-area.style-three .cleeny-btn a {
    background: #fbaf27;
    padding: 16px 46px 15px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s
}

.service-area.style-three .cleeny-btn a:hover {
    color: #fbaf27;
    background-color: #fff;
    transition: 0.3s
}

.service-area.style-three .cleeny-btn a::before {
    background: #FFC704
}

.service-area.style-three .cleeny-btn a::after {
    background: #FFC704
}

.service-single-box-tow:hover .service-icon-tow img {
    filter: brightness(1) invert(0)
}

.service-single-box-tow:hover .service-icon-tow {
    background: #fff
}

.service-single-box-tow:hover .service-number {
    background: #182852;
    box-shadow: 0 0 7px 2px #fff
}

.service-single-box-tow:hover h3.service-title-tow {
    color: #fff;
}

.section-title.style-two.text-left h5.section-sub-title {
    font-size: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600
}

.section-title.style-two.text-left h2.section-main-title {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    line-height: 50px;
    padding-bottom: 30px;
}

.section-title.style-two.text-left h2.section-main-title span {
    color: #fff;
    font-weight: 500;
    font-size: 28px;
}

.section-title-descr {
    color: #fff;
    padding-top: 7px;
    text-align: justify;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 30px;
}

.ihbox-section_our-history .pbmit-ihbox-style-7 {
    margin: 0 10px
}

.ihbox-section_our-history .pbmit-ihbox-style-7 .pbmit-ihbox-box {
    padding: 40px 40px 0 40px
}

.our-history_section .pbmit-company-hostory .simple-text p {
    text-align: left
}

.our-history_section .pbmit-company-hostory .year {
    padding: 6px 20px;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: -17px;
    z-index: 9;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 100px;
    text-align: center;
    background: #f2c21a
}

.service-single-box-tow:last-child {
    margin-bottom: 0;
}

.toos img {
    width: 90%;
}

/* Why Choose Us */

.why-choose{
  padding: 60px 0;
  background-image: url(../images/why-bg.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .why-choose {
    background-attachment: scroll;
  }
}
.why-choose h2{
  font-size: 40px;
  line-height: 40px;
  color: #0A0A0A;
  padding-bottom: 25px;
  text-align: center;
  font-weight: 500;
}
.why-cont p{
  padding: 5px 0;
  line-height: 28px;
  font-size: 17px;
}

/* Industry We Served */

.industry{
    background-color: #F0F1F3;
    padding-top: 60px;
    padding-bottom: 60px;
}
.industry h2{
  font-size: 50px;
  line-height: 40px;
  color: #0A0A0A;
  padding-bottom: 25px;
  text-align: center;
}
.elementor-divider {
    border-bottom: 1px solid #a3a3a3;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}
.elementor-divider::before {
    content: "";
    width: 10%;
    height: 4px;
    position: absolute;
    margin-top: -1px;
    /* margin-left: -7%; */
    background-color: #0A0A0A;
    transform: translateX(-50%);
}
.clients-logo{
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
  margin: 10px 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.in-client{
  margin: 0 0;
}
.clients-logo h4{
  font-size: 20px;
  padding: 15px 0;
  font-weight: 700;
  text-align: center;
  /* text-transform: uppercase; */
  color: #0A0A0A;
}
.clients-logo img{
  padding: 10px 10px 0 10px;
}
.industry img{
  width: 100%;
}
.industry .slick-prev{
  display: none !important;
}
.industry .slick-next{
  display: none !important;
}
.view-but a{
  margin-top: 34px;
  position: relative;
  padding: 12px 30px;
  display: inline-block;
  color: #0A0A0A;
  font-size: 17px;
  z-index: 1;
  border: 2px solid #0A0A0A;
  font-weight: 600;
}
.view-but a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: 0.6s ease all;
  background-color: #0A0A0A;
}
.view-but a:hover::before {
  width: 100%;
  z-index: -1;
}
.view-but a:hover{
  color: #fff;
}
.indus-box{
  margin: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
}

/* Enquiry Now */

.consul{
  position: relative;
  background-color: #F0F1F3;
  padding-top: 40px;
}
.consul h2{
  text-align: center;
  color: #000;
}
.type-time{
  color: #fff;
  font-size: 34px;
  padding-left: 120px;
  font-weight: 600;
  line-height: 48px;
}
.conbox{
  background-color: #3f4446;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 35px 100px;
  /* margin-top: 90px; */
}
.con-icon{
  position: absolute;
  width: 115px;
  height: 115px;
  background-color: #0A0A0A;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -35px;
  left: 50px;
}
.enquiry-btn a{
  position: relative;
  padding: 12px 30px;
  display: inline-block;
  color: #fff;
  font-size: 17px;
  z-index: 1;
  border: 2px solid #fff;
  font-weight: 600;
}
.enquiry-btn a::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: 0.6s ease all;
  background-color: #1e1e2a;
}
.enquiry-btn a:hover::before {
  width: 100%;
  z-index: -1;
}
.enquiry-btn a:hover {
  color: #fff;
}


  /* Footer */

  footer{
    padding: 80px 0 50px 0;
    /* background-image: url(../images/foot-bg.webp); */
    background-color: #0A0A0A;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .foot-logo img{
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
  }
  .first-foot p{
    color: #fff;
    padding-top: 20px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
  }
  .social {
    display: flex;
    margin-top: 18px;
  }
  .facebook {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s all ease;
    cursor: pointer;
}
.facebook a {
  color: #0A0A0A;
  line-height: 0;
  transition: 0.4s all ease;
}
.facebook:hover {
  background-color: #00bcd4;
  transform: translateY(-5px);
}
.facebook:hover a {
  color: #fff;
}
  .second-foot h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding-left: 25px;
    padding-bottom: 20px;
  }
  .second-foot li{
    padding-left: 25px;
  }
  .second-foot li a{
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
  }
  .second-foot li a::before{
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    left: 0;
    top: 5px;
    font-size: 15px;
  }
  .second-foot li a:hover{
    color: #00bcd4;
    padding-left: 25px;
  }
  .second-foot{
    padding-left: 20px;
  }
  .third-foot h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding-left: 5px;
    padding-bottom: 20px;
  }
  .last-foot h2{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding-left: 5px;
    padding-bottom: 27px;
  }
  .third-foot li{
    padding-left: 5px;
  }
  .third-foot li a{
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
  }
  .third-foot li a::before{
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    left: 0;
    top: 5px;
    font-size: 15px;
  }
  .third-foot li a:hover{
    color: #00bcd4;
    padding-left: 25px;
  }
  .address {
    display: flex;
    padding-bottom: 10px;
}
.loca {
    width: 26px;
}
.loca i {
    color: #fff;
    position: relative;
    top: 3px;
    font-size: 17px;
}
.add {
    width: calc(100% - 26px);
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-size: 17px;
}
.add a {
    color: #fff;
    transition: 0.3s all ease;
}
.add a:hover{
  color: #00bcd4;
}
footer .container{
    max-width: 1220px;
}

.copy {
    background-color: #F0F1F3;
    padding-top: 15px;
    padding-bottom: 15px;
}
.copy .container {
    max-width: 1220px;
}
.first-copy {
    color: #0A0A0A;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}
.power {
    text-align: right;
    color: #0A0A0A;
    font-size: 17px;
    font-weight: 600;
}
.power a {
    color: #0A0A0A;
    transition: 0.3s all ease;
}
.power a:hover{
  color: #004d75;
}

/* Fixed Whatsapp Button */

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 99999;
}

.btn-whatsapp-pulse i {
  font-size: 30px;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* Product Page */

.breadcrum {
  background-image: url(../images/breadcrum.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}
.breadcrum::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.65;
}
.bread-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 15px;
}
.bread-cont h1 {
  position: relative;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  padding: 0 10px;
}
.bread-last {
  position: relative;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 0 10px;
}
.bread-last a {
  color: #fff;
  transition: 0.3s ease;
}
.bread-last a:hover{
  color: #00bcd4;
}

/* S3-600 Page Css */

.pro-info{
  padding: 60px 0;
}
.single-info h2{
  font-size: 36px;
  padding-bottom: 15px;
  font-weight: 600;
  color: #0A0A0A;
}
.single-info p{
  padding-bottom: 10px;
  line-height: 28px;
}
.single-info p:last-child{
  padding-bottom: 0;
}
.tech-time {
  padding: 0px 0 50px 0;
}
.material h2 {
  color: #fff;
  font-size: 25px;
  background-color: #0A0A0A;
  padding: 5px 0 8px 10px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  display: inline-block;
  padding-right: 150px;
  font-weight: 600;
}
.tech-time table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.tech-time table th {
  background-color: #0A0A0A;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding: 12px;
  border: 1px solid #e5e5e5;
  width: 50%;
}
.tech-time table td {
  padding: 12px;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 17px;
  width: 50%;
}
.tech-time table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.effi {
  padding: 20px;
}
.construction {
  box-shadow: 0 5px 15px 0 rgba(194.60164794921877, 194.60164794921877, 194.60164794921877, .5);
  border-radius: 10px;
  border-left: 5px solid #0A0A0A;
  padding: 0 15px 20px 20px;
  margin-bottom: 50px;
}
.effi h3 {
  color: #0A0A0A;
  font-weight: 600;
  padding-top: 25px;
  padding-bottom: 18px;
  font-size: 26px;
}
.effi li{
  position: relative;
  padding-left: 35px;
  font-size: 17px;
  padding-bottom: 5px;
  line-height: 28px;
}
.effi li::before{
  position: absolute;
  content: "\f013";
  font-family: "FontAwesome";
  top: 0;
  left: 0;
  color: #0A0A0A;
}
.pro-img img{
  border-radius: 5px;
}

/* Enquiry Form Css */

.page-part {
  padding-top: 50px;
  padding-bottom: 50px;
}

.form-control-feedback {
  display: none;
}

.has-feedback label~.form-control-feedback {
  top: 0 !important;
}

.error {
  text-align: left !important;
  display: table !important;
}

.thnak4 {
  margin-top: 50px;
}

.has-feedback .form-control {
  font-size: 16px !important;
  padding: 20px;
}

.form-group {
  margin: 15px 0 !important;
}

.form-group input {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #0A0A0A;
}

.form-group textarea {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #0A0A0A;
}

.form-group select {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #0A0A0A;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  width: 100% !important;
  border-bottom: 2px solid #31aad6;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 20px 0;
  width: 100% !important;
}

.Submit-box {
  background-color: #0A0A0A;
  color: #fff;
  padding: 10px 15px;
  border: 1px solid #0A0A0A;
  font-size: 17px;
  border-radius: 2px;
  transition: 0.3s ease;
}

.Submit-box:hover {
  background-color: #004d75;
  border: 1px solid #004d75;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #004d75;
  border-bottom: 2px solid #004d75;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.get {
  color: #0A0A0A;
  font-weight: 600;
  font-size: 33px;
  line-height: 45px;
  padding-bottom: 10px;
  text-align: center;
}

.fill {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
}

.Submit-box {
  font-weight: 600;
}


/* Enquiry Form Css End*/

/* Accordian Css Start */

.accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  cursor: pointer;
  color: #fff;
  position: relative;
  box-shadow: 0px 3px 4px #222222 inset, 0px 2px 3px #272727;
  background-color: #0A0A0A;
}
.accordion__item {
  background-color: white;
 
  border-top: none;
}
.accordion__title h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}
.accordion__title i {
  transition: transform 0.3s ease;
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 18px;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0px 20px;
  border-bottom: 1px solid rgb(222, 222, 222);
  
}
.accordion__content p{
  padding: 15px 0 !important;
}
#faq{
  padding-top: 30px;
  padding-bottom: 60px;
  box-shadow: inset 0 10px 26px -10px rgba(0, 0, 0, 0.1);
}

.accordion {
  border: 1px solid rgb(222, 222, 222);
  border-bottom: none;
}
.active .accordion__title i{
transform: rotate(180deg);
transition: 0.5s;
}
.testimonials-heading.faq-titles.mb-2 {
  text-align: center;
}
.general-faq{
  color: #fff;
  font-size: 25px;
  background-color: #1e1e2a;
  padding: 5px 0 8px 10px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  display: inline-block;
  padding-right: 150px;
  font-weight: 600;
}
.accordion__content h4{
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 10px;
}
.accordion__content li{
  position: relative;
  padding-left: 20px;
  display: block;
  padding-top: 3px;
  font-size: 17px;
  margin-top: 7px;
}
.accordion__content li::before{
  position: absolute;
  content: "\f105";
    font-family: "FontAwesome";
    left: 0;
    top: 5px;
    font-size: 15px;
}

/* Contact Us Page Css */

.contact-page {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.er_contact_box {
  padding: 30px 0;
  border-radius: 20px;
  text-align: center;
  background-color: #0A0A0A;
  height: 315px;
  transition: all .5s ease-in-out;
  cursor: pointer;
}

.er_contact_icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.er_contact_icon img {
  max-width: 48px;
  max-height: 48px;
  object-fit: cover;
  transition: all .6s ease-in-out;
}

.in-add h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  padding: 0 0 15px;
}

.in-add p {
  color: #E7E7E7;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

.in-add p>a {
  color: #fff;
  transition: 0.3s ease all;
}
.in-add p>a:hover{
  color: #00bcd4;
}

.in-location {
  color: #fff;
  line-height: 28px;
  font-size: 17px;
}

.er_contact_box:hover {
  transform: translateY(-10px);
}

.er_contact_box:hover .er_contact_icon img {
  transform: scale(-1) rotate(180deg);
}

.map-time {
  margin-top: 50px;
  border-radius: 20px;
  border: 3px solid #0A0A0A;
  height: 455px;
  border-radius: 20px;
}

.map-time iframe {
  border-radius: 20px;
}

/* About Page */

.inner-about{
  padding: 50px 0;
}
.about-page h2{
  font-size: 36px;
  color: #0A0A0A;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 15px;
}
.about-page p{
  line-height: 28px;
  padding-bottom: 15px;
}
.about-page p:last-child{
  padding-bottom: 0;
}
.about-para{
  /* margin-top: 10px; */
  padding-top: 20px;
  background-image: url(../images/why-bg.webp);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
}
@supports (-webkit-touch-callout: none) {
  .about-para {
    background-attachment: scroll;
  }
}
.about-para p{
  line-height: 28px;
  padding-bottom: 10px;
}
.remaining{
  background-color: #F0F1F3;
}
.liq h2{
  font-size: 34px;
}

/* Client */

.client-time{
  padding: 50px 0;
  overflow-x: hidden;
}
.client-time h2{
  font-size: 50px;
  line-height: 40px;
  color: #0A0A0A;
  padding-bottom: 25px;
  text-align: center;
}
.client-box {
  padding: 15px;
  border: 1px solid rgb(34 34 34 / 12%);
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.8s all;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 10px 30px 10px;
}
/* .client-box:hover {
  box-shadow: -2px 2px 20px 7px #0000001c;
  transform: translate(0, -10px);
} */
.cli-div{
  margin-bottom: 30px;
}

/* Client Pdf Button */

.download-wrapper .download-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #0A0A0A;
  color: white;
  border: none;
  border-radius: 4px;
}
.nav-get{
  display: none;
}


/* Terms & condition */

.termp{
  line-height: 32px;
    padding-bottom: 10px;
}

/* Services Page */

.cus-mod{
  padding-top: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.cus-mod p{
  padding-bottom: 15px;
  font-size: 17px;
  line-height: 28px;
}
.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.logo-track {
  display: inline-block;
  animation: scroll-right 24s linear infinite;
}

.logo-track img {
  margin: 10px 8px 40px 8px;
  vertical-align: middle;
  padding: 15px;
  border: 1px solid rgb(34 34 34 / 12%);
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.8s all;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


/* Media Query Start */

@media only screen and (min-width: 1400px) {

  .about-center{
    text-align: center;
  }
  .card{
    height: 315px;
  }
  .cards{
    height: 380px !important;
  }

}

@media only screen and (max-width: 1199px){

  footer .container {
    max-width: 1140px;
  }
  ul.menus li a{
    font-size: 17px;
    padding: 20px 14px;
  }
  .logo {
    width: 248px;
  }
  .get-in a{
    padding: 10px 10px 12px 10px;
  }
  .dot-img{
    right: 0;
  }
  .side-img{
    left: -30px;
  }
  .first-value{
    height: 200px;
  }
  .last-foot{
    margin-top: 30px;
  }
  .foot-logo img{
    width: 265px;
  }

}
  

@media only screen and (max-width: 991px){

  footer .container {
    max-width: 940px;
  }
  .header-top-main{
    display: block;
  }
  ul.menus li a{
    padding: 40px 14px
  }
  nav{
    padding: 0 5px;
  }
  .get{
    font-size: 30px;
    line-height: 28px;
  }
  .fill{
    font-size: 18px;
  }
  .why-helix h2{
    font-size: 31px;
  }
        .menu-toggle {
  display: block;
  }

nav {
  justify-content: flex-start;
}

ul.menus {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #071c2e;
}

ul.menus.active {
  display: flex;
  position: relative;
  top: 20px;
}
ul.menus li a{
  color: #fff;
}

ul.menus li {
  width: 100%;
}

ul.menus ul, ul.menus ul ul {
  position: static;
  width: 100%;
}

ul.menus li:hover > ul {
  display: none;
}

ul.menus li.show > ul {
  display: block;
}

.submenu-toggle {
  display: block;
}
ul.menus li a i{
  display: none;
}
ul.menus ul ul li a{
  width: 89%;
}
ul.menus li a{
  padding: 8px 16px;
}
.t-white {
  color: #fff;
}
.menu-toggle{
  top: -74px;
  font-size: 24px;
  background-color: #912524;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav{
  padding: 0;
}
ul.menus.active{
  top: 0;
}
.submenu-toggle i{
  color: #fff;
  padding: 4px;
  background-color: #912524;
}
ul.menus li a{
  font-size: 17px;
  font-weight: 500;
}
.get-in{
  display: none;
}
.nav-get{
  display: block;
}
.logo {
  width: 290px;
}
.palat{
  display: flex;
  flex-direction: column-reverse;
}
.about-pic{
  margin-top: 35px;
  text-align: center;
  display: block;
}
.service-right{
  margin-left: 0;
  margin-top: 30px;
}
.toos img{
  width: 100%;
}
.con-icon{
  top: 0;
  left: 85px;
  transform: translate(-50% , -50%);
}
.conbox{
  padding: 35px 35px;
}
.type-time{
  padding-left: 110px;
}
.power{
  text-align: center;
}
.about-us{
  padding: 50px 0;
}
.second-foot{
  padding-left: 10px;
}
.menu-toggle{
  color: #0A0A0A;background-color: #fff;
}
.submenu-toggle i{
  background-color: #fff;
  color: #0A0A0A;
}
.first-value {
  height: 225px;
}
.breadcrum{
  padding: 60px 0;
}
.andar-about{
  padding-top: 50px;
  text-align: center;
}
.pro-img{
  padding-top: 30px;
  text-align: center;
}
.general-faq{
  padding-right: 140px;
}
.cus-mod{
  margin-bottom: 0;
}

}

@media only screen and (max-width: 767px){

  .about-detail h2{
    text-align: center;
  }
  .about-detail h1{
    text-align: center;
    font-size: 30px;
  }
  .about-detail p{
     text-align: center;
  }
  .about-detail h3{
    text-align: center;
  }
  .read-more{
    text-align: center;
  }
  .product-time h2{
    font-size: 40px;
  }
  .product-time{
    padding: 50px 0;
  }
  .card{
    height: 375px;
  }
  .service-area.style-three{
    padding: 40px 0 50px 0;
  }
  .section-title.style-two.text-left h2.section-main-title span{
    font-size: 24px;
  }
  .section-title.style-two.text-left h2.section-main-title{
    font-size: 40px;
    text-align: center;
    padding-bottom: 15px;
  }
  .section-title-descr{
    text-align: center;
  }
  .first-value{
    height: auto;
  }
  .value-box{
    padding: 50px 25px;
  }
  .con-icon {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .type-time{
    padding-left: 0;
    line-height: 40px;
    font-size: 28px;
  }
  .conbox{
    padding: 63px 30px 35px 30px;
  }
  .third-foot{
    margin-top: 30px;
  }
  .first-foot p{
    font-size: 16px;
  }
  .second-foot li a{
    font-size: 16px;
  }
  .third-foot li a{
    font-size: 16px;
  }
  .add{
    font-size: 16px;
  }
  .first-copy{
    font-size: 16px;
  }
  .power{
    font-size: 16px;
  }
  footer{
    padding: 50px 0 40px 0;
  }
  .bread-cont h1{
    font-size: 36px;
    text-align: center;
  }
  .about-page h2{
    font-size: 32px;
  }
  .andar-about{
    padding-top: 35px;
  }
  .client-time h2{
    font-size: 40px;
    padding-bottom: 20px;
  }
  .client-time{
    padding: 40px 0;
  }
  .inner-about {
    padding: 40px 0;
  }
  .general-faq {
    padding-right: 75px;
    font-size: 22px;
  }
  .er_contact_box{
    height: auto;
  }
  address{
    margin-bottom: 0;
  }
  .get{
    font-size: 28px;
  }
  .fill {
    font-size: 17px;
  }
  .accordion__title h3{
    padding-right: 40px;
  }
  .long-cont{
    max-height: 524px !important;
  }

}

@media only screen and (max-width: 576px){

  .about-us {
    padding: 40px 0;
  }
  .side-img{
    left: 0;
    margin-left: -21px;
  }
  .side-img img{
    width: 85%;
  }
  .product-time h2 {
    font-size: 36px;
    padding-bottom: 20px;
  }
  .product-time {
    padding: 40px 0;
  }
  .about-img-1{
    margin-left: 0;
  }
  .value h2{
    font-size: 36px;
  }
  .section-title-descr{
    padding-top: 0;
  }
  .section-title.style-two.text-left h2.section-main-title{
    font-size: 36px;
    line-height: 40px;
  }
  .why-choose h2{
    font-size: 36px;
    padding-bottom: 20px;
  }
  .elementor-divider{
    margin-bottom: 30px;
  }
  .industry h2{
    font-size: 36px;
  }
  .type-time {
    padding-left: 0;
    line-height: 32px;
    font-size: 24px;
  }
  .enquiry-btn a{
    padding: 10px 15px;
  }
  .con-icon{
    width: 100px;
    height: 100px;
  }
  .con-icon img{
    width: 56%;
  }
  .view-but a{
    margin-top: 20px;
  }
  .foot-logo{
    text-align: center;
  }
  .first-foot p{
    text-align: center;
  }
  .second-foot{
    padding-left: 0;
    margin-top: 30px;
  }
  .second-foot h2{
    padding-left: 0;
    padding-bottom: 10px;
  }
  .second-foot li{
    padding-left: 0;
  }
  .third-foot h2{
    padding-left: 0;
    padding-bottom: 10px;
  }
  .third-foot li{
    padding-left: 0;
  }
  .last-foot h2{
    padding-left: 0;
    padding-bottom: 17px;
  }
  .industry{
    padding-top: 40px;
  }
  .breadcrum {
    padding: 50px 0;
  }
  .bread-cont h1 {
    font-size: 32px;
    text-align: center;
  }
  .bread-cont{
    gap: 10px;
  }
  .about-page h2{
    text-align: center;
  }
  .about-page p{
    text-align: justify;
  }
  .card{
    height: auto;
  }
  .pro-info {
    padding: 40px 0;
  }
  .single-info h2{
    font-size: 32px;
    text-align: center;
  }
  .single-info p{
    text-align: justify;
  }
  .page-part {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .get {
    font-size: 23px;
    padding-bottom: 10px;
  }
  .iti{
    width: 100%;
  }
  .long-cont {
    max-height: 575px !important;
  }
  .first-cons{
    max-height: 127px !important;
  }
  .second-cons{
    max-height: 152px !important;
  }

}

@media only screen and (max-width: 450px){

  .logo a img {
    width: 80%;
  }
  .menu-toggle{
    top: -60px;
  }
  .about-detail h1{
    font-size: 26px;
  }
  .about-detail p{
    text-align: justify;
  }
  .read-more a{
    padding: 10px 20px;
  }
  .product-time h2 {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .info{
    padding: 10px;
  }
  .view-but a{
     padding: 10px 20px;
  }
  .value-box {
    padding: 30px 25px;
  }
  .service-area.style-three{
    padding-top: 30px;
  }
  .value h2 {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .first-value p{
    font-size: 16px;
  }
  .value-box {
    padding: 30px 15px;
  }
  .section-title.style-two.text-left h2.section-main-title{
    font-size: 32px;
  }
  .section-title.style-two.text-left h2.section-main-title span {
    font-size: 22px;
  }
  .section-title-descr{
    padding-bottom: 20px;
  }
  .service-single-box-tow{
    padding: 15px 15px 17px;
  }
  .service-icon-tow{
    width: 80px;
    height: 80px;
  }
  .service-icon-tow img{
     width: 42px;
  }
  .qual-icon{
    margin-bottom: 15px;
  }
  .first-value h3{
    padding-bottom: 10px;
  }
  .why-choose h2 {
    font-size: 32px;
    padding-bottom: 15px;
  }
  .why-cont p{
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
  }
  .why-choose{
    padding: 40px 0;
  }
  .mob-enq{
    display: block !important;
  }
  .type-time br{
    display: none;
  }
  .type-time{
    text-align: center;
    padding-bottom: 20px;
  }
  .enquiry-btn{
    text-align: center;
  }
  .conbox {
    padding: 63px 15px 35px 15px;
  }
  .enquiry-btn a {
    padding: 8px 12px;
    font-size: 16px;
  }
  .second-foot h2{
    padding-bottom: 5px;
  }
  .third-foot h2{
    padding-bottom: 5px;
  }
  .last-foot h2{
    padding-bottom: 15px;
  }
  .breadcrum {
    padding: 40px 0;
  }
  .about-page h2 {
    font-size: 28px;
  }
  .material h2{
    padding-right: 100px;
    font-size: 22px;
  }
  .effi h3{
    font-size: 24px;
    padding-bottom: 10px;
  }
  .tech-time table th{
    font-size: 17px;
  }
  .tech-time table td{
    font-size: 16px;
  }
  .tech-time{
    padding-bottom: 40px;
  }
  .construction{
    margin-bottom: 40px;
  }
  .in-add h4{
    font-size: 26px;
    padding-bottom: 10px;
  }
  .in-location{
    font-size: 16px;
    line-height: 26px;
  }
  .er_contact_icon{
    margin-bottom: 10px;
    width: 75px;
    height: 75px;
  }
  .er_contact_box{
    padding: 20px 0;
  }
  .er_contact_icon img{
    max-width: 40px;
    max-height: 40px;
  }
  .get {
    font-size: 20px;
    padding-bottom: 8px;
  }  
  .fill {
    font-size: 16px;
  }
  .has-feedback .form-control{
    padding: 15px;
  }
  .long-cont {
    max-height: 650px !important;
  }
  .reqser{
    margin-top: 0.5rem !important;
  }

}

@media only screen and (max-width: 400px){

  .about-us {
    padding: 30px 0;
  }
  .menu-toggle{
    width: 35px;
    height: 35px;
  }
  .about-detail h1 {
    font-size: 24px;
  }
  .about-detail p{
    line-height: 26px;
  }
  .read-more a {
    padding: 8px 15px;
    font-size: 16px;
  }
  .side-img img {
    width: 75%;
  }
  .side-img{
    margin-left: -36px;
  }
  .product-time {
    padding: 30px 0;
  }
  .view-but a {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
  }
  .service-area.style-three {
    padding-top: 20px;
  }
  .service-single-box-tow{
    display: block;
    padding: 15px 10px 17px;
  }
  .service-content-tow{
    width: 100%;
  }
  .service-icon-tow{
    margin: 0 auto;
  }
  h3.service-title-tow{
    padding-top: 7px;
    text-align: center;
    font-size: 18px;
  }
  .short{
    text-align: center;
  }
  .service-icon-tow img {
    width: 36px;
  }
  .service-icon-tow {
    width: 70px;
    height: 70px;
    line-height: 68px;
  }
  .why-choose {
    padding: 30px 0;
  }
  .why-choose h2 {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .why-cont p{
    text-align: left;
    hyphens: none ;
  }
  .industry {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .industry h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .con-icon {
    width: 90px;
    height: 90px;
  }
  .con-icon img {
    width: 52%;
  }
  .conbox {
    padding: 55px 10px 25px 10px;
  }
  .type-time{
    font-size: 20px;
    padding-bottom: 15px;
  }
  .logo a img {
    width: 70%;
  }
  .menu-toggle {
    top: -53px;
  }
  .second-foot h2{
    font-size: 24px;
  }
  .second-foot li a{
    margin-top: 5px;
  }
  footer {
    padding: 35px 0 30px 0;
  }
  .third-foot h2{
    font-size: 24px;
  }
  .third-foot li a{
    margin-top: 5px;
  }
  .address{
    padding-bottom: 5px;
  }
  .last-foot h2{
    font-size: 24px;
  }
  .btn-whatsapp-pulse{
    bottom: 10px;
    left: 10px;
    padding: 28px;
  }
  .btn-whatsapp-pulse i {
    font-size: 28px;
  }
  .foot-logo img {
    width: 235px;
  }
  .read-more a{
     font-weight: 500;
  }
  .enquiry-btn a{
    font-weight: 500;
  }
  .bread-cont h1 {
    font-size: 30px;
  }
  .bread-last{
    font-size: 17px;
  }
  .about-page h2 {
    font-size: 24px;
  }
  .about-page p{
    line-height: 26px;
  }
  .inner-about {
    padding: 30px 0;
  }
  .client-time h2 {
    font-size: 32px;
    padding-bottom: 10px;
  }
  .client-box{
    margin-top: 10px;
  }
  .client-time {
    padding: 30px 0;
  }
  .pro-info {
    padding: 30px 0;
  }
  .material h2 {
    padding-right: 80px;
    font-size: 20px;
  }
  .tech-time table th{
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
  }
  .tech-time table td{
    padding: 10px;
    font-size: 15px;
  }
  .tech-time {
    padding-bottom: 30px;
  }
  .construction {
    margin-bottom: 30px;
    padding-left: 15px;
  }
  .single-info h2{
    font-size: 30px;
    padding-bottom: 10px;
  }
  .single-info p{
    line-height: 26px;
  }
  .effi h3{
    font-size: 22px;
  }
  .effi li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    padding-bottom: 5px;
    line-height: 26px;
  }
  .effi h3{
    padding-top: 15px;
  }
  .get {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .page-part {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .Submit-box{
    padding: 8px 10px;
    font-size: 16px;
  }
  .general-faq{
    font-size: 18px ;
  }
  .accordion__content{
    padding: 0 10px;
  }
  .accordion__title{
    padding: 14px 10px;
  }
  .accordion__title h3{
    font-size: 18px;
  }
  .cus-mod p {
    font-size: 16px;
    line-height: 26px;
  }

}

/* Client Popup */

.smx-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Modal Content Box */
.smx-modal-container {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  animation: smxSlideIn 0.3s ease-out;
}

/* Animation */
@keyframes smxSlideIn {
  from {
      opacity: 0;
      transform: translateY(-50px) scale(0.9);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

/* Close Button */
.smx-close-btn {
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  background-color: #0A0A0A;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1px;
}

.smx-close-btn:hover {
  color: #fff;
  background-color: #071c2e;
}

/* Form Title */
.smx-form-title {
  text-align: center;
  margin: 0 0 25px 0;
  color: #333;
  font-size: 22px;
  font-weight: 600;
}

/* Form Styling */
.smx-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.smx-input {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.smx-input:focus {
  outline: none;
  border-color: #071c2e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 12, 11, 0.1);
}

.smx-input::placeholder {
  color: #3b3b3b;
}

/* Submit Button */
.smx-submit-btn {
  padding: 15px 25px;
  background: #0A0A0A;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smx-submit-btn:hover {
  background: #071c2e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.smx-submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design for Mobile */
@media screen and (max-width: 480px) {
  .smx-modal {
      padding: 15px;
  }
  
  .smx-modal-container {
      padding: 25px 20px;
      border-radius: 10px;
  }
  
  .smx-form-title {
      font-size: 20px;
      margin-bottom: 20px;
  }
  
  .smx-input {
      padding: 12px 15px;
      font-size: 15px;
  }
  
  .smx-submit-btn {
      padding: 13px 20px;
      font-size: 16px;
  }
  
  .smx-close-btn {
      top: 10px;
      right: 15px;
      font-size: 26px;
  }
}

/* For very small devices */
@media screen and (max-width: 340px) {
  .smx-modal-container {
      padding: 20px 15px;
  }
  
  .smx-input {
      padding: 10px 12px;
  }
}