/* Custom CSS for Meclis25 Project */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
    box-sizing: inherit;
}
/* Global Styles - Logo Inspired Colors */
:root {
    --primary-color: #4A90E2;     /* Logo Blue */
    --secondary-color: #8B4513;   /* Logo Brown */
    --success-color: #2ECC71;     /* Logo Green */
    --danger-color: #E74C3C;      /* Logo Red */
    --warning-color: #F5D547;     /* Logo Yellow */
    --info-color: #FF8C42;        /* Logo Orange */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-yellow: #F5D547;
    --accent-orange: #FF8C42;
    --border-radius: 12px;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    
    /* Bootstrap primary color override - biraz daha koyu mavi */
    --bs-primary: #3A7BC8;
    --bs-primary-rgb: 58, 123, 200;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

/* Appointment System Styles */
.appointment-slot {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.appointment-slot:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0.25rem 0.5rem rgba(74, 144, 226, 0.15);
}

.appointment-slot.selected {
    border-color: var(--primary-color);
    background-color: rgba(74, 144, 226, 0.05);
}

.appointment-slot.unavailable {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

.appointment-status {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.appointment-status.pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.appointment-status.approved {
    background-color: #d1edff;
    color: #0c5460;
    border: 1px solid #b8daff;
}

.appointment-status.rejected {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.appointment-status.completed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.appointment-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.appointment-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.appointment-actions .btn {
    margin: 0.125rem;
    font-size: 0.875rem;
}

.calendar-view {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.calendar-header {
    background: linear-gradient(135deg, var(--primary-color), #357abd);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.time-slot {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background-color: #f8f9fa;
    border-color: var(--primary-color);
}

.time-slot.booked {
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.time-slot.available {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.appointment-form {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.appointment-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.priority-high {
    border-left: 4px solid #dc3545;
}

.priority-medium {
    border-left: 4px solid #ffc107;
}

.priority-low {
    border-left: 4px solid #28a745;
}

@media (max-width: 768px) {
    .appointment-slot {
        margin-bottom: 1rem;
    }
    
    .appointment-actions {
        text-align: center;
        margin-top: 1rem;
    }
    
    .appointment-form {
        padding: 1rem;
    }
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7BC8 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #27AE60 100%);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #F39C12 100%);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(245, 213, 71, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #C0392B 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #E67E22 100%);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Enhanced Navigation */
.navbar {
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-yellow) 100%) !important;
    overflow: visible;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: auto;
    min-height: 120px;
    padding: 0.25rem 0;
    z-index: 9998;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: navShine 3s infinite;
}

@keyframes navShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
    height: auto;
    min-height: 10px;
}

.navbar-brand img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* .navbar-brand:hover::before {
    opacity: 1;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
} */

.navbar-brand i {
    margin-right: 0.5rem;
    animation: brandPulse 2s infinite;
}

@keyframes brandPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    margin: 0 0.2rem;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.nav-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700 !important;
    font-weight: 600;
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 1rem;
    background: white;
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.3s ease;
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    right: 0;
    min-width: 200px;
    transform: translateY(0) !important;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.3s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), #357ABD);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced User Dropdown */
.nav-item.dropdown {
    position: relative;
    z-index: 9999;
}

.nav-item.dropdown .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
}

.nav-item.dropdown .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-item.dropdown .nav-link i {
    margin-right: 0.5rem;
    animation: userIconFloat 3s ease-in-out infinite;
}

@keyframes userIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Navbar Toggler Enhancement */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation Particles */
.nav-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.nav-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: navParticleFloat 8s infinite linear;
}

.nav-particle.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.nav-particle.particle-2 {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 12s;
    background: rgba(255, 255, 255, 0.4);
}

.nav-particle.particle-3 {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.nav-particle.particle-4 {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 11s;
    background: rgba(255, 255, 255, 0.3);
}

.nav-particle.particle-5 {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 13s;
}

@keyframes navParticleFloat {
    0% {
        transform: translateY(100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation Glow Effect */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    animation: navGlow 2s ease-in-out infinite alternate;
}

@keyframes navGlow {
    from {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Navigation Geometric Shapes */
.nav-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.nav-shape {
    position: absolute;
    opacity: 0.1;
    animation: navShapeRotate 15s infinite linear;
}

.nav-shape.shape-1 {
    top: 20%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation-delay: 0s;
}

.nav-shape.shape-2 {
    top: 60%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid rgba(255, 215, 0, 0.3);
    animation-delay: 5s;
}

.nav-shape.shape-3 {
    top: 40%;
    left: 60%;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation-delay: 10s;
}

@keyframes navShapeRotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

/* Navigation Orbs */
.nav-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.nav-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: navOrbGlow 4s ease-in-out infinite alternate;
}

.nav-orb.orb-1 {
    top: 10%;
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
}

.nav-orb.orb-2 {
    bottom: 10%;
    right: 30%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation-delay: 2s;
}

@keyframes navOrbGlow {
    from {
        opacity: 0.3;
        transform: scale(1);
    }
    to {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

/* Responsive Navigation Enhancements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .nav-link {
        color: var(--dark-color) !important;
        margin: 0.2rem 0;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white !important;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-particles,
    .nav-shapes,
    .nav-orbs {
        display: none;
    }
    
    .navbar::after {
        display: none;
    }
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 6px;
    font-weight: 500;
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

.alert-primary {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.alert-success {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(245, 213, 71, 0.1) 0%, rgba(245, 213, 71, 0.05) 100%);
    color: #B7950B;
    border-left: 4px solid var(--warning-color);
}

.alert-danger, .alert-error {
    background-color: #dc3545 !important;
    color: white !important;
    border: 1px solid #dc3545 !important;
    border-left: 4px solid #b02a37 !important;
}

.alert-info {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* Location Warning - Custom Non-Bootstrap Component */
.location-warning {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(23, 162, 184, 0.08) 100%);
    color: #0c5460;
    border: 1px solid rgba(23, 162, 184, 0.2);
    border-left: 4px solid #17a2b8;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(23, 162, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.location-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #17a2b8, #20c997, #17a2b8);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.location-warning .location-icon {
    color: #17a2b8;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.location-warning h6 {
    color: #0c5460;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-warning p {
    color: #0c5460;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.location-warning .btn {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid #17a2b8;
    color: #17a2b8;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-warning .btn:hover {
    background: #17a2b8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* Progress Bars */
.progress {
    border-radius: 10px;
    height: 8px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 100%);
}

/* Tables */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    transform: scale(1.01);
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    border: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.pagination .page-link:hover {
    color: var(--primary-color);
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    transform: translateY(-1px);
}

/* Custom Components */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-yellow) 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    color: white;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

.stats-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.shadow-sm {
    box-shadow: var(--box-shadow) !important;
}

.shadow {
    box-shadow: var(--box-shadow-lg) !important;
}

.rounded-lg {
    border-radius: var(--border-radius) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    transform: translateY(-1px);
}

/* Logo Inspired Custom Styles */
.stats-card-blue {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A7BC8 100%);
}

.stats-card-green {
    background: linear-gradient(135deg, var(--success-color) 0%, #27AE60 100%);
}

.stats-card-yellow {
    background: linear-gradient(135deg, var(--warning-color) 0%, #F39C12 100%);
}

.stats-card-red {
    background: linear-gradient(135deg, var(--danger-color) 0%, #C0392B 100%);
}

.stats-card-orange {
    background: linear-gradient(135deg, var(--info-color) 0%, #E67E22 100%);
}

.stats-card-brown {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6F4E37 100%);
}

/* Enhanced Card Styles */
.card-primary {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.card-success {
    border-left: 4px solid var(--success-color);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.card-warning {
    border-left: 4px solid var(--warning-color);
    background: linear-gradient(135deg, rgba(245, 213, 71, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.card-danger {
    border-left: 4px solid var(--danger-color);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.card-info {
    border-left: 4px solid var(--info-color);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Logo Color Accents */
.accent-border-blue {
    border-left: 5px solid var(--primary-color);
}

.accent-border-green {
    border-left: 5px solid var(--success-color);
}

.accent-border-yellow {
    border-left: 5px solid var(--warning-color);
}

.accent-border-red {
    border-left: 5px solid var(--danger-color);
}

.accent-border-orange {
    border-left: 5px solid var(--info-color);
}

.accent-border-brown {
    border-left: 5px solid var(--secondary-color);
}

/* Modern Navigation Styles */
.modern-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #357ABD 100%);
    box-shadow: 0 2px 20px rgba(74, 144, 226, 0.15);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.modern-navbar.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    background: rgba(74, 144, 226, 0.95);
}

.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    color: var(--accent-yellow) !important;
    transform: translateY(-1px);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(245, 213, 71, 0.3);
}

.brand-icon i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.modern-toggler {
    border: none;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: none;
}

.modern-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.modern-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    transform: translateY(-1px);
}

.modern-nav-link.active {
    background: rgba(245, 213, 71, 0.2);
    color: var(--accent-yellow) !important;
}

.modern-user-menu {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    color: white !important;
}

.modern-user-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.user-avatar i {
    color: var(--dark-color);
    font-size: 1rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.user-role {
    font-size: 0.75rem;
    opacity: 0.8;
}

.modern-dropdown {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
}

.modern-dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.modern-dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), #357ABD);
    color: white;
    padding-left: 2rem;
}

.modern-dropdown-item i {
    width: 20px;
    opacity: 0.7;
}

.logout-btn:hover {
    background: linear-gradient(135deg, var(--danger-color), #c0392b) !important;
    color: white !important;
}

.modern-auth-link {
    padding: 0.5rem 1.2rem !important;
    border-radius: 20px;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-link {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.register-link {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--dark-color) !important;
    font-weight: 600;
}

.register-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 213, 71, 0.4);
    color: var(--dark-color) !important;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    margin-top: 5rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: #f8f9fa;
}

.footer-content {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(245, 213, 71, 0.3);
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 0.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-orange) 100%);
    color: white;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
    opacity: 0.1;
}

.footer-wave svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: wave 15s ease-in-out infinite;
}

.footer-wave .shape-fill {
    fill: url(#waveGradient);
}

.footer-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 20px
    );
    animation: movePattern 20s linear infinite;
}

.footer-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 80% 20%,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 40% 80%,
        rgba(255, 215, 0, 0.08) 0%,
        transparent 50%
    );
    animation: floatPattern 25s ease-in-out infinite;
}

/* Floating Particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
    background: rgba(255, 255, 255, 0.4);
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    width: 8px;
    height: 8px;
    left: 40%;
    animation-delay: 6s;
    animation-duration: 16s;
    background: rgba(255, 140, 66, 0.8);
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 24s;
    background: rgba(255, 255, 255, 0.3);
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 19s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 12s;
    animation-duration: 21s;
    background: rgba(255, 255, 255, 0.5);
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 14s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 16s;
    animation-duration: 23s;
    background: rgba(139, 69, 19, 0.7);
}

.particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: 18s;
    animation-duration: 20s;
    background: rgba(255, 255, 255, 0.4);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(255, 140, 66, 0.3);
    animation: rotate 30s linear infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 5s;
    border-color: rgba(255, 255, 255, 0.2);
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 50%;
    border-radius: 20%;
    animation-delay: 10s;
    border-color: rgba(255, 215, 0, 0.2);
}

.shape-4 {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 30%;
    border-radius: 50%;
    animation-delay: 15s;
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Glowing Orbs */
.footer-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.4) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
}

@keyframes glow {
    0%, 100% {
        transform: scale(1) translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.3) translateY(-20px);
        opacity: 0.8;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% {
        transform: translateX(-30px) translateY(-10px) scale(1.02);
    }
    50% {
        transform: translateX(-20px) translateY(5px) scale(0.98);
    }
    75% {
        transform: translateX(10px) translateY(-5px) scale(1.01);
    }
}

@keyframes movePattern {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-40px) translateY(-40px);
    }
}

@keyframes floatPattern {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% {
        transform: translateX(30px) translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateX(-20px) translateY(15px) rotate(-1deg);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.brand-logo img {
    max-height: 180px;
    width: auto;
    margin-bottom: 0.1rem;
    margin-left: -70px;
}

.brand-logo i {
    font-size: 2.5rem;
    color: #ffd700;
    animation: pulse 2s infinite;
}

.brand-logo h4 {
    margin: 0;
    font-weight: 700;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #ffd700;
}

.footer-links h5,
.footer-contact h5,
.footer-stats h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h5::after,
.footer-contact h5::after,
.footer-stats h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffd700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-links a i {
    width: 16px;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    width: 20px;
    color: #ffd700;
    font-size: 1.1rem;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* Additional Footer Animations */
.footer-brand {
    animation: fadeInUp 1s ease-out;
}

.footer-links {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.footer-contact {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.footer-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Enhanced Social Links */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

/* Enhanced Stat Items */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: spin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

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

/* Floating Icons */
.footer-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.3);
    animation: floatIcon 20s infinite linear;
    top: 60%;
}

.floating-icon:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
    top: 70%;
}

.floating-icon:nth-child(2) {
    left: 25%;
    animation-delay: 5s;
    animation-duration: 22s;
    color: rgba(255, 255, 255, 0.2);
    top: 65%;
}

.floating-icon:nth-child(3) {
    left: 45%;
    animation-delay: 10s;
    animation-duration: 28s;
    top: 75%;
}

.floating-icon:nth-child(4) {
    left: 65%;
    animation-delay: 15s;
    animation-duration: 24s;
    color: rgba(255, 255, 255, 0.25);
    top: 68%;
}

.floating-icon:nth-child(5) {
    left: 85%;
    animation-delay: 20s;
    animation-duration: 26s;
    top: 72%;
}

@keyframes floatIcon {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Footer Links */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transition: left 0.3s ease;
}

.footer-links a:hover::after {
    left: 100%;
}

/* Contact Item Hover Effects */
.contact-item {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-text {
        display: none;
    }
    
    .user-info {
        display: none;
    }
    
    .footer-content {
        padding: 80px 0 40px;
    }
    
    .footer-wave svg {
        height: 80px;
    }
    
    .brand-logo {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .particle {
        display: none;
    }
    
    .geometric-shape {
        display: none;
    }
    
    .glowing-orb {
        opacity: 0.3;
    }
}

/* Custom Carousel Navigation */
.custom-carousel-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.custom-nav-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--secondary-color);
    opacity: 1;
}

.custom-nav-prev {
    left: 15px;
}

.custom-nav-next {
    right: 15px;
}

/* Responsive navigation positioning */
@media (max-width: 768px) {
    .custom-nav-prev {
        left: 10px;
    }
    
    .custom-nav-next {
        right: 10px;
    }
    
    .custom-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.custom-nav-btn i {
    font-weight: bold;
}

/* Carousel indicators stabilization */
.carousel-indicators {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 12px !important;
    z-index: 30 !important;
    margin: 0 !important;
}

.carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators .active {
    background-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.2) !important;
}

.hero-section.slider-dynamic { width: 100%; height: 500px; min-height: 500px; padding: 0; margin-bottom: 0; display: block; background-position: center; background-repeat: no-repeat; }
.hero-section.slider-dynamic.slider-dynamic-contain { background-size: contain; }
.hero-section.slider-dynamic.slider-dynamic-cover { background-size: cover; }
@media (max-width: 576px) {
  .carousel-item .hero-section { width: 100%; height: 100% !important; min-height: 0; padding: 0; border-radius: 0; }
  .hero-section.slider-dynamic { width: 100%; height: 100% !important; min-height: 0; }
  .hero-section.slider-dynamic.slider-dynamic-contain { background-size: contain; }
  .carousel-item { height: auto !important; }
}

@media (max-width: 1200px) {
  .carousel-item .hero-section { height: 100% !important; min-height: 0 !important; padding: 0 !important; border-radius: 0; }
  .carousel-item { height: auto !important; }
  .carousel-item .hero-section .display-4 { font-size: 1.9rem !important; line-height: 1.2 !important; margin-bottom: 0.9rem !important; }
  .carousel-item .hero-section h3 { font-size: 1.25rem !important; margin-bottom: 0.75rem !important; }
  .carousel-item .hero-section .lead { font-size: 1rem !important; margin-bottom: 1rem !important; }
  .carousel-item .hero-section .btn-lg { font-size: 0.95rem !important; padding: 0.45rem 0.9rem !important; }
  .carousel-item .hero-section .container { padding-left: 1rem !important; padding-right: 1rem !important; }
}

@media (max-width: 720px) {
  .carousel-item .hero-section .display-4 { font-size: 1.6rem !important; line-height: 1.2 !important; margin-bottom: 0.75rem !important; }
  .carousel-item .hero-section h3 { font-size: 1.1rem !important; margin-bottom: 0.5rem !important; }
  .carousel-item .hero-section .lead { font-size: 0.95rem !important; margin-bottom: 0.75rem !important; }
  .carousel-item .hero-section .btn-lg { font-size: 0.9rem !important; padding: 0.4rem 0.8rem !important; }
  .carousel-item .hero-section .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
  .carousel-item .hero-section .row { margin-left: 0 !important; margin-right: 0 !important; }
  .carousel-item .hero-section .col-lg-8, .carousel-item .hero-section .col-md-10 { padding-left: 0 !important; padding-right: 0 !important; }
}
.carousel { position: relative; }
#heroCarousel { position: relative; }
#heroCarousel .carousel-indicators { display: none !important; }
.carousel-indicators-outside { display: flex; justify-content: center; gap: 10px; margin-top: 12px; margin-bottom: 24px; }
.carousel-indicators-outside [data-bs-target] { width: 28px; height: 6px; border-radius: 9999px; background-color: rgba(255, 122, 0, 0.45); border: none; }
.carousel-indicators-outside .active { background-color: #FF7A00; }
.carousel-indicators-outside [data-bs-target]:hover { background-color: rgba(255, 122, 0, 0.7); }
.carousel-item { aspect-ratio: 1920 / 737; width: 100%; }
.carousel-item > .hero-section { height: 100% !important; min-height: 0 !important; padding: 0 !important; }
.carousel-item .hero-section { padding: 0 !important; margin: 0 !important; border-radius: 0 !important; }
.carousel-item .hero-section .container { max-width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }
.carousel-item .hero-section .row { margin-left: 0 !important; margin-right: 0 !important; }
.carousel-item .hero-section .col-lg-8, .carousel-item .hero-section .col-md-10 { padding-left: 0 !important; padding-right: 0 !important; }
