/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES - INTERVIEW SCHEDULING SYSTEM (LIGHT THEME)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    /* Professional Color Palette - Apple/Google/Microsoft inspired */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Background & Surface (Cream & White Theme) */
    --bg-main: #faf8f2;
    --bg-surface: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.95);
    --bg-hover: #f7f0d4;
    --border-color: #d5dbd8;
    --border-light: #e8ebea;
    
    /* Primary Color (Dark Green Theme) */
    --primary: #094b3d;
    --primary-rgb: 9, 75, 61;
    --primary-color: var(--primary);
    --primary-light: #4c8c4a;
    --primary-light-rgb: 76, 140, 74;
    --primary-lighter: #7fa771;
    --primary-glow: rgba(var(--primary-rgb), 0.08);
    
    /* Secondary Color (Light Green accent) */
    --secondary: #557a46;
    --secondary-rgb: 85, 122, 70;
    --secondary-light: #7fa771;
    --secondary-glow: rgba(var(--secondary-rgb), 0.12);

    
    /* Status Colors */
    --accent-success: #4c8c4a;
    --accent-success-bg: rgba(76, 140, 74, 0.08);
    --accent-warning: #d97706;
    --accent-warning-bg: rgba(217, 119, 6, 0.08);
    --accent-danger: #dc2626;
    --accent-danger-bg: rgba(220, 38, 38, 0.08);
    --accent-info: #0284c7;
    --accent-info-bg: rgba(2, 132, 199, 0.08);

    /* Text Colors (accessible dark green-black tones) */
    --text-primary: #101e19;
    --text-secondary: #2e3d36;
    --text-muted: #60736a;
    
    /* Shadows - Professional depth */
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 10px 25px rgba(9, 75, 61, 0.06), 0 4px 12px rgba(9, 75, 61, 0.03);
    --glow-shadow: 0 0 20px rgba(var(--primary-rgb), 0.12);
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Global Reset & Base */
html, body {
    overflow-x: hidden;
}
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.3px;
    font-size: 15px;
    line-height: 1.6;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Custom class overrides */
.text-white {
    color: #ffffff !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.timeline-step.completed .timeline-marker i,
.timeline-step.active .timeline-marker i,
.btn-premium,
.btn-success,
.btn-danger,
.btn-primary {
    color: #ffffff !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Elements */
.app-container {
    flex: 1;
}

/* Glassmorphism Container - Professional */
.glass-panel {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-panel:hover {
    border-color: var(--primary-light);
    box-shadow: var(--card-shadow-hover), 0 10px 30px var(--primary-glow);
    transform: translateY(-4px);
}
.glass-panel.no-hover-float:hover {
    transform: none;
}

/* Premium Gradient Header - Professional */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f0f4f8 100%);
}

.hero-section.hero-light {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 1.0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Removed soft blur/gradient to keep hero clean and static */
    background: transparent;
    z-index: 1;
}

/* Ensure text inside hero section is bright and readable on the dark video background */
.hero-section h1 {
    color: var(--text-primary) !important;
    text-align: center;
    /* Keep headline static: remove shadow and animations */
    text-shadow: none;
    letter-spacing: -1.2px;
}



.hero-section .hero-content .lead {
    /* kept static */
    color: var(--text-secondary) !important;
    font-size: 1.1rem;
}

.hero-section .text-gradient {
    color: var(--primary) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.hero-section .lead {
    color: var(--text-secondary) !important;
    font-size: 1.1rem;
}

.hero-section .badge {
    background: var(--primary-glow) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.15) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

.text-gradient {
    color: var(--primary) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

/* Interactive Buttons - Professional */
.btn-premium {
    background: var(--primary) !important;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 11px 24px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.15);
    transition: var(--transition-fast);
    letter-spacing: -0.2px;
}
.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
    color: #ffffff;
}
.btn-premium:active {
    transform: translateY(0);
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}
.btn-outline-premium:hover {
    background: var(--primary-glow);
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-1px);
}

/* Job Cards - Professional */
.job-card {
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--primary);
}
.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary-light));
    opacity: 1;
}
.job-card .skills-badge {
    background-color: var(--primary-glow);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 16px;
    margin-right: 6px;
    margin-bottom: 6px;
    display: inline-block;
    font-weight: 500;
}

