*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    padding: 70px 10%;
    font-size: 2.5rem;
}


.our-services{
    padding: 70px 10%;
}
.our-services h2{
    font-size: 2.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 20px;
}
.our-services p{
    font-size: 18px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
}
.our-services .services-container{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.our-services .services-container .service-card{
    width: 30%;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgb(231, 0, 58);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.our-services .services-container .service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: aliceblue;
    border: none;
}
.our-services .services-container .service-card h3{
    font-size: 1.5rem;
    color: rgb(0, 92, 150);
    margin-bottom: 12px;
}
.our-services .services-container .service-card p{
    font-size: 16px;
    color: rgb(0, 0, 0);
}
/* .our-services .services-container .service-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
} */
.view-plan-btn{
    display: inline-block;
    margin-top: 12px;
    padding: 9px 20px;
    background-image: linear-gradient(to right, #3a98e3, #155385);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}
/* 
==============================================
    Our Services Section styling End
==============================================
*/

@media (max-width: 700px) {
    .our-services .services-container .service-card {
        width: 100%;
    }
}