.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service_block {
    /* background: linear-gradient(135deg, #f0fdf4, #ecfdf5); */
    border: 2px solid #467C64;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}

.service_block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2);
}

.shape_circle {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 90px;
    height: 90px;
    background: rgba(74, 222, 128, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.service_icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.service_icon svg {
    width: 45px;
    height: 45px;
    color: #467C64;
}

.service_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.service_content p {

    font-size: 22px!important;
    margin-bottom: 28px;
}



.service_block::before,
.service_block::after {
    content: '✦';
    position: absolute;
    font-size: 13px;
    color: #467C64;
    animation: sparkle 2s infinite ease-in-out;
}

.service_block::before {
    top: 16px;
    left: 15px;
}

.service_block::after {
    bottom: 18px;
    right: 18px;
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@media (max-width: 768px) {
    .service_block {
        padding: 35px 20px;
    }

    .service_title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

  
}