/* Form Styling - Professional */
.form-group-premium {
    margin-bottom: 18px;
}
.form-group-premium label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
    letter-spacing: -0.2px;
}

@media (min-width: 768px) {
    .form-group-premium label {
        min-height: 38px;
    }
}

/* Fix date input alignment and border to match normal inputs */
input[type="date"].form-control-premium {
    border-left: 0 !important;
    line-height: 1.5;
}
input[type="date"].form-control-premium::-webkit-date-and-time-value {
    margin: 0;
    height: auto;
    min-height: 1.5em;
    display: inline-flex;
    align-items: center;
}

.form-control-premium {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 11px 14px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    font-size: 14px;
    font-family: var(--font-body);
}
.form-control-premium:focus {
    background-color: var(--bg-surface);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    outline: none;
}
.form-control-premium::placeholder {
    color: var(--text-muted);
}

/* File Upload Area */
.upload-drag-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    background-color: var(--bg-hover);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.upload-drag-area:hover, .upload-drag-area.dragover {
    border-color: var(--primary);
    background-color: var(--primary-glow);
}
.upload-drag-area i {
    color: var(--primary);
    margin-bottom: 12px;
}
    color: var(--primary);
    margin-bottom: 12px;
}

/* Slot Selection Calendar / Grids - Professional */
.date-selector-btn {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: var(--transition-fast);
    text-align: center;
    cursor: pointer;
}
.date-selector-btn:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}
.date-selector-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
    color: #ffffff !important;
}
.date-selector-btn.active:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter)) !important;
    color: #ffffff !important;
}
.date-selector-btn span {
    display: block;
}
.date-selector-btn .day-num {
    font-size: 22px;
    font-weight: 700;
}
.date-selector-btn .month-name {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 4px;
}
.date-selector-btn.active .month-name {
    color: rgba(255, 255, 255, 0.95) !important;
}
.date-selector-btn.active .day-num {
    color: #ffffff !important;
}

.time-slot-btn {
    padding: 11px 18px;
    border-radius: 6px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: var(--transition-fast);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}
.time-slot-btn:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary-glow);
}
.time-slot-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
    color: #ffffff !important;
}
.time-slot-btn.active:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter)) !important;
    color: #ffffff !important;
}
.time-slot-btn:disabled {
    background: var(--bg-hover);
    color: var(--text-muted);
    border-color: var(--border-color);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Visual Timeline Tracker */
.timeline-tracker {
    position: relative;
    padding-left: 30px;
}
.timeline-tracker::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--border-color);
}
.timeline-step {
    position: relative;
    padding-bottom: 30px;
}
.timeline-step:last-child {
    padding-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2;
}
.timeline-step.completed .timeline-marker {
    border-color: var(--accent-success);
    background-color: var(--accent-success);
}
.timeline-step.active .timeline-marker {
    border-color: var(--primary);
    background-color: var(--bg-surface);
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.timeline-step.active .timeline-marker::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}
.timeline-step.failed .timeline-marker {
    border-color: var(--accent-danger);
    background-color: var(--accent-danger);
}
.timeline-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-secondary);
}
.timeline-step.completed .timeline-title,
.timeline-step.active .timeline-title {
    color: var(--text-primary);
}
.timeline-date {
    font-size: 12px;
    color: var(--text-muted);
}
.timeline-step.active .timeline-date {
    color: var(--primary);
}

/* Dashboard Statistics Cards */
.stat-card {
    padding: 24px;
    border-radius: 12px;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.stat-icon.primary {
    background-color: var(--primary-glow);
    color: var(--primary);
}
.stat-icon.success {
    background-color: var(--accent-success-bg);
    color: var(--accent-success);
}
.stat-icon.warning {
    background-color: var(--accent-warning-bg);
    color: var(--accent-warning);
}
.stat-icon.danger {
    background-color: var(--accent-danger-bg);
    color: var(--accent-danger);
}

/* Custom Status Badges */
.badge-status {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}
.status-applied { background-color: var(--accent-info-bg); color: var(--accent-info); }
.status-slot-selected { background-color: var(--accent-warning-bg); color: var(--accent-warning); }
.status-under-review { background-color: rgba(59, 130, 246, 0.1); color: var(--primary); }
.status-approved { background-color: var(--accent-success-bg); color: var(--accent-success); }
.status-interview-scheduled { background-color: var(--accent-success-bg); color: var(--accent-success); }
.status-rescheduled { background-color: var(--accent-warning-bg); color: var(--accent-warning); }
.status-completed { background-color: var(--accent-success-bg); color: var(--accent-success); }
.status-rejected { background-color: var(--accent-danger-bg); color: var(--accent-danger); }

/* Table custom designs */
.table-premium {
    color: var(--text-primary);
}
.table-premium th {
    background-color: var(--border-light);
    border-bottom: 2px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    padding: 16px;
}
.table-premium td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}
.table-premium tbody tr {
    transition: var(--transition-smooth);
}
.table-premium tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.005);
}

