/* School college counseling - start*/
.bg-gradient-soft-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
}

.bg-gradient-soft-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.bg-gradient-soft-yellow {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.border-purple {
    border-color: #8b5cf6 !important;
}

.text-purple {
    color: #8b5cf6;
}

.btn-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-purple:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    transform: translateY(-2px);
}

.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);
}

.badge.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.bg-gradient-soft-yellow {
    background: linear-gradient(135deg, rgba(254, 252, 232, 0.7) 0%, rgba(254, 249, 195, 0.7) 100%);
}

.bg-gradient-soft-blue {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.7) 0%, rgba(191, 219, 254, 0.7) 100%);
}

/* For icon colors if not already defined */
.text-danger {
    color: #dc3545;
}

.text-success {
    color: #198754;
}

.text-primary {
    color: #0d6efd;
}

.text-purple {
    color: #6f42c1;
}

.text-warning {
    color: #ffc107;
}

/* Icon Circle */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.bg-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-circle.bg-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* Enhanced benefit cards */
.bg-gradient-soft-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.bg-gradient-soft-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

/* Badge styles for checkmarks */
.badge {
    font-size: 0.75rem;
}

.badge.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
}

/* 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;
}

@media (max-width: 768px) {
    .rounded-4 {
        border-radius: 1rem !important;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .card-body {
        padding: 1.5rem;
    }
}

/* School college counseling - end*/