.elementor-6229 .elementor-element.elementor-element-3004e9c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2f0eaa5 *//* Professional Cards Styling */
.professional-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 15px;
}

.professional-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(19, 114, 194, 0.05);
    border: 1px solid rgba(19, 114, 194, 0.1);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1372C2;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.professional-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(19, 114, 194, 0.12);
    border-color: rgba(19, 114, 194, 0.3);
}

.professional-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(19, 114, 194, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1372C2;
    font-size: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.professional-card:hover .card-icon {
    background: #1372C2;
    color: white;
    transform: scale(1.05);
}

.card-content {
    flex: 1;
}

.card-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #1372C2;
    background: rgba(19, 114, 194, 0.08);
    padding: 3px 8px;
    border-radius: 30px;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.card-desc {
    font-size: 13px;
    color: #5a6a7a;
    margin: 0;
    line-height: 1.4;
}

/* Category heading styling */
.instrument-category h4 {
    display: flex;
    align-items: center;
    color: #1372C2;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(19, 114, 194, 0.15);
    font-weight: 600;
}

.instrument-category h4 i {
    font-size: 22px;
}/* End custom CSS */