/* CSS Variables for Premium Dark/Black Theme - Planexplorer.bd */
:root {
    /* Default is theme-dark (Deep Navy Blue base) */
    --bg-base: #0f1322;
    --bg-panel: rgba(29, 42, 88, 0.45);
    --bg-panel-solid: #0e1429;
    --bg-input: rgba(15, 23, 42, 0.6);
    --border-color: rgba(21, 181, 255, 0.15);
    --border-glow: rgba(21, 181, 255, 0.4);
    
    /* Brand Color Accents */
    --accent-primary: #15b5ff;      /* Sky Blue Accent */
    --accent-primary-hover: #40c4ff;
    --accent-secondary: #1d2a58;    /* Deep Navy Blue Theme Color */
    --accent-secondary-hover: #131c3c;
    --accent-gradient: linear-gradient(135deg, #1d2a58 0%, #15b5ff 100%);
    --accent-gradient-glow: linear-gradient(135deg, #243365 0%, #40c4ff 100%);
    
    /* State Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #15b5ff;
    
    /* Text Palette */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Font Configurations */
    --font-heading: 'Poppins', 'Outfit', sans-serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(21, 181, 255, 0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Night Mode Overrides (Pure Black base) */
body.theme-night {
    --bg-base: #000000;              /* Pure Black Night Mode Base */
    --bg-panel: rgba(15, 15, 15, 0.85); /* Black translucent card */
    --bg-panel-solid: #0d0d0d;       /* Pure black solid panel */
    --bg-input: #151515;
    --border-color: rgba(255, 255, 255, 0.08); /* White subtle border */
    --border-glow: #15b5ff;
    --accent-secondary: #121212;     /* Pure dark accent background */
    --accent-secondary-hover: #080808;
    --accent-gradient: linear-gradient(135deg, #121212 0%, #15b5ff 100%);
    --accent-gradient-glow: linear-gradient(135deg, #1c1c1c 0%, #40c4ff 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.8);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.95);
    --shadow-glow: 0 0 20px rgba(21, 181, 255, 0.2);
}


/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Glow Blobs */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 80%);
}

.bg-glow-2 {
    bottom: 10%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 80%);
    animation-delay: -5s;
}

.bg-glow-3 {
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, #ec4899 0%, transparent 80%);
    animation-delay: -10s;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.2) translate(50px, 50px); opacity: 0.2; }
}

/* Common Typography Links & Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* Glassmorphism Panel base */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.glass-panel:hover {
    border-color: var(--border-glow);
}

/* Utility Colors for text and icons */
.text-cyan { color: var(--accent-secondary) !important; }
.text-blue { color: var(--color-info) !important; }
.text-purple { color: var(--accent-primary) !important; }
.text-orange { color: #f97316 !important; }
.text-pink { color: #ec4899 !important; }
.text-green { color: var(--color-success) !important; }
.text-accent { color: var(--accent-primary-hover) !important; }
.text-muted { color: var(--text-muted) !important; }

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--accent-gradient-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

.btn-accent {
    background: var(--accent-secondary);
    color: #0a0813;
    font-weight: 600;
}

.btn-accent:hover {
    background: var(--accent-secondary-hover);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--color-danger);
    color: white;
}

.btn-danger:hover {
    background: #ff5a5a;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Nav Header */
.navbar-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 8, 19, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.navbar-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

/* Logo Design */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent-gradient);
    border-radius: 8px;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.logo-dot {
    color: var(--accent-secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navbar Links and Drops */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Dropdown Menu for All Courses */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translate(-50%, 10px);
    width: 280px;
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-md);
    z-index: 1010;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.item-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.item-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Main Viewport Routing Area */
.main-viewport {
    flex: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
    animation: pageTransition 0.5s ease-out;
}

@keyframes pageTransition {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Loader */
.page-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* App Footer */
.app-footer {
    background: rgba(10, 8, 19, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 20px;
    margin-top: 80px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.footer-links-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links-col ul li a:hover {
    color: var(--accent-primary-hover);
    padding-left: 4px;
}

.footer-links-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form Design & Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease-out;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    max-width: 480px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: modalSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.modal-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.modal-tab-btn:hover, .modal-tab-btn.active {
    color: var(--text-primary);
}

.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
}

.modal-form-content {
    display: none;
}

.modal-form-content.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-wrapper input, .input-wrapper select, .input-wrapper textarea, .custom-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 11px 16px 11px 40px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.2);
}

.form-switch-prompt {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.form-switch-prompt a {
    color: var(--accent-primary-hover);
}

.admin-login-link-container {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.admin-login-link-container a {
    font-size: 0.85rem;
}

.admin-credentials-hint {
    background: rgba(21, 181, 255, 0.08);
    border: 1px solid rgba(21, 181, 255, 0.2);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

/* Home / Dashboard Pages general layouts */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 480px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Mock visual element for Hero */
.visual-blob {
    width: 380px;
    height: 380px;
    background: var(--accent-gradient);
    border-radius: 43% 57% 65% 35% / 46% 45% 55% 54%;
    animation: morph 8s ease-in-out infinite alternate;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.visual-blob::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--accent-secondary);
    border-radius: 40%;
    mix-blend-mode: color-dodge;
    animation: spin 15s linear infinite;
    opacity: 0.8;
}

@keyframes morph {
    0% { border-radius: 43% 57% 65% 35% / 46% 45% 55% 54%; }
    100% { border-radius: 65% 35% 42% 58% / 59% 68% 32% 41%; }
}

/* Stats Counter Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.stat-card {
    padding: 30px 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Grid Sections (Shared Courses, Blogs, Software) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-title-wrapper p {
    color: var(--text-secondary);
}

.courses-grid, .blogs-grid, .downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Premium Card Components */
.card-premium {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(139, 92, 246, 0.15);
}

.card-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.card-premium:hover .card-banner img {
    transform: scale(1.05);
}

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 8, 19, 0.85);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-footer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Notice Timeline styling */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.notice-card {
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    text-align: center;
    flex-shrink: 0;
}

.notice-date-box .day {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-primary-hover);
    line-height: 1;
}

.notice-date-box .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.notice-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.notice-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pin-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--color-warning);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
}

/* Service Pricing Cards */
.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-header h1 {
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    position: relative;
}

.popular-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--accent-primary-hover);
    margin-bottom: 20px;
}

