/* Service Cards Styles */
.service_cards_wrapper {
    background-color: #f8f9fa;
}

.service_card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service_card_img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service_card:hover .service_card_img img {
    transform: scale(1.1);
}

.service_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 74, 147, 0.8), rgba(37, 74, 147, 0.6));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_card:hover .service_overlay {
    opacity: 1;
}

.service_icon {
    color: #ffffff;
    font-size: 48px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.service_card:hover .service_icon {
    transform: scale(1);
}

.service_card_content {
    padding: 30px 25px;
}

.service_card_content h3 {
    color: #254a93;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service_card_content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service_features {
    margin-bottom: 25px;
}

.service_features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service_features li {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service_features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 12px;
}

.service_btn {
    text-align: center;
}

.service_btn .btn {
    background-color: #254a93;
    border: 1px solid #254a93;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.service_btn .btn:hover {
    background-color: transparent;
    color: #254a93;
    border-color: #254a93;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service_card_img {
        height: 200px;
    }
    
    .service_card_content {
        padding: 20px 15px;
    }
    
    .service_card_content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .service_card {
        margin-bottom: 20px;
    }
    
    .service_card_img {
        height: 180px;
    }
    
    .service_card_content {
        padding: 15px;
    }
    
    .service_card_content h3 {
        font-size: 18px;
    }
}