/* ===================================================
   Know Your Branch — Professional Design System
   =================================================== */

/* --- Custom Scrollbar & Caret (GMIU Red) --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #be1e2d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9a0a18;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #be1e2d #f1f1f1;
    caret-color: #be1e2d;
}

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #002147;
    --primary-dark: #001530;
    --secondary: #be1e2d;
    --accent: #f5c518;
    --success: #059669;
    --warning: #d97706;
    --danger: #be1e2d;
    --light-bg: #f4f6f9;
    --card-bg: rgba(255, 255, 255, 0.98);
    --text-dark: #0f172a;
    --text-muted: #6c757d;
    --border-glass: rgba(255, 255, 255, 0.55);
    --shadow-sm: 0 4px 20px rgba(67, 97, 238, 0.08);
    --shadow-md: 0 8px 35px rgba(67, 97, 238, 0.14);
    --shadow-lg: 0 16px 50px rgba(67, 97, 238, 0.18);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Bootstrap Utility Overrides --- */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 33, 71, 0.25) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.btn-danger {
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
}

.text-success {
    color: var(--success) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* --- Base Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    min-height: 100vh;
    font-size: 15px;
    line-height: 1.7;
}

/* --- Global page wrapper with gradient bg --- */
body.gradient-bg {
    background: #f4f6f9;
    background-attachment: fixed;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================================
   CARDS & GLASS
   =================================================== */
.card-glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card-glass:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card {
    border-radius: var(--radius);
    border: none;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    padding: 10px 28px;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(67, 97, 238, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 97, 238, 0.4);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    padding: 9px 26px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.25);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar-kyb {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 14px 0;
}

.navbar-kyb .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-kyb .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 7px 14px;
    transition: var(--transition);
}

.navbar-kyb .nav-link:hover,
.navbar-kyb .nav-link.active {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary) !important;
}

/* ===================================================
   SIDEBAR (ADMIN)
   =================================================== */
.admin-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary) 100%);
    min-height: 100vh;
    padding: 0;
}

.admin-sidebar .sidebar-brand {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar .sidebar-brand h5 {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.admin-sidebar .sidebar-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 0;
    transition: var(--transition);
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-left-color: rgba(255, 255, 255, 0.5);
}

.admin-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    border-left-color: #fff;
    font-weight: 600;
}

.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-sidebar .sidebar-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: 20px 24px 6px;
}

.admin-sidebar .logout-link {
    color: rgba(255, 100, 100, 0.85) !important;
    margin-top: auto;
}

.admin-sidebar .logout-link:hover {
    background: rgba(255, 50, 50, 0.15) !important;
    color: #ff8080 !important;
}

/* ===================================================
   FORMS & INPUTS
   =================================================== */
.form-control,
.form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 15px;
    font-size: 0.93rem;
    transition: var(--transition);
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

/* ===================================================
   TABLES
   =================================================== */
.table-kyb thead {
    background: #f8f9ff;
}

.table-kyb thead th {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    border: none;
    padding: 14px 18px;
}

.table-kyb tbody td {
    padding: 14px 18px;
    border-color: #f1f5f9;
    vertical-align: middle;
}

.table-kyb tbody tr {
    transition: var(--transition);
}

.table-kyb tbody tr:hover {
    background: rgba(67, 97, 238, 0.04);
}

/* ===================================================
   BADGES
   =================================================== */
.badge-dept {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border: 1px solid rgba(67, 97, 238, 0.25);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ===================================================
   AUTH PAGES — 100vh, no scroll
   =================================================== */
/* Lock html/body on auth pages */
body.auth-page {
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.auth-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Left decorative panel */
.auth-panel-left {
    flex: 0 0 42%;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.auth-panel-left::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -80px;
    right: -80px;
}

.auth-panel-left::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: -60px;
}

.auth-panel-left .brand-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-panel-left h2 {
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.auth-panel-left p {
    opacity: 0.75;
    font-size: 0.92rem;
    text-align: center;
    max-width: 280px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* Right form panel */
.auth-panel-right {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 48px;
    overflow-y: auto;
    /* allows internal scroll only if screen is very small */
    overflow-x: hidden;
}

.auth-panel-right::-webkit-scrollbar {
    width: 4px;
}

.auth-panel-right::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 4px;
}

.auth-panel-right .auth-form-inner {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

/* Compact form inputs for 100vh fit */
.auth-panel-right .form-control,
.auth-panel-right .form-select {
    padding: 9px 13px;
    font-size: 0.88rem;
    border-radius: 9px;
}

.auth-panel-right .form-label {
    margin-bottom: 4px;
    font-size: 0.82rem;
}

.auth-panel-right .mb-3 {
    margin-bottom: 0.6rem !important;
}

.auth-panel-right .mb-4 {
    margin-bottom: 0.9rem !important;
}

.auth-panel-right .btn {
    padding: 10px 20px;
}

/* Hide left panel on small screens */
@media (max-width: 767px) {
    .auth-panel-left {
        display: none;
    }

    .auth-panel-right {
        padding: 28px 24px;
    }

    body.auth-page {
        overflow-y: auto;
    }

    .auth-wrapper {
        height: auto;
        min-height: 100vh;
    }
}

/* ===================================================
   QUIZ PAGE
   =================================================== */
.question-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2ff;
    border-top: 5px solid var(--primary) !important;
    transition: var(--transition);
    overflow: hidden;
}

.question-card:hover {
    box-shadow: var(--shadow-md);
}

.question-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.option-label {
    display: block;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    margin-bottom: 10px;
}

.option-label:hover {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.04);
    transform: translateX(4px);
}

.option-label:has(input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    background: rgba(67, 97, 238, 0.08) !important;
    transform: translateX(6px);
}

.option-label input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary);
}

