/* Job Portal - Modern CSS Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 8px;
}

/* Navigation Items */
.navbar-nav {
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
    margin: 0 0.15rem;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.12);
    font-weight: 600;
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.12);
    font-weight: 600;
}

/* Dropdown styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    animation: fadeInDown 0.2s ease;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Auth buttons */
.btn-primary {
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-outline-primary {
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: rgba(99, 102, 241, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.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%2899, 102, 241, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        align-items: stretch;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-link {
        margin: 0;
        padding: 0.85rem 1.25rem;
        border-radius: 8px;
        text-align: left;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-primary,
    .btn-outline-primary {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        box-shadow: none;
        margin-top: 0.25rem;
        border-radius: 8px;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider-text {
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Text Utilities */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-break {
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-sm {
    font-size: 0.875rem;
}

.text-md {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-medium {
    font-weight: 500;
}

.font-weight-semibold {
    font-weight: 600;
}

/* Text Alignment Fixes */
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

/* Flex Utilities */
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-secondary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    padding: 100px 0;
    color: white;
    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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* WhatsApp tooltip */
.whatsapp-float::before {
    content: "Chat with us!";
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-body {
    padding: 1.5rem;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Job Card */
.job-card {
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-left-color: var(--secondary-color);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.company-name {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-primary {
    background: var(--gradient-1);
    color: white;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-warning {
    background: var(--warning-color);
    color: white;
}

.badge-danger {
    background: var(--danger-color);
    color: white;
}

.badge-info {
    background: var(--gradient-3);
    color: white;
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

/* Modern Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.sidebar-menu a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    transform: translateX(8px);
}

.sidebar-menu a:hover:before,
.sidebar-menu a.active:before {
    transform: scaleY(1);
}

.sidebar-menu a i {
    margin-right: 12px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Stats Card */
.stats-card {
    background: var(--gradient-1);
    color: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stats-card p {
    opacity: 0.9;
    font-weight: 500;
}

.stats-card.gradient-2 {
    background: var(--gradient-2);
}

.stats-card.gradient-3 {
    background: var(--gradient-3);
}

/* Header */
.header-logo {
    height: 40px;
    margin-right: 12px;
}

.header-brand-icon {
    width: 40px;
    height: 40px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(99, 102, 241, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Table Styles */
.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.table thead {
    background: var(--gradient-1);
    color: white;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .stats-card h3 {
        font-size: 2rem;
    }

    .dashboard-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Glass Card Effect */
.glass-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Hover Lift Animation */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Progress Bars */
.progress.rounded-pill {
    border-radius: 50rem !important;
}

.progress-bar.rounded-pill {
    border-radius: 50rem !important;
}

/* Cards */
.card.border-0.shadow-sm.rounded-3 {
    border-radius: 1rem !important;
}

.card.border-0.shadow-sm.rounded-3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

/* Rounded Elements */
.rounded-3 {
    border-radius: 1rem !important;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Py Spacing */
.py-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Navbar Enhancements */
.navbar-brand .rounded-circle {
    transition: all 0.3s ease;
}

.navbar-brand:hover .rounded-circle {
    transform: scale(1.05);
}

.nav-link.rounded-pill {
    transition: all 0.3s ease;
}

.nav-link.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link.rounded-pill.active {
    background-color: rgba(99, 102, 241, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Cards */
.card.hover-lift {
    transition: all 0.3s ease;
}

.card.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Badges */
.badge.rounded-pill {
    padding: 0.5em 0.8em;
    font-size: 0.8em;
    font-weight: 500;
}

/* Buttons */
.btn.rounded-pill {
    transition: all 0.3s ease;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-lg.rounded-pill {
    padding: 0.8rem 1.5rem;
}

/* Form Elements */
.input-group.rounded-pill .form-control,
.input-group.rounded-pill .input-group-text {
    border-radius: 50rem !important;
}

.form-control.rounded-pill {
    padding: 0.75rem 1.25rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Menu Styles */
.slide-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.slide-menu.active {
    left: 0;
}

.slide-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.slide-menu-overlay.active {
    display: block;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
    z-index: 1060;
    transition: all 0.3s ease;
    /* Ensure close button doesn't overlap menu items */
    margin: 0;
    padding: 0;
}

.close-menu:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    transform: rotate(90deg);
}

.menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure slide menu is hidden on large screens by default */
@media (min-width: 992px) {
    .slide-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
}

/* Fix for slide menu on mobile devices */
@media (max-width: 991.98px) {
    .dashboard-sidebar:not(.slide-menu .dashboard-sidebar) {
        display: none;
    }
}

/* Modern Slide Menu Overlay */
.slide-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Modern Slide Menu */
.slide-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scrollable Menu Content */
.slide-menu-content {
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 2rem;
    padding-top: 80px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch; /* Better mobile scrolling */
}

.slide-menu-content::-webkit-scrollbar {
    width: 6px;
}

.slide-menu-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.slide-menu-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.slide-menu-content::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

.slide-menu.active {
    left: 0;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
}

/* Modern Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1060;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.menu-toggle:hover {
    background: #0b5ed7;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.menu-toggle i {
    font-size: 1.25rem;
}

/* Mobile Menu Toggle Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        top: 10px;
        left: 10px;
        width: 45px;
        height: 45px;
    }
    
    .menu-toggle i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .menu-toggle {
        top: 8px;
        left: 8px;
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle i {
        font-size: 1rem;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
    .table th, .table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .form-control, .form-select {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .card-header h5 {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.75rem;
    }
    
    .pagination .page-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .table th, .table td {
        padding: 0.25rem;
        font-size: 0.8rem;
    }
    
    .form-control, .form-select {
        font-size: 0.8rem;
        padding: 0.375rem;
    }
    
    .card-header h5 {
        font-size: 0.875rem;
    }
    
    .btn-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between .btn {
        width: 100%;
    }
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.menu-toggle .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading spinner animation */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Modern Desktop Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Menu Header */
.menu-header {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.menu-header:hover {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.menu-header::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.menu-header.collapsed::after {
    transform: rotate(-90deg);
}

.menu-header:first-child {
    margin-top: 0;
}

/* Collapsible Menu Section */
.menu-section.collapsed .sidebar-menu {
    display: none;
}

.menu-section.collapsed .menu-header {
    margin-bottom: 0.25rem;
}

/* Job Listing Page Styles */
.container.py-5 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.col-lg-6 {
    margin-bottom: 1.5rem;
}

.card.h-100.border-0.shadow-sm.hover-lift.rounded-3 {
    height: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card.h-100.border-0.shadow-sm.hover-lift.rounded-3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-body.p-4 {
    padding: 1.5rem !important;
}

.d-flex.justify-content-between.align-items-start.mb-3 {
    margin-bottom: 1rem !important;
}

.d-flex.justify-content-between.align-items-center.mt-3 {
    margin-top: 1rem !important;
}

.badge.rounded-pill {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
}

.pagination.justify-content-center.gap-2 {
    gap: 0.5rem !important;
}

.page-link.rounded-pill {
    border-radius: 50rem !important;
    padding: 0.375rem 0.75rem;
    margin: 0 0.125rem;
}

/* Filter Sidebar Styles */
.card.border-0.shadow-sm.rounded-3 {
    transition: all 0.3s ease;
}

.card.border-0.shadow-sm.rounded-3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header.bg-white.py-3 {
    border-bottom: 1px solid var(--border-color);
}

.form-label.fw-bold {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control.rounded-pill,
.form-select.rounded-pill {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control.rounded-pill:focus,
.form-select.rounded-pill:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.btn.rounded-pill {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.w-100.rounded-pill.mb-2 {
    margin-bottom: 0.75rem !important;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

/* Company Information Card */
.card.border-0.shadow-sm.rounded-3 {
    border-radius: 1rem !important;
}

.card.border-0.shadow-sm.rounded-3 .card-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    border-radius: 1rem 1rem 0 0 !important;
    padding: 1.25rem;
}

.card.border-0.shadow-sm.rounded-3 .card-body {
    padding: 1.5rem;
}

.bg-light.rounded-circle {
    background-color: #f8f9fa !important;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.text-center.mb-3 img {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* Fallback company icon */
.company-fallback-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* Stat Icon Container */
.stat-icon-container {
    width: 70px;
    height: 70px;
}

/* Dashboard Stats */
.dashboard-stat {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dashboard-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

/* Modern Slide Menu Sidebar */
.slide-menu .dashboard-sidebar {
    box-shadow: none;
    border-radius: 0;
    height: 100%;
    padding: 2rem 1.5rem;
}

/* Profile Section in Slide Menu */
.slide-menu .text-center {
    padding: 1rem 1rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Profile Picture */
.profile-picture-dashboard {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-picture-dashboard:hover {
    transform: scale(1.05);
}

.profile-icon-dashboard {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
}

/* Profile Icon */
.profile-icon-dashboard {
    font-size: 4rem;
    color: var(--primary-color);
}

/* Auth Pages */
.reset-password-btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Session Warning */
.session-warning {
    z-index: 9999;
}

/* Header Profile Picture */
.header-profile-picture {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.header-profile-icon {
    width: 32px;
    height: 32px;
}

/* Interview Calendar Icon */
.interview-calendar-icon {
    font-size: 3rem;
    color: var(--bs-gray-400);
}

/* Video Call */
.video-container {
    height: 70vh;
}

.video-call-icon {
    font-size: 4rem;
}

.local-video-container {
    width: 200px;
    height: 150px;
    border: 2px solid white;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer-hr {
    border-color: rgba(255,255,255,0.1);
}

/* Video Call Simulation */
.simulation-background {
    background: linear-gradient(45deg, #1a1a2e, #16213e);
}

.simulation-icon-large {
    font-size: 6rem;
}

.simulation-icon-small {
    font-size: 2rem;
}

/* Dashboard Icons */
.dashboard-inbox-icon {
    font-size: 3rem;
    color: var(--text-light);
}

.dashboard-bell-icon {
    font-size: 3rem;
    color: var(--text-light);
}

/* Job Detail Page Styles */
.job-description,
.job-requirements {
    white-space: pre-line;
}

.company-logo-large {
    max-width: 150px;
    max-height: 150px;
}

.company-logo-placeholder {
    display: flex;
}

.lock-icon {
    font-size: 3rem;
}

.company-logo-medium {
    max-width: 150px;
    border-radius: 10px;
}

/* Application Status Badge */
.application-status-badge {
    font-size: 0.9rem;
}

/* Stats Icons */
.stats-icon {
    font-size: 2.5rem;
}

/* Job Icon */
.job-icon {
    font-size: 3rem;
    color: #ccc;
}

/* Messages Card */
.messages-card {
    height: 400px;
    overflow-y: auto;
}

.chat-messages {
    height: 350px;
    overflow-y: auto;
}

/* iPad Mini Specific Fixes (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container.py-5 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .messages-card {
        height: 350px;
    }
    
    .chat-messages {
        height: 300px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .dashboard-sidebar {
        padding: 1.25rem;
    }
    
    .profile-picture-dashboard {
        width: 90px;
        height: 90px;
    }
    
    /* Slide Menu iPad Mini Fixes */
    .slide-menu {
        width: 320px;
        left: -320px;
    }
    
    .slide-menu-content {
        padding-top: 90px;
        height: 100vh;
    }
    
    .menu-toggle {
        width: 50px;
        height: 50px;
        top: 15px;
        left: 15px;
    }
    
    .menu-toggle i {
        font-size: 1.3rem;
    }
    
    /* Better touch targets for iPad */
    .sidebar-menu li a {
        padding: 14px 18px;
        font-size: 0.95rem;
        min-height: 46px;
        display: flex;
        align-items: center;
    }
    
    .sidebar-menu li a i {
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    /* Dashboard grid adjustments */
    .col-md-4, .col-md-8, .col-md-6, .col-md-3, .col-md-9 {
        margin-bottom: 1rem;
    }
    
    /* Card adjustments */
    .card {
        margin-bottom: 1.25rem;
    }
    
    /* Form adjustments */
    .form-control {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    /* Navigation adjustments */
    .navbar {
        padding: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .container.py-5 {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .messages-card {
        height: 300px;
    }
    
    .chat-messages {
        height: 250px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn-sm {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    /* Mobile Login Form General Fixes */
    .col-md-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .card {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .card-header {
        border-radius: 12px 12px 0 0;
        background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
        color: white;
        text-align: center;
    }
    
    .form-control {
        font-size: 16px; /* Prevent zoom on iOS Safari */
        padding: 0.75rem;
        border-radius: 8px;
        min-height: 44px;
    }
    
    .btn-primary {
        padding: 0.875rem;
        font-weight: 600;
        border-radius: 8px;
        min-height: 48px;
    }
    
    .btn-outline-danger,
    .btn-outline-primary,
    .btn-outline-info {
        padding: 0.75rem;
        border-radius: 8px;
        min-height: 44px;
    }
    
    /* Mobile Logout Button General Fixes */
    .nav-link.text-danger {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        border-radius: 8px;
        margin: 0.25rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better touch targets */
    .sidebar-menu li a {
        padding: 12px 15px;
        font-size: 0.9rem;
        min-height: 44px; /* iOS touch target minimum */
        display: flex;
        align-items: center;
    }
    
    .sidebar-menu li a i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
}

/* Android Phone Specific Fixes */
@media (max-width: 480px) {
    .container.py-5 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .messages-card {
        height: 280px;
    }
    
    .chat-messages {
        height: 230px;
    }
    
    .card-body {
        padding: 0.875rem;
    }
    
    .card {
        margin-bottom: 0.875rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        min-height: 44px; /* Android touch target minimum */
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.375rem 0.625rem;
        min-height: 40px;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
        min-height: 48px;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .form-control {
        font-size: 0.875rem;
        padding: 0.625rem;
        min-height: 44px;
    }
    
    .form-select {
        font-size: 0.875rem;
        padding: 0.625rem;
        min-height: 44px;
    }
    
    .d-flex.gap-2 {
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
    
    .col-md-4, .col-md-8, .col-md-9, .col-md-6, .col-md-3 {
        width: 100%;
        margin-bottom: 0.875rem;
    }
    
    .row {
        margin: 0;
    }
    
    /* Android Slide Menu Fixes */
    .slide-menu {
        width: 280px;
        left: -280px;
    }
    
    .slide-menu-content {
        padding-top: 70px;
        height: 100vh;
    }
    
    .menu-toggle {
        width: 48px;
        height: 48px;
        top: 12px;
        left: 12px;
        border-radius: 12px;
    }
    
    .menu-toggle i {
        font-size: 1.1rem;
    }
    
    /* Android touch targets */
    .sidebar-menu li a {
        padding: 16px 15px;
        font-size: 0.875rem;
        min-height: 48px; /* Android touch target minimum */
        display: flex;
        align-items: center;
        border-radius: 8px;
        margin: 2px 8px;
    }
    
    .sidebar-menu li a i {
        font-size: 1.1rem;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }
    
    /* Android-specific form improvements */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
        font-weight: 500;
    }
    
    /* Android navigation improvements */
    .navbar {
        padding: 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Android table improvements */
    .table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
        vertical-align: middle;
    }
    
    /* Android pagination improvements */
    .page-link {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* iPhone SE Specific Fixes (375px width) */
@media (max-width: 375px) and (min-width: 361px) {
    .container.py-5 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .messages-card {
        height: 260px;
    }
    
    .chat-messages {
        height: 210px;
    }
    
    .card-body {
        padding: 0.875rem;
    }
    
    .card {
        margin-bottom: 0.875rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5625rem 0.875rem;
        min-height: 44px; /* iOS touch target minimum */
        border-radius: 8px;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 0.4375rem 0.6875rem;
        min-height: 40px;
    }
    
    .btn-lg {
        font-size: 0.9375rem;
        padding: 0.6875rem 1.125rem;
        min-height: 48px;
    }
    
    .form-control {
        font-size: 16px; /* Prevent zoom on focus in iOS Safari */
        padding: 0.6875rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .form-select {
        font-size: 16px; /* Prevent zoom on focus in iOS Safari */
        padding: 0.6875rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .table-responsive {
        font-size: 0.8125rem;
    }
    
    .table th,
    .table td {
        padding: 0.4375rem 0.3125rem;
        vertical-align: middle;
    }
    
    /* iPhone SE Slide Menu Fixes */
    .slide-menu {
        width: 300px;
        left: -300px;
        -webkit-overflow-scrolling: touch;
        max-height: 100vh;
    }
    
    .slide-menu-content {
        padding-top: 80px;
        padding-bottom: 20px; /* Add bottom padding for last items */
        height: 100vh;
        max-height: 100vh;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* Admin specific slide menu fixes for iPhone SE */
    .slide-menu .dashboard-sidebar {
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Menu sections optimization for iPhone SE */
    .slide-menu .menu-section {
        margin-bottom: 0.5rem;
    }
    
    .slide-menu .menu-header {
        padding: 12px 16px 8px 16px;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary-color);
        background: rgba(0, 0, 0, 0.02);
        border-radius: 6px;
        margin: 4px 8px;
    }
    
    .slide-menu .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .slide-menu .sidebar-menu li {
        margin: 2px 0;
    }
    
    /* Ensure all menu items are visible and clickable */
    .slide-menu .sidebar-menu li a {
        padding: 12px 16px;
        font-size: 0.875rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: 6px;
        margin: 2px 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .slide-menu .sidebar-menu li a i {
        font-size: 1.125rem;
        margin-right: 12px;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }
    
    /* Badge styling for iPhone SE */
    .slide-menu .sidebar-menu li a .badge {
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .menu-toggle {
        width: 48px;
        height: 48px;
        top: 12px;
        left: 12px;
        border-radius: 12px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .menu-toggle i {
        font-size: 1.125rem;
    }
    
    /* iPhone SE touch targets */
    .sidebar-menu li a {
        padding: 16px 16px;
        font-size: 0.875rem;
        min-height: 44px; /* iOS touch target minimum */
        display: flex;
        align-items: center;
        border-radius: 8px;
        margin: 2px 12px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .sidebar-menu li a i {
        font-size: 1.125rem;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }
    
    /* iPhone SE form improvements */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.4375rem;
        font-weight: 500;
    }
    
    /* iPhone SE navigation improvements */
    .navbar {
        padding: 0.875rem;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
        padding: 0.5625rem 0.875rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* iPhone SE pagination improvements */
    .page-link {
        font-size: 0.875rem;
        padding: 0.5625rem 0.875rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* iPhone SE specific iOS Safari fixes */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important; /* Prevent zoom on focus */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* iOS Safari scroll bounce fix */
    .slide-menu-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        scroll-behavior: smooth;
    }
    
    /* Admin dashboard scrolling fixes for iPhone SE */
    .container.py-5 {
        min-height: 100vh;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Fix main content area scrolling */
    .col-md-9 {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Card scrolling improvements */
    .card {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
    }
    
    .card-body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Table responsive scrolling */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    /* Dashboard stats cards optimization */
    .row .col-md-3,
    .row .col-md-4,
    .row .col-md-6 {
        margin-bottom: 1rem;
    }
    
    /* Ensure content doesn't overflow horizontally */
    .d-flex {
        flex-wrap: wrap;
    }
    
    /* Fix button groups on small screens */
    .btn-group {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .btn-group .btn {
        margin-bottom: 0.25rem;
    }
    
    /* iOS Safari fixed positioning fix */
    .menu-toggle,
    .slide-menu-overlay,
    .slide-menu {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    
    /* iOS Safari body scroll prevention */
    body.menu-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* iPhone SE overlay improvements */
    .slide-menu-overlay {
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    /* Mobile Login Form Optimizations */
    .container.py-5 {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .col-md-5 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .card {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .card-header {
        border-radius: 12px 12px 0 0;
        padding: 1.25rem;
        background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
        color: white;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    .input-group .form-control {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .input-group .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border: 2px solid #e9ecef;
        border-left: none;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
        border: none;
        padding: 0.875rem;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    }
    
    .btn-outline-danger,
    .btn-outline-primary,
    .btn-outline-info {
        padding: 0.75rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-outline-danger:hover,
    .btn-outline-primary:hover,
    .btn-outline-info:hover {
        transform: translateY(-1px);
    }
    
    /* Mobile Logout Button Fixes */
    .nav-link.text-danger {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
    }
    
    .nav-link.text-danger:hover {
        background: rgba(220, 53, 69, 0.2);
        transform: translateY(-1px);
    }
    
    /* Social Login Buttons Mobile Optimization */
    .d-grid.gap-2 {
        gap: 0.75rem !important;
    }
    
    .divider {
        position: relative;
        text-align: center;
        margin: 1.5rem 0;
    }
    
    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #dee2e6;
    }
    
    .divider-text {
        background: white;
        padding: 0 1rem;
        color: #6c757d;
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    /* Alert styling for mobile */
    .alert {
        border-radius: 8px;
        border: none;
        padding: 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    /* Links styling */
    .text-decoration-none {
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .text-decoration-none:hover {
        color: var(--primary-color) !important;
    }
    
    /* Form validation styling */
    .needs-validation .form-control:invalid {
        border-color: #dc3545;
    }
    
    .needs-validation .form-control:valid {
        border-color: #198754;
    }
}

/* Small Android Phones (360px and below) */
@media (max-width: 360px) {
    .container.py-5 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .messages-card {
        height: 250px;
    }
    
    .chat-messages {
        height: 200px;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
    }
    
    .form-control {
        font-size: 0.8rem;
        padding: 0.5rem;
        min-height: 44px;
    }
    
    /* Small Android Slide Menu */
    .slide-menu {
        width: 260px;
        left: -260px;
    }
    
    .slide-menu-content {
        padding-top: 60px;
    }
    
    .menu-toggle {
        width: 44px;
        height: 44px;
        top: 8px;
        left: 8px;
    }
    
    .menu-toggle i {
        font-size: 1rem;
    }
    
    /* Small Android touch targets */
    .sidebar-menu li a {
        padding: 14px 12px;
        font-size: 0.8rem;
        min-height: 48px;
    }
    
    .sidebar-menu li a i {
        font-size: 1rem;
        margin-right: 10px;
        width: 20px;
    }
    
    /* Small Android table fixes */
    .table-responsive {
        font-size: 0.75rem;
    }
    
    .table th,
    .table td {
        padding: 0.375rem 0.25rem;
    }
}

/* Large Android Phones (480px - 576px) */
@media (min-width: 480px) and (max-width: 576px) {
    .container.py-5 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .messages-card {
        height: 320px;
    }
    
    .chat-messages {
        height: 270px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
        min-height: 46px;
    }
    
    .form-control {
        font-size: 0.9rem;
        padding: 0.75rem;
        min-height: 46px;
    }
    
    /* Large Android Slide Menu */
    .slide-menu {
        width: 300px;
        left: -300px;
    }
    
    .slide-menu-content {
        padding-top: 80px;
    }
    
    .menu-toggle {
        width: 52px;
        height: 52px;
        top: 15px;
        left: 15px;
    }
    
    .menu-toggle i {
        font-size: 1.2rem;
    }
    
    /* Large Android touch targets */
    .sidebar-menu li a {
        padding: 18px 18px;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .sidebar-menu li a i {
        font-size: 1.2rem;
        margin-right: 14px;
        width: 26px;
    }
}

@media (max-width: 576px) {
    .container.py-5 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .messages-card {
        height: 250px;
    }
    
    .chat-messages {
        height: 200px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .d-flex.gap-2 {
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
    
    .col-md-4,
    .col-md-8,
    .col-md-9 {
        width: 100%;
    }
    
    .row {
        margin: 0;
    }
    
    /* Small Mobile Slide Menu Fixes */
    .slide-menu {
        width: 260px;
        left: -260px;
    }
    
    .slide-menu-content {
        padding-top: 60px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        top: 8px;
        left: 8px;
    }
    
    .menu-toggle i {
        font-size: 1rem;
    }
    
    /* Even better touch targets for small screens */
    .sidebar-menu li a {
        padding: 15px 12px;
        font-size: 0.85rem;
        min-height: 48px; /* Larger touch targets */
    }
    
    .sidebar-menu li a i {
        font-size: 1rem;
        margin-right: 8px;
        width: 20px;
        text-align: center;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Better overlay for mobile */
    .slide-menu-overlay {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(2px);
    }
}

.chat-placeholder {
    height: 600px;
}

.chat-icon-large {
    font-size: 5rem;
}

/* Profile Pictures */
.profile-picture-large {
    max-width: 200px;
}

.profile-picture-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.profile-icon-extra-large {
    font-size: 6rem;
}

/* Job Search */
.inbox-icon-large {
    font-size: 4rem;
    color: var(--text-light);
}
.card.border-0.shadow-sm.rounded-3 {
    border-radius: 1rem !important;
    transition: all 0.3s ease;
}

.card.border-0.shadow-sm.rounded-3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg) !important;
}

.card.border-0.shadow-sm.rounded-3 .card-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    border-radius: 1rem 1rem 0 0 !important;
    padding: 1.25rem;
}

.card.border-0.shadow-sm.rounded-3 .card-body {
    padding: 1.5rem;
}

.job-meta {
    gap: 1rem !important;
}

.job-meta-item {
    font-size: 0.9rem;
}

.company-fallback-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.img-fluid.rounded-3 {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.list-group-item {
    border: none !important;
    padding: 0.75rem 0 !important;
}

.btn.rounded-pill {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
}

.alert.rounded-3 {
    border: none;
}

.d-grid.gap-3 {
    gap: 1rem !important;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Blog Post Page Styles */
.card.border-0.shadow-sm.rounded-3 {
    border-radius: 1rem !important;
    transition: all 0.3s ease;
}

.card.border-0.shadow-sm.rounded-3:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg) !important;
}

.card.border-0.shadow-sm.rounded-3 .card-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    border-radius: 1rem 1rem 0 0 !important;
    padding: 1.25rem;
}

.card.border-0.shadow-sm.rounded-3 .card-body {
    padding: 1.5rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--light-bg);
    border-radius: 0 0.5rem 0.5rem 0;
}

.post-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-light);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.post-content pre {
    background-color: var(--dark-bg);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content code {
    background-color: var(--light-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: monospace;
}

/* Badge Styles */
.badge.rounded-pill.px-3.py-2 {
    font-weight: 500;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Alert Styles */
.alert.rounded-3.shadow-sm {
    border: none;
}

/* Custom Alert Fade Animation */
.alert.fade.show {
    transition: opacity 0.15s linear;
}

.alert.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

/* Feedback List Transition */
.feedback-list-container {
    transition: opacity 0.2s ease-in-out;
}

.feedback-list-container.loading {
    opacity: 0.7;
}

/* Modal Close Button Fix */
.modal .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
    background: transparent !important;
    border: none !important;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.modal .btn-close:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.modal .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: 0;
}

/* Ensure Modals Are Visible */
.modal {
    display: none;
}

.modal.show {
    display: block;
}

/* Minimal Modal Backdrop Styling */
.modal-backdrop {
    z-index: 1040;
}

/* Custom Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.custom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.custom-modal-header h5 {
    margin: 0;
    font-size: 1.25rem;
}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-body {
    padding: 1rem;
}

.custom-modal-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: right;
}

/* List Group Item Styles */
.list-group-item.border-0.shadow-sm.rounded-3 {
    border: none !important;
    margin-bottom: 1rem;
}

/* Form Styles */
.form-control.rounded-3 {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control.rounded-3:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

.btn.rounded-pill {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.rounded-pill.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Media Gallery Styles */
.card-img-top {
    border-bottom: 1px solid var(--border-color);
}

/* Cursor pointer for clickable elements */
.cursor-pointer {
    cursor: pointer;
}

/* Modal styles */
.modal-content.rounded-3 {
    border-radius: 1rem !important;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

/* Image viewer */
#imageView {
    max-height: 70vh;
    object-fit: contain;
}

/* ========================================
   MODERN COLOR SCHEME FOR NAVIGATION
   ======================================== */

/* Modern Gradient Background */
.bg-modern-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Modern Navigation Links */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Modern Dropdown Menu */
.navbar-dark .dropdown-menu {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.navbar-dark .dropdown-item {
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-dark .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateX(3px);
}

/* Modern Register Button */
.navbar-dark .btn-primary {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-dark .btn-primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Profile Avatar */
.header-profile-icon {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.header-profile-picture {
    border: 2px solid rgba(255,255,255,0.3);
}

/* Brand Icon */
.header-brand-icon {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

/* Navbar Toggler */
.navbar-dark .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.navbar-dark .navbar-toggler:hover {
    background: rgba(255,255,255,0.2);
}

.navbar-dark .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");
}
