/* ============================================
   �  ELEGANT BRIGHT BLUE FEMININE THEME
   Clean & Sophisticated Design
   ============================================ */

:root {
    /* 💙 Bright Blue Feminine Color Palette */
    --primary-color: #4169E1;
    --secondary-color: #87CEEB;
    --accent-color: #00BFFF;
    --dark-bg: #F0F8FF;
    --darker-bg: #E6F3FF;
    --light-text: #1E3A8A;
    
    /* Additional Feminine Colors */
    --soft-pink: #FFB6C1;
    --lavender: #E6E6FA;
    --powder-blue: #B0E0E6;
    --pearl-white: #FEFEFE;
    --navy-text: #1E3A8A;
    --blue-gray: #6B7280;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(65, 105, 225, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(65, 105, 225, 0.15);
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
    --secondary-gradient: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    --accent-gradient: linear-gradient(135deg, #ADD8E6 0%, #87CEFA 100%);
    --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,248,255,0.8) 100%);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

/* ============================================
   💙 GLOBAL TEXT MUTED OVERRIDE
   ============================================ */

/* Override Bootstrap's text-muted to use blue instead of gray */
.text-muted {
    color: #4169E1 !important;
}

/* Variations for different contexts */
.text-muted-light {
    color: #87CEEB !important;
}

.text-muted-dark {
    color: #1E3A8A !important;
}

/* Ensure it works in all containers */
.card .text-muted,
.modal .text-muted,
.alert .text-muted,
.navbar .text-muted,
.footer .text-muted {
    color: #4169E1 !important;
}

/* ============================================
   GLOBAL RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 50%, #DBEAFE 100%);
    color: var(--navy-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
}

/* Elegant Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(65, 105, 225, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.6;
}

/* ============================================
   💙 BRIGHT BLUE FLOATING SHAPES BACKGROUND
   ============================================ */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: -2;
}

/* Floating Glass Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatGlass 20s infinite linear;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
    background: rgba(102, 126, 234, 0.05);
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
    background: rgba(118, 75, 162, 0.05);
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
    background: rgba(0, 212, 255, 0.05);
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
    background: rgba(255, 255, 255, 0.03);
}

.floating-shape:nth-child(5) {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    animation-delay: -20s;
    animation-duration: 40s;
    background: rgba(102, 126, 234, 0.03);
    transform: translate(-50%, -50%);
}

.floating-shape:nth-child(6) {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 10%;
    animation-delay: -25s;
    animation-duration: 32s;
    background: rgba(118, 75, 162, 0.04);
}

@keyframes floatGlass {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Enhanced Glassmorphism Particles */
.glass-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glass-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.glass-particle:nth-child(odd) {
    background: rgba(102, 126, 234, 0.03);
    border-color: rgba(102, 126, 234, 0.05);
}

.glass-particle:nth-child(even) {
    background: rgba(118, 75, 162, 0.03);
    border-color: rgba(118, 75, 162, 0.05);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.3;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Glassmorphism Glow Effects */
.glass-glow {
    position: relative;
}

.glass-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.1), 
        rgba(118, 75, 162, 0.1), 
        rgba(0, 212, 255, 0.1)
    );
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-glow:hover::after {
    opacity: 1;
}

/* ============================================
   ELEGANT NAME ANIMATION
   ============================================ */
.hero-name-animated {
    background: linear-gradient(90deg, 
        #1E3A8A 0%, 
        #4169E1 25%, 
        #87CEEB 50%, 
        #4169E1 75%, 
        #1E3A8A 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: elegantColorFlow 8s ease-in-out infinite;
}

@keyframes elegantColorFlow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1E3A8A;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #1E3A8A;
    line-height: 1.8;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: #1E3A8A;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4169E1);
    border-radius: 10px;
}

/* ============================================
   CARD SYSTEM
   ============================================ */
