.services-three {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 85px 0 130px;
  z-index: 1;
}

.services-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ddd;
  cursor: pointer;
}

.services-three__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 270px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 50px 0px rgba(135, 140, 143, 0.15);
  background-position: center top;
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .4s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-three__single:hover::before {
  transform: scaleY(1.0);
}

.services-three__single-shape-1 {
  position: absolute;
  top: 0;
  left: -1px;
  right: 0;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
      border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  z-index: 2;
}

.services-three__content {
  position: relative;
  display: block;
  z-index: 2;
}

.services-three__count {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 2;
}

.services-three__count::before {
  position: relative;
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: count;
  content: "0"counter(count);
}
.services-three__count.dualnum::before {
  counter-increment: count;
  content: ""counter(count);
}

.services-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 70px;
  background-color: #faf9f9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-top-left-radius: 10px;
}
.services-three__icon img{
  filter: invert(52%) sepia(72%) saturate(500%) hue-rotate(67deg) brightness(92%) contrast(95%);
  height:50px;
}

.services-three__single:hover .services-three__icon {
  background-color:  var(--theme-color-2);
}
.services-three__single:hover .services-three__icon img{
  filter: brightness(0) invert(1);
}

/* .services-three__icon::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: 17px;
  width: 100px;
  height: 1px;
  background-color: rgba(91, 155, 55, .18);
} */

.services-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color:  var(--theme-color-2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon span {
  color: #fff;
}

.services-three__title-box {
    position: relative;
    display: block;
    margin-top: 18px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
.services-three__title {
  font-size: 19px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.01em;
}

.services-three__title a {
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__title a:hover {
  color:  var(--theme-color-2);
}

.services-three__text {
  font-size: 14px;
  line-height: 26px;
  margin-top: 7px;
  margin-bottom: 4px;
}

.services-three__img-box {
  position: relative;
  display: block;
}

.services-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-three__img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.services-three__single:hover .services-three__img::before {
  opacity: .60;
}

.services-three__img img {
      width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
    height: 180px;
    object-fit: cover;
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-three__arrow {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.services-three__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 20px;
  color: #000;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.services-three__arrow.darksec a{
  border: 1px solid #fff;
  color: #fff;
}

.services-three__single:hover .services-three__arrow a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 600ms;
  opacity: 1;
}

.services-three__arrow a:hover {
  color: #fff;
  border: 1px solid  var(--theme-color-2);
  background-color:  var(--theme-color-2);
}

.services-three__arrow a>span {
  transform: rotate(-45deg);
  position: relative;
  display: inline-block;
}

.services-three__shape-1 {
    position: absolute;
    left: 50%;
    bottom: -145px;
    width: 262px;
    height: 200px;
    border-radius: 50%;
    background-color: #fff;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0) translateX(-50%);
    z-index: 2;
}
.services-three__shape-1.darksec{
      background: #1F1F1F;
}

.services-three__single:hover .services-three__shape-1 {
  transform: scaleY(1.0) translateX(-50%);
}
@media(max-width:767px){
  .services-three__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

}
/** industries-section **/

.industries-section{
  position: relative;
}

.industries-section .inner-container{
  position: relative;
  display: block;
  border: 1px solid #E5E5E5;
}

.industries-section .industries-block-one{
  position: relative;
  float: left;
  width: 25%;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.industries-section .industries-block-one:nth-child(4),
.industries-section .industries-block-one:nth-child(8){
  border-right: none;
}

.industries-section .industries-block-one:nth-child(5),
.industries-section .industries-block-one:nth-child(6),
.industries-section .industries-block-one:nth-child(7),
.industries-section .industries-block-one:nth-child(8){
  border-bottom: none;
}

.industries-block-one .inner-box{
  position: relative;
  display: block;
  padding: 40px;
  z-index: 1;
}

.industries-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: calc(100% + 2px);
  height: 0%;
  left: -1px;
  top: -1px;
  z-index: -1;
  transition: all 500ms ease;
}

.industries-block-one .inner-box:hover:before{
  height: calc(100% + 2px);
}

.industries-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--title-color);
  margin-bottom: 49px;
  transition: all 500ms ease;
}

.industries-block-one .inner-box:hover .icon-box{
  color: #fff;
}

.industries-block-one .inner-box h3{
  font-size: 28px;
  line-height: 38px;
}

.industries-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.industries-block-one .inner-box h3 a:hover{
  text-decoration: underline;
}

.industries-block-one .inner-box p{
  line-height: 24px;
  transition: all 500ms ease;
}

.industries-block-one .inner-box:hover h3 a,
.industries-block-one .inner-box:hover p{
  color: #fff;
}


/** industries-style-two **/

.industries-style-two{
  position: relative;
  background: var(--secondary-color);
}

.industries-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.industries-block-two .inner-box{
 position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    z-index: 1;
}

.industries-block-two .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform-origin: center;
  transform: scaleY(0);
  z-index: -1;
  transition: all 500ms ease;
}

