/* Career Assessment & Guidance - start  */
.career-heading {
    color: #1a1a1a;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.btn-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-purple:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    color: white;
    transform: translateY(-2px);
}

.text-purple {
    color: #8b5cf6;
}

.text-orange {
    color: #f97316;
}

.avatar-circle {
    width: 64px;
    height: 64px;
    overflow: hidden;
}

.rounded-4 {
    border-radius: 1rem;
}

.object-fit-cover {
    object-fit: cover;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Hover effect for cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing Display */
.h2.fw-bold.text-purple {
    font-size: 2.5rem;
    line-height: 1;
}

.h5.fw-semibold.text-muted {
    opacity: 0.6;
    font-size: 1.25rem !important;
}

/* Savings Badge */
.alert.alert-success.rounded-pill {
    padding: 0.5rem 1.25rem !important;
    width: fit-content;
    margin-top: 0.75rem;
}

.alert.alert-success i {
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .career-heading {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

/* Career Assessment & Guidance - end  */