/* Enhanced Service Cards for Services Page */
.service-card {
    text-align: center;
    padding: 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(30, 144, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.15);
    border-color: rgba(30, 144, 255, 0.2);
}

.service-card .card-body {
    padding: 1rem;
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.35);
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.service-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    text-align: justify;
    text-justify: inter-word;
    min-height: 60px;
}

.service-card .btn {
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
    font-family: 'Inter', sans-serif;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.35);
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.service-card .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
}

/* Mobile Responsive for Service Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
    }
    
    .service-card .card-text {
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .service-card .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}
