.service-container
{
    
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
}

 .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
    .service-item {
        position: relative;
        width: calc(33.333% - 20px); /* 3 columns with 20px gap */
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 20px;
		 box-shadow: 0px 10px 4px -3px rgba(0,0,0,0.1);
		padding:20px;
		border-radius:20px;

    }
    .service-item:hover {
   
    transition: all .5s;
    transform: translateY(-10px);
}
    .service-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius:20px;
    }
	
.service-arrow {
    /* display: inline-flex; */
    /* margin-left: 10px; */
    /* transition: transform 0.3s ease; */
    float: right;
    background-color:#d58e00;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 20px;
   
    padding: 4px 4px;
}
.service-arrow:hover {
    background-color: #160066;
  
}

.service-arrow:hover:before{
 animation: aniArrow01 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}

.service-arrow:hover:after{
 animation: aniArrow02 1s cubic-bezier(0, 0.6, 1, 0.4) infinite 0.5s;
}




.service-arrow svg {
    width: 20px;
    height: 20px;
}


.service-title {
 
 
    width: 100%;
    color: #000;
    text-align: left;
    font-size: 16px;
    padding: 10px;
	font-weight:bold;
    
}

	
    @media (max-width: 992px) {
        .service-item {
            width: calc(50% - 20px); /* 2 columns with 20px gap */
        }
    }
    @media (max-width: 600px) {
        .service-item {
            width: calc(100% - 20px); /* 1 column with 20px gap */
        }
    }
   
