/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-accent-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 0 auto 60px;
    border-radius: 2px;
}

/* Services Grid Layout - Simplified for Bootstrap */
.services-grid {
    /* Remove grid-template-columns, max-width, gap, and justify-items */
    /* Bootstrap's .row and .col-* classes will handle this */
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease;
    margin-bottom: 40px; /* Added margin-bottom for spacing between items */
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.circle-inner {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Image Styling for JPG Images */
.service-image {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Remove icon font-size (as images are used) */
.service-image i {
    display: none;
}

.service-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Responsive adjustments (Simplified, as Bootstrap handles most of it) */
@media (max-width: 768px) {
    .service-circle {
        width: 160px;
        height: 160px;
    }

    .service-image {
        width: 120px; /* Adjusted image size for smaller screens */
        height: 120px; /* Adjusted image size for smaller screens */
    }

    .service-item h4 {
        font-size: 1.2rem;
    }
}