section.services{
    width: 100%;
    min-height: 100vh;
    padding: 2rem 0;
}

section .main-title{
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #121C52;
}

section .service-main-desc{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.756);  
}


.all-services-list {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.all-services-list .single-service-card {
    width: 30%!important;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding: 20px 10px;
    color: #121C52;
    transition: background-color 0.3s ease;
    border: 1px solid #121C52;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.all-services-list .single-service-card:hover {
    background-color: #121C52;
    color: white;
}

.single-service-card .icon {
    font-size: 50px;
    color: #121C52;
    transition: color 0.3s ease;
}

.single-service-card:hover .icon {
    color: white;
}

.single-service-card .service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #121C52;
    max-width: 100%;
    text-align: center;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.single-service-card:hover .service-title {
    color: white;
}

.single-service-card .service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.single-service-card:hover .service-desc {
    color: white;
}

.single-service-card .service-btn a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
    width: 120px;
    text-decoration: none;
    padding: 0.7rem 0;
    background-color: #121C52;
    text-align: center;
    color: white;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.single-service-card:hover .service-btn a {
    background-color: white;
    color: #121C52;
}


@media screen and (max-width: 768px) {
    section .main-title{
        font-size: 2.5rem;
        
    }
    section .service-main-desc{
        font-size: 16px;
        
    }
    .all-services-list {
        flex-direction: column;         
    }
    .all-services-list .single-service-card {
        width: 100%!important;
    }
    
}