/* ===================================================
   LANDING PAGE SECTIONS
   =================================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(67, 97, 238, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(114, 9, 183, 0.2) 0%, transparent 50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 97, 238, 0.2);
    border: 1px solid rgba(67, 97, 238, 0.4);
    color: #a5b4fc;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-card-float {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
    position: relative;
}

.hero-card-float .icon-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

/* How It Works */
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(67, 97, 238, 0.35);
    flex-shrink: 0;
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #eef2ff;
    box-shadow: var(--shadow-sm);
    padding: 28px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Features */
.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

/* Departments showcase */
.dept-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2ff;
    font-weight: 600;
    transition: var(--transition);
}

.dept-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 40%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Footer */
.footer-dark {
    background: #0f0c29;
    color: rgba(255, 255, 255, 0.65);
}

.footer-dark a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-dark a:hover {
    color: #fff;
}

/* ===================================================
   RESULT PAGE
   =================================================== */
.result-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 28px 32px;
}

/* ===================================================
   PROGRESS
   =================================================== */
.progress {
    border-radius: 50px;
    background: #eef2ff;
}

.progress-bar {
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ===================================================
   UTILITIES
   =================================================== */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
}

.z-1 {
    z-index: 1;
    position: relative;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===================================================
   NEW INDEX COMPONENT STYLES
   =================================================== */
.transition-all {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
}

.card-hover-fx {
    transition: all 0.3s ease;
}

.card-hover-fx:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.hover-white:hover {
    color: #fff !important;
}

/* Navbar Transparency & Scroll Handling */
.navbar-kyb.fixed-top {
    background: transparent !important;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none !important;
}

/* Dark mode nav item fix when transparent */
.navbar-kyb.fixed-top:not(.navbar-scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-kyb.fixed-top:not(.navbar-scrolled) .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-kyb.fixed-top:not(.navbar-scrolled) .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-kyb.fixed-top:not(.navbar-scrolled) .fa-bars-staggered {
    color: #fff;
    font-size: 1.5rem;
}

.navbar-kyb.fixed-top:not(.navbar-scrolled) .btn-outline-dark {
    color: #fff;
    border-color: #fff;
}

.navbar-kyb.fixed-top:not(.navbar-scrolled) .btn-outline-dark:hover {
    background: #fff;
    color: var(--text-dark);
}

/* Scrolled Nav */
.navbar-kyb.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar-kyb.navbar-scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar-kyb.navbar-scrolled .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(67, 97, 238, 0.1);
}

.navbar-kyb.navbar-scrolled .fa-bars-staggered {
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Shadow Hover */
.shadow-hover:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

.hover-text-primary:hover {
    color: var(--primary) !important;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 198, 83, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45, 198, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 198, 83, 0);
    }
}

.pulsing-dot {
    animation: pulse-green 2s infinite;
}

/* ===================================================
   PREMIUM UI COMPONENTS (ADDITIONS)
   =================================================== */
.btn-icon-custom {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
    background: #fff;
    font-size: 0.95rem;
}

.btn-icon-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.15);
}

.btn-icon-custom.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff !important;
}

.btn-icon-custom.btn-outline-danger:hover {
    background: var(--danger);
    color: #fff !important;
}

.shadow-premium {
    box-shadow: 0 10px 40px rgba(0, 33, 71, 0.05) !important;
}

.rounded-4 {
    border-radius: 1.15rem !important;
}

.fw-black {
    font-weight: 900;
}

.bg-light-info {
    background-color: #f0f7ff !important;
}

/* Custom Table Polish */
.table-hover tbody tr {
    cursor: pointer;
}

.table-hover tbody tr:hover {
    background-color: rgba(67, 97, 238, 0.03) !important;
    transform: scale(1.001);
}

/* Breadcrumb Styling */
.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 14px rgba(67, 97, 238, 0);
    }

    100% {
        transform: scale(0.95);
    }
}

.float-anim {
    animation: floatUp 5s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

@media (max-width: 991px) {
    .admin-sidebar {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .auth-card {
        border-radius: 16px;
    }
}