.industries-block-two .inner-box:hover:before{
  transform: scaleY(1);
}

.industries-block-two .inner-box .icon-box{
  /* position: absolute; */
  left: 30px;
  top: 30px;
  font-size: 64px;
  transition: all 500ms ease;
      margin-bottom: 15px;
}
.industries-block-two .inner-box .icon-box img{
      filter: brightness(0) saturate(100%) invert(41%) sepia(81%) saturate(527%) hue-rotate(75deg) brightness(93%) contrast(94%);
}

.industries-block-two .inner-box:hover .icon-box img{
  filter:unset;
}

.industries-block-two .inner-box h3{
  display: block;
  font-size: 28px;
  line-height: 38px;
}

.industries-block-two .inner-box h3 a{
  display: inline-block;
  color: #fff;
}

.industries-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.industries-block-two .inner-box:hover h3 a{
  color: var(--title-color);
}

.industries-block-two .inner-box p{
  color: rgba(255, 255, 255, 0.80);
  transition: all 500ms ease;
}

.industries-block-two .inner-box:hover p{
  color: var(--text-color);
}


/** industries-style-three **/


/* main page */
.industries-style-three{
  position: relative;
  background: #1F1F1F;
}

.industries-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}

.industries-block-three .inner-box{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.industries-block-three .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 64px;
  margin-bottom: 19px;
  transition: all 500ms ease;
}

.industries-block-three .inner-box:hover .icon-box{
  transform: rotateY(180deg);
}

.industries-block-three .inner-box h3{
  position: relative;
  display: block;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 4px;
}

.industries-block-three .inner-box h3 a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.industries-block-three .inner-box h3 a:hover{

}

.industries-block-three .inner-box p{
  color: #fff;
  opacity: 0.8;
}



/* detail page */

.industries-style-three.detailpage{
  position: relative;
  background: #fff;
}
.industries-style-three.detailpage .industries-block-three .inner-box .icon-box img{
  filter: brightness(0) saturate(100%) invert(41%) sepia(81%) saturate(527%) hue-rotate(75deg) brightness(93%) contrast(94%);
}
.industries-style-three.detailpage .industries-block-three .inner-box h3 a {
    position: relative;
    display: inline-block;
    color: #000;
}

/** industries-style-four **/

.industries-style-four{
  position: relative;
}

.industries-style-four .industries-block-two .inner-box{
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.industries-style-four .industries-block-two .inner-box:before{
  background: var(--secondary-color);
}

.industries-style-four .industries-block-two .inner-box h3 a{
  color: var(--title-color);
}

.industries-style-four .industries-block-two .inner-box p{
  color: var(--text-color);
}

.industries-style-four .industries-block-two .inner-box:hover h3 a,
.industries-style-four .industries-block-two .inner-box:hover p{
  color: #fff;
}


/** industries-style-five **/

.industries-style-five{
  position: relative;
}

.industries-block-four .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 26px 15px;
}

.industries-block-four .inner-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.industries-block-four .inner-box .bg-layer:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
}

