/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 0 0 50px 50px;
}

/* Hover Effects */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
}

/* Section Headings */
.section-title {
    font-weight: 700;
    color: #1e3a8a;
    position: relative;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #2563eb;
    border-radius: 2px;
}

/* Statistics Icons */
.stat-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

/* Inputs */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

/* Badge Styling */
.badge-soft-primary {
    background-color: #dbeafe;
    color: #2563eb;
}