.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 24px;
    padding: var(--space-lg);
    transition: all var(--transition-normal);
    box-shadow: 
        0 12px 40px rgba(65, 105, 225, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.4), transparent);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(65, 105, 225, 0.2),
        0 0 0 1px rgba(65, 105, 225, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(65, 105, 225, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.card-title {
    color: #1E3A8A;
    font-weight: 700;
}

.card-text {
    color: #1E3A8A;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-fast);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4169E1 0%, #87CEEB 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    color: white;
}

.glass-btn,
.glass-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.glass-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.glass-btn:hover,
.glass-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    border-radius: 50%;
    border: 4px solid rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all var(--transition-normal);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.5);
}

/* ============================================
   BADGES
   ============================================ */
.glass-badge,
.glass-badge-primary {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.glass-badge-primary {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: #667eea;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    color: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: #1E3A8A;
    font-weight: 600;
    margin-bottom: 8px;
}

.search-filter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-xl);
}

.page-item {
    list-style: none;
}

.page-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 10px 16px;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-weight: 600;
}

.page-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}

/* ============================================
   CERTIFICATES & ACTIVITIES
   ============================================ */
.certificate-card-home,
.certificate-card,
.activity-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.certificate-card-home:hover,
.certificate-card:hover,
.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.certificate-img-home,
.certificate-img,
.card-img-top {
    transition: transform var(--transition-normal);
}

.certificate-card-home:hover .certificate-img-home,
.certificate-card:hover .certificate-img,
.activity-item:hover .card-img-top {
    transform: scale(1.1);
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

/* ============================================
   BIODATA
   ============================================ */
.biodata-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    margin: 0 8px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    transform: translateY(-5px);
    color: white;
}

/* ============================================
   EDUCATION TIMELINE
   ============================================ */
.education-timeline {
    position: relative;
    padding-left: 50px;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 10px;
}

.education-item {
    position: relative;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.education-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 30px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 4px solid var(--darker-bg);
    z-index: 1;
}

.education-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    color: white;
}

.alert-info {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

/* ============================================
   FOOTER - BRIGHT BLUE THEME
   ============================================ */
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-top: 3px solid #87CEEB;
    padding: var(--space-xl) 0;
    margin-top: var(--space-xl);
    box-shadow: 0 -10px 40px rgba(65, 105, 225, 0.1);
}

/* ============================================
   SCROLLBAR - BRIGHT BLUE THEME
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #F0F8FF;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4169E1 0%, #87CEEB 100%);
    box-shadow: 0 0 10px rgba(65, 105, 225, 0.5);
}



/* ============================================
   UTILITIES
   ============================================ */
