body {
    font-family: 'Outfit', sans-serif;
    background-color: #f5f8ff;
    color: #0f172a;
}

h1, h2, h3, h4, h5, h6, .hero-title, .navbar-brand, .fw-bold {
    font-family: 'Raleway', sans-serif;
}

/* Glassmorphism Classes */
.glass-card {
    background-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.section-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(21, 142, 192, 0.12);
}

.hero-glow {
    background: radial-gradient(circle at top left, rgba(21, 142, 192, 0.25), transparent 30%),
                radial-gradient(circle at bottom right, rgba(21, 142, 192, 0.18), transparent 40%);
}

/* Navbar */
.navbar-glass {
    background-color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    z-index: 1050;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
    color: white;
}

/* Background element for zoom effect */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 20, 40, 0.4), rgba(10, 20, 40, 0.7)), url('../img/hero-bg.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-title {
    font-weight: 800;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f1f3f5;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 12px 15px;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* Buttons */
.btn-primary-glass {
    background: rgba(13, 110, 253, 0.9);
    /* backdrop-filter: blur(5px); */
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-glass:hover {
    background: rgba(13, 110, 253, 1);
    transform: translateY(-2px);
    color: white;
}

.filter-bar {
    margin-top: -40px;
    padding: 30px;
    z-index: 10;
    position: relative;
}

/* Exam Grid */
.exam-grid {
    margin-top: 40px;
    min-height: 400px;
}

.exam-item {
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 100px 0;
    margin-top: 80px;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* WYSIWYG Content reset for small displays */
.wysiwyg-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.wysiwyg-content p:last-child {
    margin-bottom: 0;
}

.wysiwyg-content ul, .wysiwyg-content ol {
    margin-bottom: 0.5rem;
}
/* Page Header (Breadcrumb Hero) */
.page-header {
    background: linear-gradient(rgba(10, 20, 40, 0.7), rgba(10, 20, 40, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-top: 70px; /* Offset for the fixed navbar */
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.breadcrumb-badge {
    background-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-badge a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-badge i {
    color: #0d6efd;
}

/* Page Header (Breadcrumb Hero) */
.page-header {
    background: linear-gradient(rgba(10, 20, 40, 0.7), rgba(10, 20, 40, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-top: 70px; /* Offset for the fixed navbar */
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.breadcrumb-badge {
    background-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-badge a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-badge i {
    color: #0d6efd;
}
