#services .head
{
    text-align: center;
}
#services .headstyle
{
    
    padding: 5px 15px;
    background-image: linear-gradient(to left, #00bf63, #575656);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #f7f4f4;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.service-card {
    width: 250px;
    border: 1px solid #575656;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    
}

.service-card:hover {
    transform: scale(1.05);
}
.service-card:hover .content {
    display: block;
}

.icon img {
    width: 50px;
    height: 50px;
    
}
.icon i{
    color: #00bf63;
    text-shadow: 2px 2px 2px #575656;
    font-size: 30px;
}
.heading {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
   
}

.content {
    display: none;
    margin-top: 20px;
    text-align: center;
    box-shadow: 2px 2px 3px  #00bf63;
    font-style: italic;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
   
   
}

.content p {
    font-size: 14px;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .service-card {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 150px;
    }
}