.text-white {
    color: #1E3A8A !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    body {
        padding-top: 75px;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .profile-image {
        max-width: 300px;
    }
    
    .glass-card-white {
        width: 300px;
        height: 300px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
    
    .profile-image {
        max-width: 280px;
    }
    
    .glass-card-white {
        width: 280px;
        height: 280px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .glass-btn,
    .glass-btn-primary {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    /* Navbar adjustments */
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(102, 126, 234, 0.2);
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    body {
        padding-top: 65px;
        font-size: 16px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0;
        min-height: 90vh;
    }
    
    .hero-section .row {
        text-align: center;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 2;
        margin-top: 30px;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 1;
    }
    
    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .glass-card-white {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* Typography Mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    /* Cards Mobile */
    .card {
        padding: 1.25rem;
        margin-bottom: 20px;
        border-radius: 16px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .glass-btn,
    .glass-btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
    
    /* Grid Systems Mobile */
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .row.g-5 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 2rem;
    }
    
    /* Education Timeline Mobile */
    .education-timeline {
        padding-left: 30px;
    }
    
    .education-timeline::before {
        left: 10px;
        width: 2px;
    }
    
    .education-item::before {
        left: -22px;
        width: 16px;
        height: 16px;
    }
    
    .education-item {
        padding: 1rem;
    }
    
    /* Biodata Mobile */
    .biodata-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 5px;
    }
    
    /* Forms Mobile */
    .form-control,
    .form-select {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    /* Search and Filter Mobile */
    .search-filter-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Pagination Mobile */
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    /* Floating Shapes Mobile - Reduce Size */
    .floating-shapes .shape {
        opacity: 0.3;
    }
    
    .shape-1 { width: 120px; height: 120px; }
    .shape-2 { width: 100px; height: 100px; }
    .shape-3 { width: 80px; height: 80px; }
    .shape-4 { width: 60px; height: 60px; }
    .shape-5 { width: 90px; height: 90px; }
    .shape-6 { width: 50px; height: 50px; }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    body {
        padding-top: 60px;
        font-size: 15px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Hero Section Small Mobile */
    .hero-section {
        padding: 30px 0;
        min-height: 85vh;
    }
    
    .profile-image {
        max-width: 200px;
    }
    
    .glass-card-white {
        width: 200px;
        height: 200px;
    }
    
    /* Typography Small Mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .display-3 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    /* Cards Small Mobile */
    .card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
    
    /* Buttons Small Mobile */
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .glass-btn,
    .glass-btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Biodata Small Mobile */
    .biodata-card {
        padding: 1rem;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Forms Small Mobile */
    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    /* Education Timeline Small Mobile */
    .education-timeline {
        padding-left: 25px;
    }
    
    .education-timeline::before {
        left: 8px;
        width: 2px;
    }
    
    .education-item::before {
        left: -18px;
        width: 12px;
        height: 12px;
    }
    
    .education-item {
        padding: 0.75rem;
    }
    
    /* Floating Shapes Small Mobile - Further Reduce */
    .shape-1 { width: 80px; height: 80px; }
    .shape-2 { width: 70px; height: 70px; }
    .shape-3 { width: 60px; height: 60px; }
    .shape-4 { width: 40px; height: 40px; }
    .shape-5 { width: 60px; height: 60px; }
    .shape-6 { width: 35px; height: 35px; }
    
    /* Spacing Adjustments */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
}

/* Extra Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    .profile-image {
        max-width: 180px;
    }
    
    .glass-card-white {
        width: 180px;
        height: 180px;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 0.75rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .glass-btn,
    .glass-btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-section .row {
        align-items: center;
    }
    
    .hero-section .col-lg-6:first-child {
        order: 1;
        margin-top: 0;
    }
    
    .hero-section .col-lg-6:last-child {
        order: 2;
    }
    
    .profile-image {
        max-width: 200px;
    }
    
    .glass-card-white {
        width: 200px;
        height: 200px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .btn:hover,
    .glass-btn:hover,
    .glass-btn-primary:hover {
        transform: none;
    }
    
    .card,
    .btn,
    .glass-btn,
    .glass-btn-primary {
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }
    
    /* Increase touch targets */
    .btn,
    .glass-btn,
    .glass-btn-primary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-links a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-image,
    .card-img-top {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}
/* ============================================
   DROPDOWN STYLING - BRIGHT BLUE THEME
   ============================================ */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.15);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-menu.show {
    animation: dropdownSlideIn 0.3s ease-out;
}

.dropdown-item {
    color: #1E3A8A;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: linear-gradient(135deg, #87CEEB, #4169E1);
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-item:active {
    background: linear-gradient(135deg, #4169E1, #87CEEB);
    color: #ffffff;
}

.dropdown-divider {
    border-top: 1px solid rgba(135, 206, 235, 0.3);
    margin: 8px 0;
}

.dropdown-header {
    color: #4169E1;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px 4px;
}

/* Dropdown Animation */
.dropdown-menu.show {
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dropdown Arrow */
.dropdown-toggle::after {
    border-top-color: #1E3A8A;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 200px;
        max-width: 90vw;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Dropdown in Navbar */
.navbar .dropdown-menu {
    margin-top: 12px;
}

.navbar .dropdown-toggle::after {
    border-top-color: #1E3A8A;
}
/* ============================================
   NAVBAR DROPDOWN ENHANCEMENTS - BRIGHT BLUE THEME
   ============================================ */
.navbar .dropdown-menu {
    transition: all 0.3s ease;
    transform-origin: top center;
}

.navbar .dropdown-menu.show {
    animation: dropdownSlideIn 0.3s ease-out;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(65, 105, 225, 0.2);
}

.navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .dropdown-item i {
    width: 16px;
    text-align: center;
    color: #4169E1;
}

.navbar .dropdown-item:hover i {
    color: #ffffff;
}

/* Mega Dropdown (if needed) */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px;
}

.mega-dropdown .dropdown-menu .row {
    margin: 0;
}

.mega-dropdown .dropdown-menu .col {
    padding: 10px;
}

/* Dropdown Badge */
.dropdown-item .badge {
    margin-left: auto;
    background: linear-gradient(135deg, #87CEEB, #4169E1);
    color: white;
    font-size: 0.75rem;
}

/* Dropdown Search */
.dropdown-search {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    margin-bottom: 5px;
}

.dropdown-search input {
    width: 100%;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
}

.dropdown-search input:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

/* Dropdown Footer */
.dropdown-footer {
    padding: 10px 15px;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
    margin-top: 5px;
    text-align: center;
}

.dropdown-footer a {
    color: #4169E1;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.dropdown-footer a:hover {
    color: #87CEEB;
}
/* ============================================
   GLASS DROPDOWN ITEM STYLING - BRIGHT BLUE THEME
   ============================================ */
.glass-dropdown-item {
    color: #1E3A8A !important;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    margin: 2px 8px;
    font-weight: 500;
}

.glass-dropdown-item i {
    color: #4169E1;
    transition: all 0.3s ease;
}

.glass-dropdown-item:hover,
.glass-dropdown-item:focus {
    background: linear-gradient(135deg, #87CEEB, #4169E1) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

.glass-dropdown-item:hover i,
.glass-dropdown-item:focus i {
    color: #ffffff !important;
}

.glass-dropdown-item.active {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(65, 105, 225, 0.2)) !important;
    color: #4169E1 !important;
    font-weight: 600;
}

.glass-dropdown-item.active i {
    color: #4169E1 !important;
}

/* Dropdown Divider in Glass Dropdown */
.glass-dropdown .dropdown-divider {
    border-top: 1px solid rgba(135, 206, 235, 0.2);
    margin: 4px 12px;
}

/* Glass Navbar Light */
.glass-navbar-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 2px 20px rgba(65, 105, 225, 0.1);
}

.glass-navbar-light .nav-link {
    color: #1E3A8A;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.glass-navbar-light .nav-link:hover {
    color: #4169E1;
    background: rgba(65, 105, 225, 0.1);
}

.glass-navbar-light .nav-link.active {
    color: #4169E1;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(65, 105, 225, 0.3));
}

.glass-navbar-light .dropdown-toggle::after {
    border-top-color: #1E3A8A;
}

/* Mobile Dropdown */
@media (max-width: 991px) {
    .glass-dropdown {
        background: rgba(255, 255, 255, 0.98);
        border: none;
        box-shadow: none;
        margin-top: 8px;
        border-radius: 8px;
    }
    
    .glass-dropdown-item {
        padding: 12px 20px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        border: 1px solid rgba(135, 206, 235, 0.2);
    }
}
/* ============================================
   FLOATING SHAPES BACKGROUND
   ============================================ */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.06), rgba(102, 126, 234, 0.06));
    animation-delay: -2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    animation-delay: -4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.04), rgba(102, 126, 234, 0.04));
    animation-delay: -1s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 60%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.07), rgba(118, 75, 162, 0.07));
    animation-delay: -3s;
}

.shape-6 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 50%;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.03), rgba(102, 126, 234, 0.03));
    animation-delay: -5s;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Slow Float Animation */