.price-box {
    margin: 20px 0;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--color-success);
}

/* HireMe Section */
.hireme-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.hireme-info h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hireme-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.freelancer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.freelancer-stat-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
}

.freelancer-stat-box h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.freelancer-stat-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hireme-form-card {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Course Player & Layout */
.course-viewer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.video-player-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.video-iframe-mock {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1a163a 0%, #000 100%);
    position: relative;
}

.video-iframe-mock i.play-btn {
    font-size: 4rem;
    color: var(--accent-primary-hover);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.video-iframe-mock i.play-btn:hover {
    transform: scale(1.1);
}

.premium-locker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 19, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.locker-icon {
    font-size: 3rem;
    color: var(--color-warning);
    margin-bottom: 20px;
}

.course-details-card {
    padding: 30px;
}

.course-details-card h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.course-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.meta-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-desc-content {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.playlist-sidebar-card {
    height: 600px;
    display: flex;
    flex-direction: column;
}

.playlist-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.playlist-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: 8px;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.playlist-item.active {
    background: rgba(139, 92, 246, 0.1);
    border-left: 3px solid var(--accent-primary);
}

.playlist-item-num {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    width: 24px;
}

.playlist-item.active .playlist-item-num {
    color: var(--accent-primary-hover);
}

.playlist-item-title-wrapper {
    flex: 1;
}

.playlist-item-title {
    font-size: 0.88rem;
    font-weight: 500;
    display: block;
}

.playlist-item-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.playlist-item-check {
    color: var(--text-muted);
}

.playlist-item.completed .playlist-item-check {
    color: var(--color-success);
}

/* User Dashboard */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.dashboard-sidebar {
    padding: 24px;
}

.user-profile-summary {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.user-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 15px;
    box-shadow: var(--shadow-glow);
}

.user-name {
    font-size: 1.15rem;
    font-weight: 600;
}

.user-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.dash-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dash-menu-item:hover, .dash-menu-item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.dash-menu-item.active {
    border-left: 3px solid var(--accent-primary);
    background: rgba(139, 92, 246, 0.08);
}

.dashboard-main-content {
    min-height: 500px;
}

.dashboard-view-pane {
    display: none;
}

.dashboard-view-pane.active {
    display: block;
}

/* Certificate Generator UI */
.certificate-preview-box {
    margin: 30px 0;
    padding: 30px;
    background: #110e23;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

.certificate-card {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1.414 / 1;
    background: #0f0c1c;
    border: 8px double rgba(139, 92, 246, 0.4);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    background-image: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 80%);
}

.cert-border-accent {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cert-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.cert-award-prompt {
    font-size: 0.9rem;
    margin: 20px 0 10px;
    color: var(--text-secondary);
}

.cert-recipient-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--accent-primary-hover);
    margin-bottom: 15px;
}

.cert-course-name {
    font-weight: 600;
    color: var(--accent-primary-hover);
}

.cert-signatures {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
}

.cert-sig-box {
    text-align: center;
}

.sig-line {
    width: 140px;
    height: 1px;
    background: var(--text-muted);
    margin-bottom: 5px;
}

.sig-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Tools Section (Dynamic utilities) */
.tools-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.tools-sidebar {
    padding: 20px;
}

.tools-main {
    padding: 30px;
}

.tool-pane {
    display: none;
}

.tool-pane.active {
    display: block;
}

.tool-result-box {
    background: rgba(10, 8, 19, 0.7);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    position: relative;
}

.tool-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tool-result-content {
    font-family: monospace;
    font-size: 1.15rem;
    color: var(--accent-secondary-hover);
    word-break: break-all;
}

.tool-copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.tool-copy-btn:hover {
    color: var(--text-primary);
}

/* Dynamic notice boards and extension details */
.notice-header {
    text-align: center;
    margin-bottom: 40px;
}

.notice-header h1 {
    font-size: 2.5rem;
}

.extension-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.extension-features {
    list-style: none;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extension-features li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.extension-features li i {
    color: var(--accent-secondary);
}

/* ADMIN PANEL SYSTEM */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    min-height: 600px;
}

.admin-sidebar {
    padding: 20px 15px;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    font-weight: 500;
}

.admin-nav-item:hover, .admin-nav-item.active {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.admin-nav-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-primary-hover);
    border-left: 3px solid var(--accent-primary);
}

.admin-content-pane {
    display: none;
}

.admin-content-pane.active {
    display: block;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.admin-stat-icon.bg-purple {
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-primary-hover);
}

.admin-stat-icon.bg-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent-secondary-hover);
}

