
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.divider-line {
    width: 48px;
    height: 2px;
    background-color: #0046c0;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #444;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

/* Service card */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 3px solid #0046c0;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Service image */
.service-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,70,192,0.7), rgba(0,70,192,0.4));
    opacity: 0.8;
}

.icon-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    background-color: #fff;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    .icon-circle svg {
        stroke: #010171;
    }
    /* Service content */
    .service-content {

        padding: 24px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .service-content h3 {
        font-size: 20px;
        font-weight: 700;
        color: #fe7f01;
        margin-bottom: 8px;
    }

.service-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    margin-bottom: 16px;
}

.service-description {
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Service button */
.service-button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #010171;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

    .service-button:hover {
        background-color: #fe7f01;
        text-decoration: none;
        color: #ffff;
    }

.service-button svg {
    margin-left: 8px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}