/* ==========================================================================
   Premium Animated Footer Styles
   ========================================================================== */
.new_footer_area {
    background: var(--bg-color, #020617);
    border-top: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    position: relative;
    overflow: hidden;
    color: var(--text-muted, #94a3b8);
    font-family: 'Inter', sans-serif;
}

body.light-mode .new_footer_area {
    background: #fbfbfd;
    color: #6a7695;
}

.new_footer_top {
    padding: 100px 0px 280px;
    position: relative;
    overflow: hidden;
}

.new_footer_area .footer_bottom {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    background: rgba(0, 0, 0, 0.2);
}

body.light-mode .new_footer_area .footer_bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.02);
}

.footer_bottom {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-muted, #94a3b8);
}

body.light-mode .footer_bottom {
    color: #7f88a6;
}

.new_footer_top .f_widget p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 20px;
}

body.light-mode .new_footer_top .f_widget p {
    color: #6a7695;
}

/* Subscription Form Styling */
.new_footer_top .f_widget .f_subscribe_two {
    max-width: 320px;
}

.new_footer_top .f_widget .f_subscribe_two .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    border-radius: 8px;
    color: var(--text-light, #f8fafc);
    padding: 12px 16px;
    width: 100%;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

body.light-mode .new_footer_top .f_widget .f_subscribe_two .form-control {
    background: #ffffff;
    border: 1px solid #e2e2eb;
    color: var(--text-dark, #1f2937);
}

.new_footer_top .f_widget .f_subscribe_two .form-control:focus {
    border-color: var(--primary-color, #ff1d58);
    box-shadow: 0 0 10px rgba(9, 75, 61, 0.15);
}

.new_footer_top .f_widget .f_subscribe_two .btn_get {
    border: 1px solid var(--primary-color, #ff1d58);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn_get_two {
    background: var(--primary-color, #ff1d58);
    color: #fff;
}

.btn_get_two:hover {
    background: transparent;
    color: var(--primary-color, #ff1d58);
    border-color: var(--primary-color, #ff1d58);
}

/* List Styling */
.new_footer_top .f_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.new_footer_top .f_list li {
    margin-bottom: 12px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
    transition: color 0.2s linear;
    font-size: 14px;
}

body.light-mode .new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: var(--primary-color, #ff1d58);
    padding-left: 4px;
    transition: all 0.2s ease;
}

/* Social Icons Styling */
.f_social_icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.f_social_icon a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 42px;
    color: var(--text-muted, #94a3b8);
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.08));
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

body.light-mode .f_social_icon a {
    color: #858da8;
    background: #ebeef5;
    border: 1px solid #e2e2eb;
}

.new_footer_top .f_social_icon a:hover {
    background: var(--primary-color, var(--primary));
    border-color: var(--primary-color, var(--primary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(9, 75, 61, 0.3);
}

.new_footer_top .f_social_icon a + a {
    margin-left: 0;
}

.new_footer_top .f-title {
    margin-bottom: 30px;
    color: var(--text-light, #f8fafc);
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.new_footer_top .f-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color, #ff1d58);
}

body.light-mode .new_footer_top .f-title {
    color: #263b5e;
}

/* Animated footer elements */
.new_footer_top .footer_bg {
    position: absolute;
    bottom: -1px;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
    opacity: 0.8;
    overflow: hidden;
}

body:not(.light-mode) .new_footer_top .footer_bg {
    filter: brightness(0.6) saturate(1.2);
    opacity: 0.25;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    animation: myfirst 22s linear infinite;
}

body:not(.light-mode) .new_footer_top .footer_bg .footer_bg_one {
    filter: brightness(0.7) opacity(0.8);
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    animation: myfirst 30s linear infinite;
}

body:not(.light-mode) .new_footer_top .footer_bg .footer_bg_two {
    filter: brightness(0.7) opacity(0.8);
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/* Grid Layout fallback for standard HTML files (Bootstrap compat) */
.new_footer_top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.new_footer_top .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.new_footer_top .col-lg-3,
.new_footer_top .col-lg-2,
.new_footer_top .col-md-6 {
    padding: 0 15px;
}

@media (min-width: 768px) {
    .new_footer_top .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .new_footer_top .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .new_footer_top .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .new_footer_top .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .new_footer_top .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .pl_70 {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .pl_70 {
        padding-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .new_footer_top .col-lg-3,
    .new_footer_top .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Footer Bottom Layout alignment rules */
.footer_bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_bottom .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.footer_bottom .text-right,
.footer_bottom .text-end {
    text-align: right;
}

@media (max-width: 767px) {
    .footer_bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer_bottom .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer_bottom .text-right,
    .footer_bottom .text-end {
        text-align: center !important;
    }
}

/* ==========================================================================
   Animated Speech Bubbles for Footer Vehicles
   ========================================================================== */
.footer_bg_one {
    position: relative;
}

.footer_bg_two {
    position: relative;
}

/* Volkswagen Beetle Car Bubble */
.car-logo {
    position: absolute;
    top: -30px; /* Position above Beetle roof */
    left: 45%;  /* Center above Beetle car position in GIF frame */
    transform: translateX(-50%);
    background: var(--primary); /* Match theme accent green */
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(9, 75, 61, 0.25);
    z-index: 10;
}

.car-logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--primary) transparent;
    display: block;
    width: 0;
}

.car-logo span {
    color: #ffffff !important;
}

/* Cyclist bubble */
.cyclist-logo {
    position: absolute;
    top: -25px; /* Position above cyclist helmet */
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb; /* Match slate/blue accent */
    color: #ffffff !important;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    z-index: 10;
}

.cyclist-logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #2563eb transparent;
    display: block;
    width: 0;
}

/* ==========================================================================
   Hero Section Animations (Typing & Fade Sequence)
   ========================================================================== */
.typing-cursor {
    font-weight: 300;
    color: var(--primary); /* Match primary color */
    animation: blink-cursor 0.7s infinite;
    margin-left: 4px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#hero-desc {
    opacity: 0 !important;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-desc.active {
    opacity: 1 !important;
    transform: translateY(0);
}

#hero-btn {
    opacity: 0 !important;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-btn.active {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Disable default MS Edge/IE password reveal & clear buttons to avoid double-eye toggles */
input::-ms-reveal,
input::-ms-clear {
    display: none !important;
}

/* Responsive Admin Dashboard Grid Actions */
.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 440px;
}

/* Responsive Typography and Layout for Mobile Design Excellence */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px !important;
    }
    .hero-video {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
    }
    .hero-section h1 {
        font-size: 2.2rem !important;
        min-height: auto !important;
        letter-spacing: -1px !important;
    }
    .hero-section p {
        font-size: 1rem !important;
    }
    #openings h2 {
        font-size: 1.8rem !important;
    }
    .glass-panel {
        padding: 24px 16px !important;
    }
    .stat-card {
        padding: 16px !important;
    }
}

@media (max-width: 480px) {
    .admin-actions-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Adjust buttons on small mobile displays */
    .btn-premium, .btn-outline-premium {
        padding: 10px 16px !important;
        font-size: 13.5px !important;
    }
    
    /* Adjust grid column gaps */
    .g-4, .g-3 {
        --bs-gutter-x: 10px !important;
        --bs-gutter-y: 10px !important;
    }
}




/* Keyframe animations for car and cyclist logos */
@keyframes signGlow {
    0% {
        box-shadow: 0 0 6px var(--primary);
    }
    100% {
        box-shadow: 0 0 14px var(--primary), 0 0 4px var(--blue-light, #00DDFF);
    }
}

@keyframes cyclistGlow {
    0% {
        box-shadow: 0 0 4px var(--blue-light, #00DDFF);
    }
    100% {
        box-shadow: 0 0 12px var(--blue-light, #00DDFF), 0 0 4px var(--primary);
    }
}