.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(10px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.05);
    }
}

/* Additional Shapes for Variety */
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(102, 126, 234, 0.05);
    border-radius: 0;
    background: none;
}

.shape-square {
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.04), rgba(118, 75, 162, 0.04));
}

.shape-diamond {
    transform: rotate(45deg);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.06), rgba(102, 126, 234, 0.06));
}

/* Responsive Shapes */
@media (max-width: 768px) {
    .shape-1 { width: 120px; height: 120px; }
    .shape-2 { width: 100px; height: 100px; }
    .shape-3 { width: 80px; height: 80px; }
    .shape-4 { width: 60px; height: 60px; }
    .shape-5 { width: 90px; height: 90px; }
    .shape-6 { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
    .shape-1 { width: 80px; height: 80px; }
    .shape-2 { width: 70px; height: 70px; }
    .shape-3 { width: 60px; height: 60px; }
    .shape-4 { width: 40px; height: 40px; }
    .shape-5 { width: 60px; height: 60px; }
    .shape-6 { width: 35px; height: 35px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .shape {
        animation: none;
    }
}

/* Page Background with Shapes */
.page-background {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.section-background {
    position: relative;
    overflow: hidden;
}

.container-with-shapes {
    position: relative;
    z-index: 2;
}
/* ============================================
   💙 COMPREHENSIVE WHITE TO BLUE TEXT OVERRIDE
   ============================================ */

/* Override any remaining white text */
.text-light, .text-white {
    color: #1E3A8A !important;
}

/* Form elements */
.form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(135, 206, 235, 0.4) !important;
    color: #1E3A8A !important;
}

.form-control:focus {
    border-color: #4169E1 !important;
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25) !important;
    color: #1E3A8A !important;
}

/* Dropdown items */
.dropdown-item {
    color: #1E3A8A !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(65, 105, 225, 0.1) !important;
    color: #4169E1 !important;
}

/* Glass elements */
.glass-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1E3A8A !important;
    border: 2px solid rgba(135, 206, 235, 0.3) !important;
}

