 /* ========== PRELOADER STYLES ========== */
        .preloader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #003366 0%, #001a33 100%);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader-container.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            min-width: 320px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .preloader-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            animation: pulse 1.5s infinite;
        }
        
        .preloader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .preloader-spinner {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .preloader-spinner .circle {
            width: 100%;
            height: 100%;
            border: 3px solid rgba(255, 215, 0, 0.2);
            border-top-color: #FFD700;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        .preloader-spinner .logo-small {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
        }
        
        .preloader-progress {
            margin: 20px 0;
        }
        
        .progress-bar-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            height: 6px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .progress-bar-fill {
            background: linear-gradient(90deg, #FFD700, #FFA500);
            width: 0%;
            height: 100%;
            border-radius: 50px;
            transition: width 0.3s ease;
        }
        
        .progress-percentage {
            color: #FFD700;
            font-size: 24px;
            font-weight: 700;
            margin-top: 10px;
        }
        
        .progress-status {
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            letter-spacing: 1px;
            margin-top: 8px;
        }
        
        .preloader-text {
            color: #FFD700;
            font-size: 14px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-top: 15px;
        }
        
        .preloader-dots {
            display: inline-flex;
            gap: 4px;
        }
        
        .preloader-dots span {
            width: 6px;
            height: 6px;
            background: #FFD700;
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }
        
        .preloader-dots span:nth-child(1) { animation-delay: -0.32s; }
        .preloader-dots span:nth-child(2) { animation-delay: -0.16s; }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
        }
        
        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }
        
        /* ========== TOP NAVBAR ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #f0f2f5;
            overflow-x: hidden;
        }
        
        .top-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: #003366;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .menu-toggle {
            background: transparent;
            border: none;
            color: #FFD700;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .menu-toggle:hover {
            background: rgba(255,215,0,0.1);
        }
        
        .navbar-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .navbar-logo img {
            height: 35px;
        }
        
        .user-dropdown {
            position: relative;
            cursor: pointer;
        }
        
        .user-avatar {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            border-radius: 40px;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        
        .user-avatar:hover {
            background: rgba(255,215,0,0.2);
        }
        
        .avatar-img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #FFD700;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #003366;
            font-weight: bold;
            font-size: 16px;
        }
        
        .avatar-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .user-name {
            color: white;
            font-weight: 500;
        }
        
        .dropdown-menu-custom {
            position: absolute;
            top: 55px;
            right: 0;
            background: white;
            min-width: 260px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1001;
            border: none;
        }
        
        .dropdown-menu-custom.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-header {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .dropdown-header h6 {
            color: #003366;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .dropdown-header p {
            color: #64748b;
            font-size: 12px;
            margin: 0;
        }
        
        .dropdown-item-custom {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            color: #334155;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .dropdown-item-custom:hover {
            background: #f1f5f9;
            color: #003366;
        }
        
        .dropdown-item-custom i {
            width: 20px;
            color: #FFD700;
        }
        
        .dropdown-divider {
            height: 1px;
            background: #e2e8f0;
            margin: 5px 0;
        }
        
        .badge-status {
            display: inline-block;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 50px;
            margin-right: 5px;
        }
        
        .badge-verified {
            background: #d1fae5;
            color: #065f46;
        }
        
        .badge-unverified {
            background: #fee2e2;
            color: #dc2626;
        }
        
        .badge-admin {
            background: #dbeafe;
            color: #1e40af;
        }
        
        /* ========== SIDEBAR ========== */
        .sidebar-wrapper {
            position: fixed;
            top: 60px;
            left: 0;
            bottom: 0;
            width: 260px;
            background: #003366;
            z-index: 999;
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        
        .sidebar-wrapper {
            transform: translateX(0);
        }
        
        .sidebar-wrapper.collapsed {
            transform: translateX(-100%);
        }
        
        .main-content {
            margin-top: 60px;
            margin-left: 260px;
            padding: 20px;
            transition: margin-left 0.3s ease;
        }
        
        .main-content.expanded {
            margin-left: 0;
        }
        
        @media (max-width: 768px) {
            .sidebar-wrapper {
                transform: translateX(-100%);
            }
            .sidebar-wrapper.open {
                transform: translateX(0);
            }
            .main-content {
                margin-left: 0;
            }
        }
        
        .sidebar-inner {
            padding: 20px 0;
        }
        
        .sidebar-user {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 20px 20px;
            border-bottom: 1px solid rgba(255,215,0,0.2);
            margin-bottom: 20px;
        }
        
        .sidebar-user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #FFD700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .sidebar-user-avatar span {
            font-size: 20px;
            font-weight: bold;
            color: #003366;
        }
        
        .sidebar-user-info h6 {
            color: #FFD700;
            margin: 0 0 3px;
            font-weight: 600;
        }
        
        .sidebar-user-info p {
            color: rgba(255,255,255,0.7);
            font-size: 11px;
            margin: 0;
        }
        
        .sidebar-nav {
            padding: 0 15px;
        }
        
        .nav-item-custom {
            margin-bottom: 5px;
        }
        
        .nav-link-custom {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .nav-link-custom i {
            width: 25px;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .nav-link-custom:hover,
        .nav-link-custom.active {
            background: rgba(255,215,0,0.15);
            color: #FFD700;
        }
        
        .nav-dropdown {
            position: relative;
        }
        
        .dropdown-arrow {
            margin-left: auto;
            transition: transform 0.3s;
        }
        
        .nav-dropdown.open .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .dropdown-menu-custom-sidebar {
            display: none;
            padding-left: 35px;
            margin-top: 5px;
        }
        
        .nav-dropdown.open .dropdown-menu-custom-sidebar {
            display: block;
        }
        
        .dropdown-link {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            border-radius: 8px;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .dropdown-link i {
            width: 25px;
            margin-right: 10px;
            font-size: 13px;
        }
        
        .dropdown-link:hover,
        .dropdown-link.active {
            background: rgba(255,215,0,0.1);
            color: #FFD700;
        }
        
        .sidebar-actions {
            padding: 20px 15px 0;
            margin-top: 20px;
            border-top: 1px solid rgba(255,215,0,0.2);
        }
        
        .btn-action {
            display: block;
            text-align: center;
            padding: 8px 12px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            transition: all 0.3s;
        }
        
        .btn-warning-custom {
            background: #FFD700;
            color: #003366;
        }
        
        .btn-warning-custom:hover {
            background: #CCAC00;
            color: #003366;
        }
        
        .btn-outline-custom {
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            background: transparent;
        }
        
        .btn-outline-custom:hover {
            background: #FFD700;
            border-color: #FFD700;
            color: #003366;
        }
        
        .sidebar-overlay {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            display: none;
        }
        
        .sidebar-overlay.active {
            display: block;
        }
        
        .sidebar-wrapper::-webkit-scrollbar {
            width: 5px;
        }
        
        .sidebar-wrapper::-webkit-scrollbar-track {
            background: #002244;
        }
        
        .sidebar-wrapper::-webkit-scrollbar-thumb {
            background: #FFD700;
            border-radius: 5px;
        }
        
        /* Yaza AI Chat Styles */
        .yaza-chat-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #003366, #002244);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            transition: transform 0.3s;
            border: 2px solid #FFD700;
        }
        
        .yaza-chat-btn:hover {
            transform: scale(1.1);
        }
        
        .yaza-chat-btn i {
            font-size: 28px;
            color: #FFD700;
        }
        
        .yaza-chat-window {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 380px;
            height: 550px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            z-index: 1001;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        
        .yaza-chat-header {
            background: linear-gradient(135deg, #003366, #002244);
            color: #FFD700;
            padding: 15px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .yaza-chat-body {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
            background: #f8fafc;
        }
        
        .yaza-chat-message {
            margin-bottom: 15px;
            display: flex;
        }
        
        .yaza-chat-message.user {
            justify-content: flex-end;
        }
        
        .yaza-chat-message.user .bubble {
            background: #003366;
            color: white;
            border-radius: 18px 18px 4px 18px;
        }
        
        .yaza-chat-message.ai .bubble {
            background: white;
            color: #1e293b;
            border-radius: 18px 18px 18px 4px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .bubble {
            max-width: 80%;
            padding: 10px 15px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .yaza-chat-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #e2e8f0;
            background: white;
        }
        
        .yaza-chat-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
        }
        
        .yaza-chat-input button {
            background: #003366;
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-left: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .yaza-chat-input button:hover {
            background: #FFD700;
            color: #003366;
        }
        
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 5px 0;
        }
        
        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #94a3b8;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }
        
        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
            30% { transform: translateY(-10px); opacity: 1; }
        }
        
        .suggested-questions {
            padding: 10px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .suggest-btn {
            background: #e2e8f0;
            border: none;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .suggest-btn:hover {
            background: #003366;
            color: white;
        }
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--light);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: #FFFFFF;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--dark);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}
