/* Enhanced Main Styles with Modern Design */
:root {
    --primary-color: #6366f1;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 1rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 1.5rem;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --text-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Enhanced Body with Modern Gradient Background */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    font-weight: 400;
    overflow-x: hidden;
}

/* Animated Background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Content Overlay for Better Readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
    z-index: -1;
    pointer-events: none;
}

main {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Navigation Styles */
.navbar .nav-link.btn {
    margin: 0 5px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.navbar .nav-link.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 10px 0;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background-color: #f1f8ff;
    color: var(--primary-color);
    transform: translateX(5px);
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
    color: var(--info-color);
}

/* Navigation search bar */
.navbar .input-group {
    width: 200px;
}

.navbar .form-control-sm {
    font-size: 0.875rem;
    height: calc(1.5em + 0.5rem + 2px);
    border-radius: 0.2rem 0 0 0.2rem;
    border-right: none;
}

.navbar .btn-light {
    background-color: #fff;
    border-color: #ced4da;
    border-left: none;
    border-radius: 0 0.2rem 0.2rem 0;
}

.navbar .btn-light:hover {
    background-color: #f8f9fa;
}

/* Card styling */
.card {
    box-shadow: var(--shadow-light);
    border: none;
    margin-bottom: 2rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.7;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Form styling */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 500;
}

/* Table styling */
.table {
    background-color: white;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Ticket status colors */
.status-open {
    color: var(--success-color);
}

.status-in-progress {
    color: var(--primary-color);
}

.status-closed {
    color: var(--secondary-color);
}

.status-on-hold {
    color: var(--warning-color);
}

/* Priority colors */
.priority-low {
    color: var(--info-color);
}

.priority-medium {
    color: var(--warning-color);
}

.priority-high {
    color: var(--danger-color);
}

.priority-urgent {
    color: var(--dark-color);
}

/* Notification dropdown */
.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
}

/* Dashboard cards */
.dashboard-card {
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.dashboard-card-1 {
    background: linear-gradient(45deg, #007bff, #00c6ff);
}

.dashboard-card-2 {
    background: linear-gradient(45deg, #28a745, #76e68a);
}

.dashboard-card-3 {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
}

.dashboard-card-4 {
    background: linear-gradient(45deg, #dc3545, #ff8a80);
}

/* FAQs styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
}   background-size: cover;
}
.btn-outline-primary:hover {ry {
    background: var(--primary-gradient); var(--primary-color);
    border-color: transparent;ry-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}hero-section h1 {
    font-weight: 800;
/* Floating Elements */;
.float-element { 8px rgba(0,0,0,0.3);
    position: absolute;5rem;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(odd) {hero-section .lead {
    animation-delay: -3s;    font-size: 1.4rem;
}
xt-shadow: 0 2px 4px rgba(0,0,0,0.2);
@keyframes float {
    0%, 100% { transform: translateY(0px); }Up 1s ease-out 0.2s both;
    50% { transform: translateY(-20px); }
}
ns */
/* Form styling */
.form-control:focus {r(--border-radius);
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}transition);
   border: none;
.form-label {    position: relative;
    font-weight: 500;hidden;
}

/* Table styling */   font-size: 0.9rem;
.table {}
    background-color: white;
}
eg, #667eea 0%, #764ba2 100%);
.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}
ary:hover {
/* Ticket status colors */eY(-3px);
.status-open {shadow-heavy);
    color: var(--success-color);radient(135deg, #764ba2 0%, #667eea 100%);
}

.status-in-progress {
    color: var(--primary-color);
}em;

.status-closed {
    color: var(--secondary-color);
}

.status-on-hold {
    color: var(--warning-color);
}

/* Priority colors */.btn-outline-primary:hover {
.priority-low {dient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--info-color);ransparent;
}Y(-2px);
hadow-medium);
.priority-medium {
    color: var(--warning-color);
}Buttons */

.priority-high {   border-radius: 25px;
    color: var(--danger-color);    padding: 12px 25px;
}

.priority-urgent {
    color: var(--dark-color);   box-shadow: var(--shadow-light);
}}

/* Notification dropdown */:hover {
.dropdown-menu {.05);
    max-height: 300px;vy);
    overflow-y: auto;
}

/* Dashboard cards */ticker-section {
.dashboard-card {    background: rgba(255,255,255,0.95);
    border-radius: 10px;lter: blur(10px);
    padding: 1.5rem;d #667eea;
    margin-bottom: 1.5rem;x solid #764ba2;
    color: white;ight);
    transition: all 0.3s ease;
}

.dashboard-card:hover {   border-radius: 25px;
    transform: translateY(-5px);    font-weight: 700;
} uppercase;
g: 1px;
.dashboard-card-1 {r(--shadow-light);
    background: linear-gradient(45deg, #007bff, #00c6ff);infinite;
}

.dashboard-card-2 { {
    background: linear-gradient(45deg, #28a745, #76e68a);
}
   align-items: center;
.dashboard-card-3 {}
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
}
s linear infinite;
.dashboard-card-4 {p;
    background: linear-gradient(45deg, #dc3545, #ff8a80);
}

/* FAQs styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 123, 255, 0.1);   padding: 8px 15px;
    color: var(--primary-color);    margin-right: 30px;
}(255,255,255,0.8);

/* Hero Section */shadow-light);
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 8rem 0 6rem;over {
    position: relative;
    overflow: hidden;
    min-height: 70vh;-shadow-medium);
    display: flex;
    align-items: center;
}
 !important;
.hero-section::before {
    content: '';   font-weight: 500;
    position: absolute;}
    top: 0;
    left: 0;/
    right: 0;
    bottom: 0;r-radius) var(--border-radius);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="rgba(255,255,255,0.1)"><polygon points="0,200 1000,0 1000,200"/></svg>');
    background-size: cover;
    background-position: bottom;.notice-list .list-group-item {
}

.hero-section .container {);
    position: relative;
    z-index: 2;
}
hover {
.hero-section h1 {near-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);ht);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}glass-container {
    background: var(--glass-bg);
.hero-section .lead {(20px);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);r(--glass-border);
    font-weight: 300;r(--border-radius);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);light);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0.95;/* Enhanced Typography */
}h4, h5, h6 {

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Animations */display-1 {
@keyframes fadeInUp {    font-weight: 900;
    from {var(--primary-gradient);
        opacity: 0;
        transform: translateY(30px);parent;
    }
    to {
        opacity: 1;
        transform: translateY(0);.text-gradient {
    }gradient);
}ound-clip: text;
-fill-color: transparent;
@keyframes ticker {ip: text;
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}tion */

@keyframes pulse {
    0% { transform: scale(1); }   height: 40px;
    50% { transform: scale(1.05); }    border: 4px solid #f3f3f3;
    100% { transform: scale(1); }px solid var(--primary-color);
}

/* Responsive Design */   margin: 20px auto;
@media (max-width: 768px) {}
    .hero-section h1 {
        font-size: 2.5rem;ames spin {
    }rotate(0deg); }
    orm: rotate(360deg); }
    .hero-section .lead {
        font-size: 1.2rem;
    }ing Action Button */
    
    .quick-access-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .ticker-wrapper {
        animation-duration: 20s;y-gradient);
    }
}
);
/* Scrollbar Styling */
.scrollable-container::-webkit-scrollbar {   align-items: center;
    width: 8px;    justify-content: center;
}e: 1.5rem;

