/* 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {

  --theme-color: #0D65A3;
  --primary-color: #F26522;
  --secondary-color: #1476F2;
  --text-primary-color: #222222;
  --text-secondary-color: #596478;
  --background-color: #3787DB;
  --second-background-color: #f9f9f9;
  --icon-color: #00ADFF;


}
/* .client-testi-landing {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
} */

*{
    padding: 0;
    margin: 0 ;
  }

  body{
    /* font-family: 'Poppins', 'sans-serif'; */
    font-family: "Roboto", system-ui;
    font-style:normal;

  }

 .darkmode{
  background-color: #292929;
  color: #fff;
 }

 a{
  text-decoration: none;
 }
 p{
  font-size: 16px;
  line-height: 24px;
 }


 /* top scroll navbar start here  */
 .scroll-nav{
  top: -70px;
  transition: top .3s ease;
 }
 /* top scroll navbar end here  */

  /*---------- nav top start here-----------*/
  .nav-top input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus{
    /* border: none;
    -webkit-box-shadow: 0 0 0px 100px #f3f4f7 inset; */
   }
   
/*    
  .navbars-top{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-top input[type=text] {
    max-width: 100%;
    box-sizing: border-box;
    outline: none;
    background:#f3f4f7;
    font-size: 14px;
  }
 

 .nav-top-left{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
 }
 .nav-top-left p{
 margin-bottom: 0;
 }
 
 .nav-top-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
 }
 .nav-top-right .nav-top-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style:none;
  
 }
 .nav-top-right .nav-top-social li{
  padding-left: 20px;
  color: #fff;
 }
 .nav-top-right .nav-top-social li i{
  color: #fff;
  transition: all .3s ease;
  font-size: 16px;
 }
 .nav-top-right .nav-top-social li i:hover{
  color: var(--theme-color);
  transform: rotateY(180deg)
 } */

 .nav-top-main{
  background-color: var(--theme-color);
  padding: 15px 0;
 }
 .nav-top-main .to-left p{
  margin: 0;
  font-size: 14px;
  color:#ffffff;
 }
 .nav-top-main .to-right{
  display: flex;
  justify-content: end;
  align-items: center;
  color: #ffffff;
 }
 .nav-top-main .to-right p{
  margin: 0 0 0 20px;
  font-size: 14px;
 }
 .nav-top-main .to-right p span{
  margin-right: 10px;
 }

  /*------nav top end here-------*/



  /*------nav bottom start here-------*/

  .container{
    position: relative;
    /* max-width: 1224px;
    width: 92%; */
    margin: 0 auto;
  }

  #nav-bottom{
    top: -70px;
    /* position: fixed; */

  }
  
  .navbars-bottom{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  

  .navbars-bottom .nav-logo{
    width: 200px;
  }
  .navbars-bottom .nav-logo img{
    width: 100%;
  }

  .nav-branding{
    font-size: 1.5rem;
    font-weight: 500;
    border: none;
  }
 
  .nav-menus>li{
    list-style: none;
    /* height: 70px; */   /*===== update ======*/

    position: relative;

  }
  .nav-menus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .nav-container ul li a{
    font-size: 15px;
    text-decoration: none;
    color: var(--theme-color);
    transition: 0.3s ease-out;
    font-weight: 500;
    padding: 0;
  }

/* 
  .darkmode .navbars-bottom ul li a{
    color: #fff;
    background-color: #292929;
  }
   */

  .nav-container ul li a i{
    padding: 0px 0 0 5px;
    font-size: 12px;
    /* opacity: 0.5; */
  }
  
  .nav-container ul li:hover> a{
    color: var(--primary-color);
    & i {
    transform: translateX(5px) rotate(180deg);
    transition: all ease .5s;
    }
  }

  .nav-container .submenu>li{  /*===== update ======*/
    padding: 5px 0;
  }
  .nav-container .submenu li a{
    color: var(--theme-color);
  }
  .nav-container .submenu li a:hover{
    color: var(--primary-color);
  }

  .nav-container ul .submenu{
    position: absolute;
    width: 210px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 20px 45px #00000020;
    margin-top: 50px;   /*===== update ======*/
    /* border-radius: 5px; */
    opacity: 0;
    text-align: start;
    padding: 8px 10px;
    z-index: -999;
    transition: all 0.5s ease;
    border-top: 3px solid var(--primary-color);
    pointer-events: none;
    list-style: none;

  }
 
  .nav-container ul li:hover .submenu{
    z-index: 999;
    opacity: 1;
    margin-top: 23px;   /*===== update ======*/
    pointer-events: auto;  

  }

  .nav-container ul li ul li a:hover{
    margin-left: 5px;
  }

  .nav-menus>li{
    padding: 24px 0;   /*===== update ======*/
  }

  /* sub dropdown menu start here  */
  .nav-container .sub-dropdown-main {
    position: relative;
  }

  .nav-container .sub-dropdown-main .dorp-menu-icon {
    float: right;
    font-size: 14px;
    margin-top: 3px;
    transition: all 0.5s ease;
  }

  .nav-container .sub-dropdown-main:hover .dorp-menu-icon{
    color: var(--primary-color);
    rotate: 90deg;
  }
 
  .nav-container .sub-dropdown-menu {
    margin-top: -2px; 
    opacity: 0;
    transition: all 0.5s ease;
    left: 60%;
    position: absolute;
    width: 210px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 20px 45px #00000020;
    text-align: start;
  }
  .nav-container .sub-dropdown-main:hover .sub-dropdown-menu {
    /* margin-top: 0;  */
    opacity: 1;
  }
  .nav-container .sub-dropdown-menu > li{
    margin-top: 10px;
    list-style-type: disc;

  }
  .nav-container .sub-dropdown-menu > li::marker{
    color: var(--theme-color);
  }
  .nav-container .sub-dropdown-menu > li:hover::marker{
    color: var(--primary-color)
  }
  /* sub dropdown menu end here  */



  .remove{
    display: none;
    background-color: var(--primary-color);
    width: 100%;
    /* height: 30px; */
    text-align: center;
    cursor: pointer;
    color: #fff;
   }

   /*------nav bottom end here-------*/

   /* banner start here  */
   .home_top_banner{
    position: relative;
    /* background-color: var(--background-color);
    padding: 100px 0; */

   }
   

   .home_top_banner .carousel-item{
    position: relative;
  }
   .home_top_banner .carousel-item img{
    width: 100%;
    aspect-ratio: 16/5;
    object-fit: cover;
    object-position: left;
  }
  .home_top_banner {
    position: relative;
  }
  .home_top_banner .carousel-content{
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -50%);
    z-index: 3;
  }

  .carousel-control-next, .carousel-control-prev {
    z-index: 4;
  }

  .home_top_banner .carousel-item::before{
    /* content: '';
    position: absolute;
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; */
    /* z-index: 3; */
  }

  .home_top_banner .carousel-left-desc{
    z-index: 5;
  }
  
  .home_top_banner .carousel-left-desc h1{
    font-weight: 600;
    font-size: 50px;
    color: #ffffff;
    line-height: 60px;
  }
  
  .home_top_banner .carousel-left-desc p{
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
    margin-bottom: 30px;
  }
  .home_top_banner .carousel-left-desc a{
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    background-color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 10px;
    margin-left: 0;
    z-index: 5;
  }
  .home_top_banner .carousel-left-desc a i{
    font-size: 14px;
    padding-left: 0;
    transition: all .4s ease;
  }
  .home_top_banner .carousel-left-desc a:hover i{
    padding-left: 5px;

  }

   /* banner end here  */