.admin-stat-icon.bg-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
}

.admin-stat-icon.bg-blue {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-info);
}

.admin-stat-details h4 {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.admin-stat-details span {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Admin Data Tables */
.admin-table-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-table-container {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-panel);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: rgba(255,255,255,0.02);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.admin-table td {
    font-size: 0.9rem;
}

.admin-table tr:hover {
    background: rgba(255,255,255,0.01);
}

.table-actions-cell {
    display: flex;
    gap: 8px;
}

/* Admin Inbox / Message Display */
.inbox-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inbox-card {
    padding: 20px;
}

.inbox-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.inbox-user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.inbox-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
}

.inbox-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
    min-width: 280px;
    animation: toastSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideIn {
    from { transform: translateX(100%) translateY(0); opacity: 0; }
    to { transform: translateX(0) translateY(0); opacity: 1; }
}

.toast.closing {
    animation: toastSlideOut 0.25s forwards ease-in;
}

@keyframes toastSlideOut {
    to { transform: translateX(100%); opacity: 0; }
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-success { border-left: 4px solid var(--color-success); }
.toast-success .toast-icon { color: var(--color-success); }

.toast-error { border-left: 4px solid var(--color-danger); }
.toast-error .toast-icon { color: var(--color-danger); }

.toast-info { border-left: 4px solid var(--color-info); }
.toast-info .toast-icon { color: var(--color-info); }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hireme-container {
        grid-template-columns: 1fr;
    }
    
    .course-viewer-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-layout, .tools-layout, .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-panel-solid);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 12px;
        z-index: 999;
    }
    
    .navbar-links.active {
        display: flex;
    }
    
    .nav-dropdown .dropdown-content {
        position: relative;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.02);
        padding: 0 10px;
        margin-top: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease, visibility 0.3s;
        pointer-events: none;
    }
    
    .nav-dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        pointer-events: auto;
        padding: 10px;
        margin-top: 8px;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-actions.active {
        display: flex;
        padding: 10px 20px 20px;
        width: 100%;
        background: var(--bg-panel-solid);
        border-top: 1px solid var(--border-color);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PLANEXPLORER.BD - INDIGO/SKY BRAND ALIGNMENT & HOMEPAGE WIDGETS OVERRIDES
   ========================================================================== */

/* Navbar Navy Overrides */
.navbar-container {
    background: var(--accent-secondary) !important; /* Solid Deep Navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.navbar-container .brand-logo,
.navbar-container .mobile-menu-toggle {
    color: #ffffff !important;
}

.navbar-container .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-container .nav-link:hover,
.navbar-container .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Dropdown items for navy nav */
.navbar-container .dropdown-content {
    background: var(--accent-secondary-hover) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-container .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-container .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.navbar-container .dropdown-item .item-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Light / White Panel Glow adjustments */
.glass-panel {
    background: var(--bg-panel) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
}

.glass-panel:hover {
    border-color: var(--border-glow) !important;
    box-shadow: var(--shadow-md), 0 0 15px rgba(21, 181, 255, 0.08) !important;
}

/* Hero Slider Carousel */
.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    background: var(--accent-secondary);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.slide-item.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(29, 42, 88, 0.8) 0%, rgba(10, 8, 19, 0.95) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
}

.slide-content h2 strong {
    color: var(--accent-primary);
}

.slide-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn-play-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--accent-secondary);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.btn-play-video:hover {
    transform: scale(1.1);
    background: var(--accent-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--accent-primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left { left: 20px; }
.slider-arrow-right { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-primary);
    width: 24px;
    border-radius: 10px;
}

/* Service Card Applied override */
.serv-badge {
    margin-top: 15px;
    padding: 10px;
    display: block;
    background: var(--accent-gradient);
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.serv-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Countdown Timer Section */
.countdown-section {
    background: var(--accent-secondary);
    color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21, 181, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    min-width: 90px;
}

.countdown-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-heading);
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Requirements & Video Section */
.requirement-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.video-preview-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}

.video-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 42, 88, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-play-overlay:hover {
    background: rgba(29, 42, 88, 0.6);
}

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 25px rgba(21, 181, 255, 0.5);
    transition: var(--transition-smooth);
}