.industries-block-four .inner-box .overlay-bg{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.industries-block-four .inner-box .overlay-bg:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
}

.industries-block-four .inner-box:hover .overlay-bg{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.industries-block-four .inner-box h4{
  font-size: 20px;
  line-height: 28px;
}

.industries-block-four .inner-box h4 a{
  display: inline-block;
  color: #fff;
}

.industries-block-four .inner-box h4 a:hover{
  text-decoration: underline;
}

.industries-style-five .pattern-layer{
  position: absolute;
  left: 0px;
  top: 110px;
  width: 476px;
  height: 621px;
  background-repeat: no-repeat;
}



/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .industries-section .industries-block-one{
    width: 50%;
  }
  .industries-block-two .inner-box h3 {
    display: block;
    font-size: 25px;
    line-height: 38px;
}
}

@media only screen and (max-width: 767px){
  .industries-section .industries-block-one{
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e5e5 !important;
  }

  .industries-section .industries-block-one:last-child{
    border-bottom: none !important;
  }

  .industries-section{
    padding-top: 0px;
    padding-bottom: 70px;
  }

  .industries-style-two{
    padding: 70px 0px 40px 0px;
  }

  .industries-style-three{
    padding: 70px 0px;
  }

  .industries-style-five{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media (min-width:769px) and (max-width: 1024px){
.industries-block-two .inner-box h3 {
    font-size: 23px;
}
}


        /* .modal-header {
            padding: 20px;
            background: var(--theme-color-2);
            border-radius: 0 !important;
            border: none;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .modal-header .btn-close {
            filter: invert(1);
            opacity: 0.8;
            transition: var(--transition);
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        
        .modal-header .btn-close:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg);
        }
         */
         .custclose {
            filter: invert(1);
            opacity: 0.8;
            /* position: absolute; */
            top: 25px;
            right: 25px;
            background: #ffffff70;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            font-size: 32px;
        }
        
        .custclose:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg);
        }
        .detail-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            margin-right: 30px;
            flex-shrink: 0;
        }
        
       .detail-title {
            font-size: 30px;
            font-weight: 700;
            margin: 0;
            color: #fff;
        }
    
        
        .detail-description {
            font-size: 16px;
            /* color: #000; */
            margin-bottom: 25px;
        }
        
        .services-section h3, .benefits-section h3 {
            color: #000;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .services-section h3:after, .benefits-section h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            border-radius: 3px;
        }
        
        .services-list, .benefits-list {
            list-style: none;
            padding: 0;
        }
        
        .services-list li, .benefits-list li {
            padding: 14px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            position: relative;
            display: block;
            font-size: 16px;
            line-height: 26px;
            /* margin-bottom: 14px; */
            padding-left: 40px;
        }
        
        /* .services-list li:before, .benefits-list li:before {
            content: '\f00c';
            font-family: "Font Awesome 5 Pro";
            font-weight: 900;
            color: var(--theme-color-2);
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 3px;
        } */
        
        .services-list li:before, .benefits-list li:before{
          position: absolute;
          content: '\e902';
          font-family: 'icomoon';
          font-size: 12px;
          width: 24px;
          height: 24px;
          line-height: 24px;
          text-align: center;
          border-radius: 50%;
          left: 0px;
          top: 14px;
          color: var(--theme-color-2);
        }

        .services-list li:after, .benefits-list li:after{
          position: absolute;
          content: '';
          width: 24px;
          height: 24px;
          text-align: center;
          border-radius: 50%;
          opacity: 0.2;
          left: 0px;
          top: 14px;
          background: var(--theme-color-2);
        }

        .benefits-list li:before {
            color: #000;
        }
        
        .cta-section {
            background: rgb(233 255 230);
            padding: 30px;
            border-radius: 20px;
            margin-top: 30px;
        }
        
        .cta-section h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #000;
        }
        
        .cta-section p {
            color: #000;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        body.modal-open {
  overflow: hidden !important;
}
@media only screen and (max-width: 767px){
  .detail-title {
    font-size: 20px;
}
}