.scrollable-container::-webkit-scrollbar-track {
    background: #f1f1f1;   z-index: 1000;
    border-radius: 10px;}
}
r {
.scrollable-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);(102, 126, 234, 0.4);
    border-radius: 10px;
}
gation */
.scrollable-container::-webkit-scrollbar-thumb:hover {navbar {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);    background: var(--glass-bg) !important;
}lter: blur(20px);
x solid var(--glass-border);
/* Prevent cart flash animation on modal elements */shadow-light);
.modal .cart-flash,
.modal * .cart-flash {
    animation: none !important;
}
   font-weight: 800;
/* Featured Products Scroll Styles */    font-size: 1.5rem;
.featured-products-scroll {imary-gradient);
    scrollbar-width: thin;round-clip: text;
    scrollbar-color: #ffc107 #f1f1f1;fill-color: transparent;
    border-radius: 0 0 0.25rem 0.25rem;text;
}

.featured-products-scroll::-webkit-scrollbar {* Mobile Menu Toggle */
    width: 6px;.navbar-toggler {
}

.featured-products-scroll::-webkit-scrollbar-track {   border-radius: var(--border-radius);
    background: #f1f1f1;    background: rgba(102, 126, 234, 0.1);
    border-radius: 3px;
}
cus {
.featured-products-scroll::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 3px;
}con {
   background-image: none;
.featured-products-scroll::-webkit-scrollbar-thumb:hover {    display: flex;
    background: #e0a800;
}round;

.featured-products-scroll .list-group-item {;
    transition: all 0.2s ease;
}
efore,
.featured-products-scroll .list-group-item:hover {
    background-color: #fff8e1;navbar-toggler-icon {
}    content: '';

/* Add a slight shadow to the sticky header when scrolling */lor);
.card-header.bg-warning.sticky-top {   border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);    transition: var(--transition);
    z-index: 100;
}
/* Add a slight shadow to the sticky header when scrolling */
.card-header.bg-warning.sticky-top {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 100;
}
