/* Service Icons Styles */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #4A90E2;
    color: #fff;
}

.service-icon i {
    font-size: 2rem;
    color: #0A3161;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A3161;
    font-weight: 700;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .btn-text {
    margin-top: auto;
    align-self: center;
}

/* Solutions Icons */
.solution-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.solution-icon {
    width: 100px;
    height: 100px;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: #4A90E2;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #0A3161;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-icon i {
    color: #fff;
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

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

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A3161;
    font-weight: 700;
}

.solution-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.solution-content .btn-text {
    margin-top: auto;
    align-self: center;
}

@media (max-width: 768px) {
    .service-icon, .solution-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i, .solution-icon i {
        font-size: 1.75rem;
    }
    
    .service-card, .solution-content {
        padding: 20px;
    }
}
