/* Root Variables - Modern Aesthetic Palette */
:root {
    /* Primary Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    --gradient-warning: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-dark: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    /* Solid Colors */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4facfe;
    --success-color: #84fab0;
    --warning-color: #fa709a;
    --danger-color: #f5576c;
    
    /* Deep Background Colors */
    --deep-primary: #0f0c29;
    --deep-secondary: #302b63;
    --deep-tertiary: #24243e;
    --deep-accent: #1a1a2e;
    
    /* Neutral Colors */
    --background-light: #f7fafc;
    --background-glass: rgba(255, 255, 255, 0.7);
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    
    /* Shadows - Soft and Modern */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 30px rgba(102, 126, 234, 0.3);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    
    /* Deep Gradient Background Options */
    
    /* Option 1: Deep Purple to Dark Blue */
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    
    /* Option 2: Midnight Blue to Deep Purple (uncomment to use) */
    /* background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #16213e 100%); */
    
    /* Option 3: Deep Ocean Gradient (uncomment to use) */
    /* background: linear-gradient(135deg, #051937 0%, #004d7a 50%, #008793 100%); */
    
    /* Option 4: Dark Cosmic Gradient (uncomment to use) */
    /* background: linear-gradient(135deg, #000428 0%, #004e92 100%); */
    
    /* Option 5: Deep Night Sky (uncomment to use) */
    /* background: linear-gradient(to bottom, #020111 0%, #3a3d63 50%, #1a1a2e 100%); */
    
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: deepGradientShift 15s ease infinite;
    
    /* Other properties */
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
}

/* Subtle gradient animation */
@keyframes deepGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Deep overlay patterns */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Mesh gradient overlay for depth */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(118, 75, 162, 0.2) 0%, transparent 50%);
    z-index: -1;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Additional depth with noise texture (optional) */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgbnVtT2N0YXZlcz0iNCIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

/* Glowing orbs for additional depth */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Glass morphism elements styling for content */
.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-deep);
}

/* Deep theme adjustments for text */
body.deep-theme {
    color: #ffffff;
}

body.deep-theme .text-dark {
    color: #f7fafc;
}

body.deep-theme .text-light {
    color: #cbd5e0;
}

body.deep-theme .text-muted {
    color: #a0aec0;
}

/* Modern Container */
.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Enhanced Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out reverse;
}

/* Modern Card Styles with Glassmorphism */
.card {
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--transition-normal);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-colored);
}

.card-img-top {
    height: 240px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
}

/* Ripple Effect for Buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Modern Form Styles */
.form-control, .form-select {
    padding: 1rem 1.25rem;
    border-radius: 15px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition-normal);
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Modern Search Form */
.search-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
}

.search-form .form-control {
    border: none;
    background: transparent;
    box-shadow: none;
}

.search-form .btn {
    border-radius: 50px;
}

/* Enhanced Navbar with Gradient */
.navbar {
    padding: 1.25rem 0;
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem !important;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    transition: width 0.4s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Beautiful Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: dropdownSlide 0.3s ease;
}

.dropdown-item {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

/* Modern Alert Styles */
.alert {
    border: none;
    border-radius: 20px;
    padding: 1.25rem 2rem;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    animation: slideInAlert 0.5s ease;
}

.alert-info {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    border-left: 4px solid var(--accent-color);
}

.alert-success {
    background: linear-gradient(135deg, rgba(132, 250, 176, 0.2), rgba(143, 211, 244, 0.2));
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2), rgba(240, 147, 251, 0.2));
    border-left: 4px solid var(--danger-color);
}

/* Modern Footer */
footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    margin-top: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* Social Links with Hover Effects */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 0.5rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* Enhanced Footer Sections */
.footer-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 3px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Beautiful Rating System */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin: 20px 0;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0 2px;
    position: relative;
    transition: var(--transition-fast);
}

.rating label:before {
    content: "★";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
    color: #ddd;
}

.rating input:checked ~ label:before,
.rating label:hover ~ label:before,
.rating label:hover:before {
    color: gold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Animated Features Section */
.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-title, 
.feature-card:hover .feature-text {
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: white;
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.feature-text {
    color: var(--text-light);
    transition: var(--transition-normal);
}

/* Modern Testimonial Card */
.testimonial-card {
    padding: 2.5rem;
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 25px;
    font-size: 10rem;
    line-height: 1;
    font-family: 'Georgia', serif;
    color: rgba(102, 126, 234, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Modern Call-to-Action Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 5rem auto;
    max-width: 90%;
}

.cta-section::before, 
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.cta-section::before {
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    right: -100px;
}

.cta-section::after {
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Stats with Gradient Numbers */
.stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Component */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 6px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: white;
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.2);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -17px;
}

.timeline-item:nth-child(even)::after {
    left: -17px;
}

.timeline-content {
    padding: 2rem;
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* User Profile Components */
.user-avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--shadow-lg);
}

.user-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--background-glass);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
}

.user-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 0.25rem;
    color: var(--text-dark);
}

.user-role {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.user-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.user-stat {
    text-align: center;
}

.user-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.user-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Animations and Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInAlert {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.8s ease-in;
}

.slideUp {
    animation: slideUp 0.8s ease-out;
}

.slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.scaleIn {
    animation: scaleIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading and Spinner Styles */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-link {
        color: var(--text-dark) !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 18px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .card-img-top {
        height: 200px;
    }
    
    .search-form {
        flex-direction: column;
        padding: 1rem;
    }
    
    .search-form .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        max-width: 95%;
    }
    
    .feature-card,
    .testimonial-card,
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .hero-section,
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .stat-container {
        gap: 1.5rem;
    }
    
    .user-stats {
        flex-direction: column;
        gap: 1rem;
    }
}