.lab_top_section{
  background-color: rgb(141 203 255 / 10%);
  margin-top: 30px;
}
.services-sections{
    padding: 20px 0px;
} 
.services-section {
    display:flex;
    align-items: center;
    justify-content: center;
   padding-top: 25px;
    padding-bottom: 40px;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    text-align: left;
    /* border: 1px solid red; */
}

.service-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 4px solid  #1b405b;
    box-shadow: 0 10px 25px rgba(0, 0, 52, 0.15);
    margin-bottom: 15px;
    /* border: 1px solid red; */


}
 
.icon-box i{
    font-size: 30px;
       background: linear-gradient(45deg, #4097f8, #1b405b); 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent;
 

}



.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color:rgb(2, 2, 61);
    margin-bottom: 12px;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: var(--paragraph);
    font-family: var(--font-family);
    text-align: justify;
}

.service-img {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    position:relative;
    overflow:hidden;
    /* border: 1px solid red; */
   
} 
.service-img img{
      width: 100%;
    height: 100%;
    border-radius: 12px;
}


  .service-img .text{
    position:absolute;                           
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.377);
    text-align:center;
     transition:all 0.9s;
     top:0;
     left:-100%;
     display: flex;
     align-items: center;
     justify-content: center;
     /* border:1px solid red; */
     }

  .service-img .text i{
    font-size: 20px;
    width: 40px;
    height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
    border-radius: 100px;
    background-color:var(--orange);
    color:var(--white);

  }

  /* .service-img:hover .text i{
    color: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    
  } */

 
   
   .service-card:hover .text{
    top:0;
    left:0;
     }

    
   .service-card:hover .icon-box i{
          background: linear-gradient(45deg, var(--white), var(--orange)); 
        -webkit-background-clip: text; 
        -webkit-text-fill-color: transparent;


   }

   .service-card:hover .icon-box {
    border-top: 4px solid var(--orange);
 

   }