.glass-btn:hover {
    background: rgba(65, 105, 225, 0.1) !important;
    color: #4169E1 !important;
}

/* Navbar elements */
.navbar-dark .navbar-nav .nav-link {
    color: #1E3A8A !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #4169E1 !important;
}

/* Alert elements */
.alert {
    color: #1E3A8A !important;
}

/* Badge elements */
.badge {
    color: white !important; /* Keep badges white for contrast */
}

/* Table elements */
.table {
    color: #1E3A8A !important;
}

.table th {
    color: #1E3A8A !important;
}

.table td {
    color: #1E3A8A !important;
}

/* Search and filter sections */
.search-filter-section {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(135, 206, 235, 0.3) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 32px rgba(65, 105, 225, 0.1) !important;
}

/* Page background containers */
.page-background {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 50%, #DBEAFE 100%) !important;
    min-height: 100vh !important;
}

.container-with-shapes {
    position: relative !important;
    z-index: 2 !important;
}

/* Floating shapes for bright theme */
.floating-shapes .shape {
    background: rgba(135, 206, 235, 0.1) !important;
    border: 1px solid rgba(65, 105, 225, 0.2) !important;
}

.shape-1 { background: rgba(135, 206, 235, 0.15) !important; }
.shape-2 { background: rgba(65, 105, 225, 0.1) !important; }
.shape-3 { background: rgba(0, 191, 255, 0.1) !important; }
.shape-4 { background: rgba(135, 206, 235, 0.08) !important; }
.shape-5 { background: rgba(65, 105, 225, 0.12) !important; }
.shape-6 { background: rgba(176, 224, 230, 0.15) !important; }
/* ============================================
   💙 ENHANCED SCROLL ANIMATIONS - NO PROGRESS BAR
   ============================================ */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Navbar scroll trigger enhancement */
.navbar-scroll-trigger {
    position: relative;
}

.navbar-scroll-trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #87CEEB, #4169E1, #87CEEB, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-scrolled .navbar-scroll-trigger::after {
    opacity: 1;
}

/* Scroll-based content animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced navbar shadow on scroll */
.glass-navbar-light.navbar-scrolled,
.admin-navbar.navbar-scrolled {
    box-shadow: 
        0 8px 32px rgba(65, 105, 225, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Parallax scroll effect for backgrounds */
.parallax-scroll {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Mobile scroll optimizations */
@media (max-width: 768px) {
    .glass-navbar-light.navbar-scrolled,
    .admin-navbar.navbar-scrolled {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

/* Scroll direction detection classes */
.scroll-up .glass-navbar-light,
.scroll-up .admin-navbar {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.scroll-down .glass-navbar-light,
.scroll-down .admin-navbar {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Override for when navbar should always be visible */
.navbar-always-visible {
    transform: translateY(0) !important;
}