.video-play-overlay:hover .video-play-btn {
    transform: scale(1.1);
    background: #ffffff;
    color: var(--accent-primary);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.8);
}

.requirement-checklist {
    list-style: none;
}

.requirement-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.requirement-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(21, 181, 255, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.requirement-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.requirement-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Testimonials / Mentors */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.teacher-card {
    padding: 30px;
    text-align: center;
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--border-color);
    transition: var(--transition-fast);
}

.teacher-card:hover .teacher-avatar {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.teacher-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.teacher-title {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.teacher-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: justify;
}

.teacher-rating {
    color: #ffa800;
    font-size: 1.1rem;
}

/* FAQ Accordion system */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--accent-primary);
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(21, 181, 255, 0.08);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background: var(--accent-primary);
    color: #ffffff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-body {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.faq-content {
    padding: 15px 0 5px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Global YouTube Video Modal Overlay */
.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 19, 0.85);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.youtube-modal.active {
    display: flex;
}

.youtube-modal-container {
    max-width: 800px;
    width: 100%;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    aspect-ratio: 16/9;
}

.youtube-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.youtube-modal-close:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

/* Responsive adjustment overrides for new widgets */
@media (max-width: 980px) {
    .requirement-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slider-container {
        height: 380px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 12px;
    }
    
    .countdown-card {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-num {
        font-size: 1.5rem;
    }
    
    .slider-container {
        height: 320px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
}

/* FLOATING CHAT WIDGET */
.support-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(21, 181, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, background 0.3s;
}

.support-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(21, 181, 255, 0.6);
}

.chat-popup-card {
    width: 320px;
    bottom: 80px;
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
}

.chat-popup-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agent-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.online-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    margin-right: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-close-btn:hover {
    color: #fff;
}

.chat-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, filter 0.2s;
    font-size: 0.85rem;
}

.chat-action-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.whatsapp-chat {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.telegram-chat {
    background: #0088cc;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

}

/* Live Chat Message Bubbles */
.chat-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
    word-wrap: break-word;
    position: relative;
}
.chat-bubble.user {
    background: var(--accent-gradient);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.chat-bubble.admin {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}
.chat-bubble-time {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-align: right;
}
}

/* UPWARD QUICK MENU */
.support-quick-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    width: 200px;
    z-index: 10000;
}

.support-quick-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.quick-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
    text-align: left;
    width: 100%;
}

.quick-menu-item:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.quick-menu-item.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.quick-menu-item.facebook {
    background: #0084FF;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.25);
}

.quick-menu-item.livechat {
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(21, 181, 255, 0.25);
}

.quick-menu-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