/* about start here  */
.video-main{
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-content {
  width: 100%;
  padding: 0 80px;
}
.video-content iframe{
  width: 100%;
  aspect-ratio: 16/9;
}


 /* Video Section */

 .video-section {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.video-section img{
  width: 100%;
  aspect-ratio: 16/13;
  object-fit: cover;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.open-video-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.open-video-btn:hover {
    background-color: #0056b3;
}

/* Video Modal */
.video-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    margin: 10% auto;
    padding: 10px;
    width: 80%;
    max-width: 700px;
    background-color: white;
    border-radius: 8px;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    color: #aaa;
    font-size: 28px;
    font-weight: normal;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* Styling for the pulse button */
.pulse-button {
    background-color: #ff3d00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    color: white;
    box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    animation: pulse 1.5s infinite;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 61, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
    }
}

/* Play icon */
.pulse-button i {
    font-size: 24px;
    color: white;
}

/* Hover effect */
.pulse-button:hover {
    background-color: #e53935;
}
.about-content-sub-heading{
  font-size: 16px;
  color: var(--icon-color);
}

.about-content-desc p{
  font-size: 16px;
  color:#596478;
  line-height: 24px;
  word-spacing: normal;
  text-align: justify;
}

/* about end here  */


/* offerings section start here  */

.offerings-main{
  
}

.offering-desc h1{
  color: #ffffff;

}
.offering-desc p{
  text-align: center;
  color: var(--text-secondary-color);
  font-size: 16px;
  margin-bottom: 40px;
  padding: 0 100px;

}

  
    /* Container for the service card */
    .service-card {
      position: relative;
      width: 100%;
      /* aspect-ratio: 1; */
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
      color: #fff; /* Adjust text color for better visibility */
  }
  
  /* Image covering the entire service card */
  /* .service-card-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
  } */
  
  /* Content inside the service card */
  .service-card-content {
      /* padding: 20px; */
      text-align: center;
      z-index: 1;
      position: relative;
      background: rgb(0 52 222 / 9%);
      border-radius: 10px;
      width: 100%;
      /* aspect-ratio: 1; */
      height: 100%;
      padding: 20px;
    }

  .service-card-content img{
    width: 60px;
    height: 60px;
    margin-bottom: 15px;

  }
  
  .service-card-content h3{
    font-size: 18px;
    margin-top: 0;
    text-transform: capitalize;
    text-align: center;
    color: #000;
  }
  .service-card-content p{
     color: #000;
  }
  
  /* Hidden hover card */
  .service-card-hover {
      position: absolute;
      bottom: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      /* aspect-ratio: 1; */
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: bottom 0.4s ease;
      z-index: 2;
  
  }
  
  /* Content inside the hover card */
  .service-card-hover-content h4{
      color: var(--theme-color);
  }
  
  .service-card-hover-content {
      text-align: center;
  }
  
  /* Button inside the hover card */
  .view-details-btn {
      margin-top: 20px;
  }
  .view-details-btn a {
      margin-top: 10px;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: #ffffff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.4s ease;
      font-weight: 600;
  }
  
  /* Button hover effect */
  .view-details-btn a:hover {
      background-color: var(--theme-color);
      color: #fff;
  }
  
  
  /* Hover effect on the service card */
  .service-card:hover {
      transform: translateY(-10px);
  }
  
  /* Reveal the hover card on hover */
  .service-card:hover .service-card-hover {
      bottom: 0;
  }
  
    
/* offerings section end here  */


/* top products start here  */
.top-products-main .top-heading h1 {
  background: #f3f3f3;
  padding: 25px 0;
  margin-bottom: 0 !important;
  border-bottom: 1px solid lightgray;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-item{
  position: relative;

}
.nav-item .button{
  display: flex;
  justify-content: center;
  align-items:center ;
  /* padding: 0 !important; */
  /* position: relative !important; */
}
.nav-item button img{
    width: 150px;
    /* height: 100px; */
}

.nav-pills .nav-link.active {
  background-color: #f3f3f3;
}

.nav-pills .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -14%;
  left: 50%;
  transform: translate(-50%, 14%);
  background: #f3f3f3;
  clip-path: polygon(50% 100%, 0 1%, 100% 0);
  display: block;
  width: 20px;
  height: 15px;

}

.nav-pills .nav-link{
  border-radius: 0;
}
.nav-pills .nav-link:hover{
  background-color: #f3f3f3;
}

/* .pills-tab{
  z-index: 3;
} */

.tab-content{
  background: var(--background-color);

}
.tab-pane{
  /* background: var(--background-color); */

}
 .top-products-left {
  margin-top: 40px;
 }

 .top-products-left p {
 color: #ffffff;
 display: flex;
 justify-content: start;
 align-items: center;
 padding: 10px 0;
 font-size: 16px;
 margin: 0;
 }

 .top-products-left span {
  width: 40px;
  height: 40px;
  /* padding: 20px; */
  border-radius: 50%;
  background: #ffffff;
  display: block;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .top-products-left span i{
  color: var(--icon-color);
  font-size: 14px;
 }

 

 .products-left-list li span i {

 }

/* top products start here  */

/*============ what client say start here  ============*/

.our-client-main{
  background-image: url(../images/banner/demo.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}
 .clientSwiper{
  border-radius: 10px;

 }

.client-box{
  padding: 20px 20px 0 20px;

}
.client{
  display: flex;
  justify-content: start;
  align-items: center;
}
.client img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.client .client-title h3{
    margin-bottom: 8px;
    font-size: 18px;
    text-transform: capitalize;

} 
.client .client-title p{
    margin:0;
    color: var(--secondary-color);
    text-transform: capitalize;
    font-size: 15px;
} 

.client-box .client-desc p
{
  font-size: 15px;
  text-align: justify;
  text-transform: initial;
  margin-top: 10px;
}

/*============ what client say end here ============= */

/* who we are start here  */
.who-we-are-main{
 margin-top: 100px;
}
.who-we-are-desc{
  width: 100%;
  min-height: 200px;
  border: 1px solid lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px  25px;
  border-radius: 5px;
  transition: all .3s ease-in;

}
.who-we-are-desc:hover{
  border-color: var(--icon-color);
  box-shadow: 0px 26px 20px -30px rgba(0,0,0,0.45);
-webkit-box-shadow: 0px 26px 20px -30px rgba(0,0,0,0.45);
-moz-box-shadow: 0px 26px 20px -30px rgba(0,0,0,0.45);
}

.who-we-are-desc svg{
  width: 50px;
  height: 50px;
}
.who-we-are-desc h3{
  font-size: 22px;
  margin-top: 10px;
  text-align: center;
  
}
.who-we-are-desc p{
  font-size: 14px;
  text-align: center;
  color: var(--text-secondary-color);
  
}
/* who we are start here  */
 
/* clients we have worked start here  */

.client-we-work-main{
  margin-top: 50px;
}
.client-we-work-title h1{
  color: var(--theme-color);
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: capitalize;
 }
.client-we-work-title h1 span{
  font-weight: 600;
 }
.client-we-work-title p{
  font-size: 16px;
  padding-right: 120px;
  text-transform: capitalize;
 }


/* clients we have worked end here  */

/* key statistcs start here  */
.key-statistics-main{
  margin-top: 50px;
  background-image: url(../images/banner/key-bg.jpg);
  background-repeat: no-repeat;
  background-position:  right;
  background-size: cover;
  padding: 100px 0;
  /* z-index: 2; */
  position: relative;
}
.key-statistics-main::before{
    content: '';
    position: absolute;
    background: rgba(55, 125, 230, .8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.key-statistics-desc{
  background-color: #ffffff;
  padding: 30px 10px;
  border-radius: 10px;
  text-align: center;
  text-transform: capitalize;
  
}
.key-statistics-desc h3{
  font-weight: 600;
  margin-bottom: 20px;
}
.key-statistics-desc p{
  text-transform: capitalize;
  font-size: 16px;
}


.key-statistics-main .key-first{
  padding: 30px 10px;
  border-radius: 10px;
  text-align: center;
  text-transform: capitalize;
}
.key-statistics-main .key-first h3{
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #fff;
  color: #ffffff;
}
.key-statistics-main .key-first p{
  text-transform: capitalize;
  font-size: 16px;
  color: #ffffff;

}

.key-statistics-main .key-last{
  background-image: url(../images/banner/strenght-bg.jpg);
  /* z-index: 3; */
  
}
.key-statistics-main .key-last h3{
  color: #ffffff;
}
.key-statistics-main .key-last p{
  color: #ffffff;
}



/* key statistcs end here  */


/* recognition start here  */
.recognition-main{
  margin-top: 50px;
}
.recognition-desc p{
  font-size: 16px;
  text-align: justify;
}
.recognition-img{
  display: flex;
  justify-content: center;
  align-items: center;
}
.recognition-img img{
  width: 60%;
}


/* recognition end here  */

/* contributin start here  */
.contribution-main {
  background-image: url(../images/banner/mark.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  width: 100%;
  margin-top: 50px;
}
.contribution-desc h1{
  line-height: 60px;
  font-weight: 400;
  color: var(--theme-color);
}
.contribution-desc h1 span{
  font-weight: 600;
  text-transform: uppercase;
}
.contribution-desc p{
  font-size: 16px;
  color: var(--text-secondary-color);
}
.contribution-img img{
  width: 80%;
  /* aspect-ratio: 16/14; */
}

/* contributin end here  */


/* top industry start here  */

.top-industry-main{
  margin-top: 50px;
}

.industry-desc p{
  font-size: 16px;
  text-align: justify;
}
.industry-desc ul li{
  font-size: 16px;
  list-style: none;
}

.industry-img{
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.industry-img img{
  width: 80%;
}

/* top industry end here  */


/* it solution main start here  */

.it-solution-main{
  margin-top: 50px;
  background-color: var(--background-color);
}
.it-solution-desc h1{
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
  font-weight: 200 !important;
  margin: 0;
}
.it-solution-desc h1 span{
  font-weight: 600;
}
/* it solution main start here  */

  /* -----------blogs start here -------- */


   .service-main{
    position: relative;

   }
    /* top blog  */
   .top-blogs-img img{
      width: 100%;
      aspect-ratio: 16/8;
      object-fit: cover;
   }
  .top-blogs-title h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary-color);
    line-height: 30px;
  }
  .top-blogs-desc p{
    font-size: 16px;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
  }
.to-blog-read a{
  font-size: 16px;
  color: var(--theme-color);
}
.to-blog-read a i{
  margin-left: 10px;
  padding: 10px 12px;
  background-color: var(--theme-color);
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.top-blogs:hover .to-blog-read a i{
  background-color: var(--primary-color);
}

.top-blogs-share {
  display: flex;
  justify-content: end;
  align-items: center;
}

.top-blogs-share a{
  font-size: 16px;
  color: var(--primary-color);
}
.top-blogs-share a i{
  margin-left: 10px;
  padding: 10px 12px;
  background-color: var(--theme-color);
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.top-blogs:hover .top-blogs-share a i{
  background-color: var(--primary-color);
}

    /* top blog  */

    .service-box{
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;

    }
    .service-box img{
      width: 100%;
      transition: all 1.5s ease;
      aspect-ratio: 5/3;
      object-fit: cover;

    }

    .service-main:hover .service-box img{
        transform: scale(1.10);
    } 


    .service-cont .service-title-box{
      height: 65px;
    }
    .service-cont .service-title{
      margin-top: 20px;
      margin-bottom: 0;
      font-size: 20px;
      font-weight: 600;
      color: var(--text-primary-color);
      line-height: 30px;
    }
   .service-desc p{
      font-size: 16px;
      color: var(--text-secondary-color);

    }
    .service-btn{
      margin-top: 20px;
    }
   
    .service-btn-left a{
      color: var(--text-primary-color);
      font-weight: 500;
    }

    .service-main .service-btn-left i{
      margin-left: 10px;
      background-color:#fff;
      padding: 10px 12px;
      transition: all 0.3s linear;

    }
    .service-main:hover .service-btn-left i{
      background-color: var(--theme-color);
      color: #fff;
    }

    
    .service-main .service-btn-right {
      display: flex;
      justify-content: end;
      align-items: center;
    }
    .service-main .service-btn-right a{
      color: var(--text-primary-color);
      font-weight: 500;
    }
    .service-main .service-btn-right i{
      margin-left: 10px;
      color: var(--primary-color);
      padding: 10px 12px;
      transition: all 0.3s linear;
      font-size: 16px;

    }
    .service-main:hover .service-btn-right i{
      background-color: var(--theme-color);
      color: #fff;
    }
  
/* ----------- blogs end here -------- */


/* update section start here  */


/* .carousel-item .update-block{
  width: 100%;
}
.carousel-item .update-block img{
  width: 100%;
  aspect-ratio: 16/10;
} */


/* update section end here  */


/* why yashfa start here */

.why-yashfa-cont {
  position: relative;
  padding: 30px 0;
  z-index: 1; /* Ensure the container is positioned */
}

.why-yashfa-cont::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/icons/why-yashfa-bg2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Only the background is transparent */
  z-index: -1; /* Place the background behind the content */
}

.why-yashfa-main {
  position: relative;
  z-index: 2; /* Content will be above the background */
}

.why-yashfa-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.why-yashfa-box p{
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
  color: var(--primary-color);
  z-index: 9999;

}

/*------------- why yashfa end here -------------- */

/*----------------- faq start here  ---------------*/



.accordion-item .accordion-button{
  background-color: rgba(0, 0, 0, .8)!important;
  color: #ffffff !important;
  position: relative;
}
.accordion-button:hover{
  background: rgba(0, 0, 0, .5) !important;
}

.accordion-item .accordion-body ul{
  padding: 0;
}
.accordion-item .accordion-body ul li{
  list-style: none;
}

.accordion-button::after {
  /* flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: ""; */
  background-image: url(../images/icons/icon-01.png) !important;
  /* background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition); */
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/icons/icon-01.png) !important;
  /* transform: var(--bs-accordion-btn-icon-transform); */
}
/*------------------ faq end here  -----------------*/


/* home contact start here  */
.home-contact{
  background-color: var(--background-color) ;
}
.contact-title h1{
  color: var(--primary-color);
  font-weight: 600;
  font-size: 30px;
  text-align: left;
  margin-bottom: 30px;
  text-transform: uppercase;

}

/* home contact end here  */


/* reach out start here  */

.reach-out-main{
  background: #f265221c;
  padding: 40px 0;
}
.reach-out-cont{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.reach-out-contact p{
  font-size: 16px;
  color: var(--text-secondary-color);
  /* text-align: center; */
}

.reach-out-contact h3{
  color: var(--primary-color);
  font-weight: 600;
  /* text-align: center; */
}

.reach-out-right .row .col-4{
  padding: 15px;
}
.reach-out-right h3{
  color: var(--theme-color);
  font-weight: 600;
}
.reach-out-right p{
  color: var(--text-secondary-color);
  text-transform: capitalize;
  display: inline-block;
  font-size: 16px;
}

/* reach out end here  */


/*---------- footer start here ---------------- */
   
.footer{
  background-color:rgba(0, 0, 0, .9);
}

.footer .footer-logo a img{
  width: 160px;
}

.footer-branding{

}

.footer-desc{
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
}
.footer-social{
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer-social li{
  list-style: none;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 30px;

}
.footer-social li a{
  color: #ffffff;
}
.footer-social li a i{
  /* font-size: 20px; */
}

.footer-links p{
  margin-bottom: 5px;
}
.footer-links  a{
  color: #ffffff;
  font-weight: 500;
  transition: all ease-out .3s;
}
.footer-links a:hover{
  color: var(--primary-color);
  margin-left: 5px;
}
.footer-links  i{
  font-size: 10px;
}
.footer-contact li i{
  color: #ffffff;
}
.footer-cont-desc {
  font-weight: 500;
  color: #ffffff;
}

 /* Container styling */
 .subscribe-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  width: 100%;
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 15px

}

/* Input field styling */
.subscribe-input {
  /* padding: 10px 15px; */
  font-size: 14px;
  border: 0;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 120px;
  background-color: white;
  transition: border-color 0.3s ease;
}

.subscribe-input:focus {
  /* border-color: #007bff;  */
}

/* Button styling */
.subscribe-button {
  padding: 5px 10px;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color) ; /* Button background color */
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: var(--background-color); /* Button hover color */
}


   /*------------ footer end here-------------- */


  /* bottom to top scroll button start here  */
  .to-top {
    background: var(--theme-color);
    position: fixed;
    bottom: 16px;
    right:32px;
    width:40px;
    height:40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:16px;
    color:#ffffff;
    text-decoration: none;
    opacity:0;
    pointer-events: none;
    transition: all .4s;
  }
  .to-top::after{
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0, transparent 80%);
    content: "";
    height: 10px;
    inset-inline-start: 5%;
    opacity: 1;
    position: absolute;
    top: 100%;
    width: 90%;
    z-index: -1;
}
.to-top.active {
  bottom:32px;
  pointer-events: auto;
  opacity:1;
}
  /* bottom to top scroll button end here  */

    /* common title and button start here  */

 .pro-heading h1{
  color: var(--theme-color);
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 3;
 }
 .pro-heading-sub h1{
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 3;
 }

 .ongoing-pro-title h1{
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.my-btn{
  color: #ffffff;
  border: 1px solid var(--text-secondary-color);
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--secondary-color);
  transition: all .3s ease-in;

}

.my-btn:hover {
  color: var(--secondary-color);
  border: 1px solid var(--theme-color);
  background-color: #ffffff;

}


.my-btn-2{
  color: #ffffff;
  border: 1px solid #ffffff;
  font-size: 14px;
  padding: 10px 15px;
  /* border-radius: 5px; */
  font-weight: 400;
  background-color: var(--backgorund-color);
  transition: all .3s ease-in;
  text-transform: uppercase;

}


.my-btn-2:hover {
  color: var(--background-color);
  background-color: #ffffff;
}

.my-btn-2 i{
  color: #ffffff;
  font-size: 14px;
  margin-left: 5px;
  transition: all .3s ease-in;
}
.my-btn-2:hover i {
  margin-left: 10px;
  color: var(--background-color);

}

.my-btn-3{
  color: var(--background-color);
  border: 1px solid var(--icon-color);
  font-size: 14px;
  padding: 10px 15px;
  /* border-radius: 5px; */
  font-weight: 400;
  background-color: #ffffff;
  transition: all .3s ease-in;
  text-transform: uppercase;

}


.my-btn-3:hover {
  color: #ffffff;
  background-color:var(--background-color);
}

.my-btn-3 i{
  color: var(--background-color);
  font-size: 14px;
  margin-left: 5px;
  transition: all .3s ease-in;
}
.my-btn-3:hover i {
  margin-left: 10px;
  color: #ffffff;

}

.my-btn-4{
  color: #ffffff;
  border: none !important;
  font-size: 14px;
  padding: 10px 15px;
  /* border-radius: 5px; */
  font-weight: 400;
  background-color: var(--primary-color);
  transition: all .3s ease-in;
  text-transform: uppercase;

}


.my-btn-4:hover {
  color: var(--background-color);
  background-color: #ffffff;
  border: 1px solid var(--background-color);
}

.my-btn-4 i{
  color: #ffffff;
  font-size: 14px;
  margin-left: 5px;
  transition: all .3s ease-in;
}
.my-btn-4:hover i {
  margin-left: 10px;
  color: var(--background-color);

}

  /* common title and button start here  */


 /*------- media queries start here  -------------*/
 @media screen and (max-width:300px){
   
 }

 @media screen and (max-width:576px){
  /*--------- navbar main start here--------- */

/*------ navbar bottom start here ---------- */
.navbars-bottom .nav-logo{
  width: 140px;
}

  /* for mobile nabvar start here  */
   .mob-nav-container {
    position: fixed;
    left: -100%;
    width: 70%;
    height: auto;
    top: 0;
    gap: 0;
    transition: all 0.5s ease;
    z-index: 1200;
    display: block;
   }
   .mob-nav-container.active{
    left: 0;
  }
   .nav-burger{
    cursor: pointer;
    color: var(--theme-color);
   }

   .remove{
    display: block;
    position: relative;
    z-index: 9999;

   }

  .sidebar {
    /* position: fixed; */
    height: 100%;
    width: 100%;
    background: #11101d;
    padding: 15px;
    z-index: 99;
  }
  .logo {
    font-size: 25px;
    padding: 0 15px;
  }
  .sidebar a {
    color: #fff;
    text-decoration: none;
  }
  .menu-content {
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 30px;
    overflow-y: scroll;
  }
  .menu-content::-webkit-scrollbar {
    display: none;
  }
  .menu-items {
    height: 100%;
    width: 100%;
    list-style: none;
    transition: all 0.4s ease;
  }
  .submenu-active .menu-items {
    transform: translateX(-56%);
  }

  .menu-title {
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
  }

  .item a,
  .submenu-item {
    padding: 10px;
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    border-left: 2px solid #11101d;
    font-size: 14px;

  }
  .item i {
    font-size: 12px;
  }
  .item a:hover,
  .submenu-item:hover,
  .submenu-box .menu-title:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    border-color: var(--primary-color);
  }
  .submenu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    cursor: pointer;
  }
  .submenu-box {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: calc(-100% - 26px);
    height: calc(100% + 100vh);
    background: #11101d;
    display: none;
  }
  .show-submenu ~ .submenu-box {
    display: block;
  }
  .submenu-box .menu-title {
    border-radius: 12px;
    cursor: pointer;
    border-left: 2px solid #000;
  }
  .submenu-box .menu-title i {
    margin-right: 10px;
  }
 
  .mob-nav-container ul li a:hover  {
    color: var(--primary-color);
    transition: all .3s ease-in-out;
    border-color: var(--primary-color);
  }
  .mob-nav-container ul li ul li a::before{
   content: "-";
   padding: 0 5px;
 }
  /* for mobile nabvar start here  */

    /*-- navbar bottom end here- */

   /*---------- navbar main end here -------------- */

/*--------- banner start here  -----------*/
.home_top_banner .carousel-item img{
  /* aspect-ratio: 16/20; */
  height: 420px;
}

.home_top_banner .carousel-content{
  top: 50%;
  left: 0%;
  transform: translate(-0%, -50%);
  z-index: 999;
}

.home_top_banner .carousel-left-desc h1{
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 25px;
  line-height: 35px;
}


/*---------- banner end here  -----------*/

 /* about start here  */
 .video-content {
  padding: 0 20px;
}


/* about end here  */

/* offerings start here  */
.offering-desc p{
  padding: 0 50px;

}
.service-card {
  width: 90%;
  /* height: auto; */
  /* aspect-ratio: 1; */

}

.service-card-content {
  /* width: 100%;
  aspect-ratio: 1; */

}

.service-card-hover {
  /* width: 100%;
  aspect-ratio: 1; */

}

/* offerings end here  */

/* blogs start here  */

.top-blogs-share {
  display: flex;
  justify-content: start;
  align-items: center;
}

.service-cont .service-title{
  font-size: 16px;
 
}
.service-main .service-btn-right {
  display: flex;
  justify-content: start;
  align-items: center;
}
.service-main .service-btn-right i{
  margin-left: 0;
  margin-right: 10px;
}
/* blogs end here  */

/* ------------footer start here --------- */

/* ------------footer end here --------- */


   /* home contact title start here  */
   .contact-title h1{
    font-size: 24px;
    text-align: left;

  
  }
   /* home contact title start here  */

   .it-solution-desc h1{
    font-size: 30px;
 
  }
   /* what client say start here  */
   .client .client-title h3{
    margin-bottom: 8px;
    font-size: 16px;

} 
.client .client-title p{
    margin:0;
    color: var(--icon-color);
    text-transform: capitalize;
    font-size: 12px;
    line-height: 16px;
} 
   /* what client say end here  */


   /* clients we have worked start here  */
.client-we-work-title h1{
  font-size: 24px;
 }

 .client-we-work-title p{
  font-size: 14px;
  padding-right: 0;
 }
/* clients we have worked end here  */

/* top industry start here  */
.top-industry-main .row{
  display: flex;
  flex-direction: column-reverse;
  justify-self: center;
  align-items: center;
}
/* top industry end here  */



/* reach out start here  */


.reach-out-cont{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.reach-out-contact{
  margin-top: 20px;
}

.reach-out-contact h3{
  text-align: center;
}

.reach-out-right .row .col-4{
  padding: 8px;
}
/* reach out end here  */


  /* common title and button start here  */

 .pro-heading h1{
  font-weight: 600;
  font-size: 24px;
 }
 .pro-heading-sub h1{
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
 }

 .ongoing-pro-title h1{
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--primary-color);
}

  /* common title and button end here  */



 }

 @media screen and (min-width:576px) and (max-width: 768px){
  /*--------- navbar start here--------- */


/*------ navbar bottom start here ---------- */

.mob-nav-container {
  position: fixed;
  left: -100%;
  width: 70%;
  height: auto;
  top: 0;
  gap: 0;
  transition: all 0.5s ease;
  z-index: 9999;
  display: block;
 }
 .mob-nav-container.active{
  left: 0;
}
 .nav-burger{
  cursor: pointer;
  color: var(--theme-color);

 }

 .remove{
  display: block;
  position: relative;
  z-index: 9999;

 }
 
 
.sidebar {
  height: 100%;
  width: 100%;
  background: #11101d;
  padding: 15px;
  z-index: 99;
}
.logo {
  font-size: 25px;
  padding: 0 15px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
}
.menu-content {
  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 30px;
  overflow-y: scroll;
}
.menu-content::-webkit-scrollbar {
  display: none;
}
.menu-items {
  height: 100%;
  width: 100%;
  list-style: none;
  transition: all 0.4s ease;
}
.submenu-active .menu-items {
  transform: translateX(-56%);
}

.menu-title {
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}

.item a,
.submenu-item {
  padding: 10px;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  border-left: 2px solid #11101d;
  font-size: 14px;
}
.item i {
  font-size: 12px;
}
.item a:hover,
.submenu-item:hover,
.submenu-box .menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  transition: all .3s ease-in-out;
  border-color: var(--primary-color);
}
.submenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.submenu-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: calc(-100% - 26px);
  height: calc(100% + 100vh);
  background: #11101d;
  display: none;
}
.show-submenu ~ .submenu-box {
  display: block;
}
.submenu-box .menu-title {
  border-radius: 12px;
  cursor: pointer;
  border-left: 2px solid #000;
}
.submenu-box .menu-title i {
  margin-right: 10px;
}

.mob-nav-container ul li a:hover  {
  color: var(--primary-color);
  transition: all .3s ease-in-out;
  border-color: var(--primary-color);
}
.mob-nav-container ul li ul li a::before{
 content: "-";
 padding: 0 5px;
}


    /*---------- navbar bottom end here ---------- */
    /*---------- navbar end here  ------------*/

    /*--------- banner start here  -----------*/
  .home_top_banner .carousel-item img{
    aspect-ratio: 16/11;
  }

  .home_top_banner .carousel-content{
    top: 50%;
    left: 0%;
    transform: translate(-0%, -50%);
    z-index: 999;
  }
  /*---------- banner end here  -----------*/

  /* about start here  */
  .video-content {
    padding: 0 60px;
  }


  /* about end here  */


  /* top industry start here  */
.top-industry-main .row{
  display: flex;
  flex-direction: column-reverse;
  justify-self: center;
  align-items: center;
}
/* top industry end here  */




  /* blogs start here  */
  .top-blogs-share {
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .service-main .service-btn-right {
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .service-main .service-btn-right i{
    margin-left: 0;
    margin-right: 10px;
  }
  /* blogs end here  */

  /* reach out start here  */


.reach-out-cont{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.reach-out-contact{
  margin-top: 20px;
}

.reach-out-contact h3{
  text-align: center;
}

/* reach out end here  */

/* footer start here  */
/* Container styling */
.subscribe-container {
  width: 70%;

}
/* footer end here  */

}


  @media screen and (min-width: 768px) and (max-width: 992px){
   /*--------- navbar start here--------- */

/*------ navbar bottom start here ---------- */
/* .navbars-bottom{
  height: 0px;
} */

.mob-nav-container {
  position: fixed;
  left: -100%;
  width: 70%;
  height: auto;
  top: 0;
  gap: 0;
  transition: all 0.5s ease;
  z-index: 9999;
  display: block;
 }
 .mob-nav-container.active{
  left: 0;
}
 .nav-burger{
  cursor: pointer;
  color: var(--theme-color);

 }

 .remove{
  display: block;
  position: relative;
  z-index: 9999;

 }

 
 
.sidebar {
  /* position: fixed; */
  height: 100%;
  width: 100%;
  background: #11101d;
  padding: 15px;
  z-index: 99;
}
.logo {
  font-size: 25px;
  padding: 0 15px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
}
.menu-content {
  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 30px;
  overflow-y: scroll;
}
.menu-content::-webkit-scrollbar {
  display: none;
}
.menu-items {
  height: 100%;
  width: 100%;
  list-style: none;
  transition: all 0.4s ease;
}
.submenu-active .menu-items {
  transform: translateX(-56%);
}

.menu-title {
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}

.item a,
.submenu-item {
  padding: 10px;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  border-left: 2px solid #11101d;
  font-size: 14px;
}
.item i {
  font-size: 12px;
}
.item a:hover,
.submenu-item:hover,
.submenu-box .menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  transition: all .3s ease-in-out;
  border-color: var(--primary-color)
}
.submenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.submenu-box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: calc(-100% - 26px);
  height: calc(100% + 100vh);
  background: #11101d;
  display: none;
}
.show-submenu ~ .submenu-box {
  display: block;
}
.submenu-box .menu-title {
  border-radius: 12px;
  cursor: pointer;
  border-left: 2px solid #000;
}
.submenu-box .menu-title i {
  margin-right: 10px;
}

.mob-nav-container ul li a:hover  {
  color: var(--primary-color);
  transition: all .3s ease-in-out;
  border-color: var(--primary-color);
}
.mob-nav-container ul li ul li a::before{
 content: "-";
 padding: 0 5px;
}

  /*-------- navbar bottom end here ---------- */
  /*---------- navbar end here --------------- */
   
      /*--------- banner start here  -----------*/
      .home_top_banner .carousel-item img{
        aspect-ratio: 16/10;
      }
    
      .home_top_banner .carousel-content{
        top: 50%;
        left: 0%;
        transform: translate(-0%, -50%);
        z-index: 999;
      }
      /*---------- banner end here  -----------*/

      /* about start here  */
      .video-content {
        padding: 0 80px;
      }
      /* about end here  */

      
/* top industry start here  */
.top-industry-main .row{
  display: flex;
  flex-direction: column-reverse;
  justify-self: center;
  align-items: center;
}
/* top industry end here  */


   /* blogs start here  */

   .service-cont .service-title{
    font-size: 16px;
   
  }
   .service-main .service-btn-right {
    display: flex;
    justify-content: start;
    align-items: center;
  }

  .service-main .service-btn-right i{
    margin-left: 0;
    margin-right: 10px;
  }
  /* blogs end here  */


  /* reach out start here  */


    .reach-out-cont{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .reach-out-contact{
      margin-top: 20px;
    }

    .reach-out-contact h3{
      text-align: center;
    }

  /* reach out end here  */

 
  /* footer start here  */

  .footer .footer-logo a img{
    width: 150px;
  }

  
  /* footer end here  */


 }

 /* ------.newsletter-section start here ------ */

 /*------- .newsletter-section end here -------- */

 @media screen and (min-width: 992px) and (max-width:1200px){
   

 }

 @media screen and (min-width: 1200px) and (max-width:1400px){
 

 }
 



