/* ============================================================
   SAARTHIK - UPSC & PSC Study Portal Design System
   Primary: Indigo (#4f46e5) | Secondary: Cyan (#06b6d4)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --indigo: #7c3aed;
    --indigo-dark: #6d28d9;
    --indigo-light: #a5b4fc;
    --indigo-50: #faf5ff;
    --indigo-100: #f3e8ff;
    --cyan: #1e293b;
    --cyan-dark: #0f172a;
    --cyan-light: #334155;
    --cyan-50: #f1f5f9;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
}

/* ---- NAVBAR ---- */
.saarthik-nav {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    transition: box-shadow 0.3s;
}

.saarthik-nav.scrolled {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-brand .brand-s {
    color: white;
}

.nav-brand .brand-t {
    color: var(--indigo);
}

.nav-pill-link {
    color: var(--slate-300) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-pill-link:hover,
.nav-pill-link.active {
    color: var(--indigo) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* ---- BUTTONS ---- */
.btn-indigo {
    background: var(--indigo);
    color: #ffffff;
    border: 2px solid var(--indigo);
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 28px;
    transition: all 0.25s;
}

.btn-indigo:hover {
    background: var(--indigo-dark);
    border-color: var(--indigo-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-cyan {
    background: var(--cyan);
    color: white;
    border: 2px solid var(--cyan);
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 28px;
    transition: all 0.25s;
}

.btn-cyan:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
}

.btn-outline-indigo {
    background: transparent;
    color: var(--indigo);
    border: 2px solid var(--indigo);
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 28px;
    transition: all 0.25s;
}

.btn-outline-indigo:hover {
    background: var(--indigo);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-white-indigo {
    background: white;
    color: var(--indigo);
    border: none;
    font-weight: 700;
    border-radius: 10px;
    padding: 14px 32px;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white-indigo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--indigo-dark);
}

/* ---- HERO SECTION ---- */
.hero-section {
    background: var(--slate-900);
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 41, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo-50);
    border: 1px solid var(--indigo-100);
    color: var(--indigo-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--indigo);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--indigo);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--slate-300);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.15);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 20px;
    left: -30px;
}

.hero-float-card.card-2 {
    top: 30px;
    right: -20px;
    animation-delay: 2s;
}

.hero-float-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-300);
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--indigo);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* ---- EXAM BADGES ---- */
.exam-badges-section {
    padding: 30px 0;
    background: white;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.exam-badge-pill {
    background: var(--slate-100);
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--slate-300);
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
}

.exam-badge-pill:hover {
    background: var(--indigo-50);
    border-color: var(--indigo-light);
    color: var(--indigo);
}

.exam-badge-pill.active {
    background: var(--indigo);
    color: var(--slate-900);
    border-color: var(--indigo);
}

/* ---- SECTION STYLES ---- */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--slate-900);
}

/* ---- FEATURE CARDS ---- */
.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* ---- TRACKER FEATURES ---- */
.tracker-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    background: var(--slate-100);
    border: 1px solid transparent;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.tracker-feature-item:hover {
    background: white;
    border-color: var(--indigo-100);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

/* ---- TEST SERIES CARDS ---- */
.ts-card {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--slate-100);
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.ts-card:hover {
    border-color: var(--indigo-light);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12);
    transform: translateY(-6px);
}

.ts-card.featured {
    border-color: var(--indigo);
    background: linear-gradient(160deg, var(--indigo-50), white);
}

.ts-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo);
    color: var(--slate-900);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.ts-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--slate-900);
}

.ts-price sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.ts-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.9rem;
    color: var(--slate-700);
}

.ts-feature-item:last-child {
    border-bottom: none;
}

.ts-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ---- STATS STRIP ---- */
.stats-strip {
    background: var(--slate-900);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--indigo);
}

.stat-label {
    color: var(--slate-300);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ---- TESTIMONIAL ---- */
.testi-card {
    background: white;
    border-radius: 18px;
    border: 1px solid var(--slate-100);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: box-shadow 0.3s;
}

.testi-card:hover {
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.1);
}

.testi-quote {
    font-size: 2rem;
    color: var(--indigo-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--slate-700);
    font-style: italic;
    line-height: 1.6;
}

.testi-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate-900);
}

.testi-role {
    font-size: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
}

.star-rating {
    color: #f59e0b;
    font-size: 0.85rem;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: var(--slate-900);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 70px 0 30px;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    max-width: 280px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--cyan);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 40px 0 20px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.footer-social-btn:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    color: var(--slate-900);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-up {
    animation: fadeInUp 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* ---- UTILITIES ---- */
.text-indigo {
    color: var(--indigo) !important;
}

.text-cyan {
    color: var(--cyan) !important;
}

.text-slate {
    color: var(--slate-500) !important;
}

.bg-indigo {
    background-color: var(--indigo) !important;
}

.bg-cyan {
    background-color: var(--cyan) !important;
}

.bg-indigo-soft {
    background-color: var(--indigo-50) !important;
}

.bg-cyan-soft {
    background-color: var(--cyan-50) !important;
}

.border-indigo {
    border-color: var(--indigo) !important;
}

.border-cyan {
    border-color: var(--cyan) !important;
}

.rounded-14 {
    border-radius: 14px !important;
}

.rounded-20 {
    border-radius: 20px !important;
}

.ls-3 {
    letter-spacing: 3px;
}

.fw-900 {
    font-weight: 900;
}

/* Styles from track.blade.php */
:root {
    --primary: #4F46E5;
    --primary-light: #EEF2FF;
    --secondary: #EC4899;
    --success: #10B981;
    --surface: #FFFFFF;
    --background: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -12px rgba(79, 70, 229, 0.15);
}

/* Removed body override to respect global dashboard layout */

/* Dashboard Header Card */
.dashboard-header-card {
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-header-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-title {
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

.btn-export {
    background: white;
    border: 2px solid var(--border);
    color: var(--text-main);
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-export:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Navigation Pill Strip */
.date-navigation {
    margin-bottom: 3rem;
}

.month-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--primary-light);
}

.month-selector::-webkit-scrollbar {
    height: 6px;
}

.month-selector::-webkit-scrollbar-track {
    background: var(--primary-light);
    border-radius: 10px;
}

.month-selector::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.month-selector::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.month-badge {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.month-badge.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.date-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--primary-light);
}

.date-scroller::-webkit-scrollbar {
    height: 6px;
}

.date-scroller::-webkit-scrollbar-track {
    background: var(--primary-light);
    border-radius: 10px;
}

.date-scroller::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.date-scroller::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.date-block {
    flex: 0 0 auto;
    width: 75px;
    height: 95px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.date-block:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.date-block.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.date-day {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-num {
    font-size: 1.4rem;
    font-weight: 800;
}

.date-block:not(.active) .date-day {
    color: var(--text-muted);
}

.date-block:not(.active) .date-num {
    color: var(--text-main);
}

.progress-dot {
    position: absolute;
    bottom: 10px;
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    opacity: 0;
}

.date-block.has-progress .progress-dot {
    opacity: 1;
}

.date-block.active .progress-dot {
    background: white;
}

/* Modern Tabs */
.schedule-tabs-container {
    display: flex;
    background: var(--surface);
    padding: 6px;
    border-radius: 16px;
    gap: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
    scrollbar-width: none;
}

.schedule-tabs-container::-webkit-scrollbar {
    display: none;
}

.schedule-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
    border: none;
}

.schedule-tab:hover {
    color: var(--text-main);
}

.schedule-tab.active {
    background: var(--text-main);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Task List Layout */
.task-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


.task-row {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.task-row:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.subject-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
}

.subject-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.task-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.task-row.completed {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.task-row.completed::before {
    background: var(--success);
}

/* Custom Checkbox */
.check-circle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    z-index: 1;
    flex-shrink: 0;
}

.task-row:not(.completed) .check-circle:hover {
    border-color: var(--success);
    background: #ecfdf5;
}

.check-circle i {
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.task-row.completed .check-circle {
    background: var(--success);
    border-color: var(--success);
    border-radius: 50%;
}

.task-row.completed .check-circle i {
    opacity: 1;
    transform: scale(1);
}

/* Task Content */
.task-content {
    flex-grow: 1;
    z-index: 1;
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.badge-subject {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.task-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.task-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.01em;
}

.task-chapter {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.task-row.completed .task-title,
.task-row.completed .task-chapter {
    color: var(--text-muted);
}

/* Resources Area */
.task-resources {
    display: flex;
    gap: 0.5rem;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-resource {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-resource:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-resource i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .dashboard-header-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .month-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }


    .date-navigation {
        margin-bottom: 1.5rem;
    }

    .date-block {
        width: 60px;
        height: 80px;
        border-radius: 16px;
    }

    .date-num {
        font-size: 1.15rem;
    }

    .date-day {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .task-container {
        gap: 0.85rem;
    }

    .task-row {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 16px;
        align-items: flex-start;
    }

    .check-circle {
        width: 28px;
        height: 28px;
        margin-top: 2px;
    }

    .check-circle i {
        font-size: 1rem;
    }

    .task-content {
        flex: 1;
        min-width: 0;
    }

    .task-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.35rem;
    }

    .badge-subject {
        font-size: 0.65rem;
        padding: 3px 8px;
        border-radius: 6px;
    }

    .task-duration {
        font-size: 0.75rem;
    }

    .task-title {
        font-size: 1.05rem;
        margin-bottom: 0.15rem;
    }

    .task-chapter {
        font-size: 0.85rem;
    }

    .task-resources {
        width: 100%;
        margin-left: 0;
        padding-left: calc(28px + 0.75rem);
        margin-top: 0.25rem;
    }

    .btn-resource {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-state i {
        font-size: 2.5rem;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 24px;
    border: 1px dashed var(--border);
}

.empty-state i {
    font-size: 3rem;
    color: var(--border);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.task-row {
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Modal Styling */
.custom-modal .modal-content {
    border: none;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.custom-modal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

.res-list-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    text-decoration: none;
    display: block;
}

.res-list-item:hover {
    background: var(--background);
}

.res-list-item:last-child {
    border-bottom: none;
}

/* Styles from student.blade.php */
.dashboard-wrapper {
    min-height: 100vh;
}

@media (max-width: 991.98px) {
    .dashboard-wrapper {
        padding-top: 15px !important;
    }
}

.offcanvas-body {
    overflow-y: auto;
}

/* Styles from frontend.blade.php */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #global-study-timer {
        bottom: 20px !important;
        left: 16px !important;
        right: 16px !important;
        max-width: 360px;
        width: auto !important;
        margin: 0 auto;
        border-radius: 14px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    }

    #global-study-timer.is-minimized {
        left: auto !important;
        right: 16px !important;
        width: auto !important;
        margin: 0;
    }
}

/* ============================================================
   SAARTHIK PREMIUM CUSTOM STYLES (NAVBAR & HOME PAGE)
   ============================================================ */

/* ── Sections ── */
section {
    scroll-margin-top: 96px;
}

/* ── Premium Navbar ── */
.premium-nav {
    background: rgba(15, 23, 42, 0.9);
    /* Slate 900 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.premium-nav.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-nav-link {
    position: relative;
    color: rgba(241, 245, 249, 0.75) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.premium-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
}

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

.premium-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #818cf8;
    /* Indigo 400 */
    border-radius: 2px;
}

.premium-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3px;
}

.premium-lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9px;
    transition: all 0.15s ease;
    color: rgba(241, 245, 249, 0.5) !important;
    text-decoration: none;
}

.premium-lang-btn.active {
    background: #4f46e5;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.premium-lang-btn:hover:not(.active) {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

.premium-btn-login {
    color: rgba(241, 245, 249, 0.8) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.premium-btn-login:hover {
    color: #ffffff !important;
}

.premium-btn-cta {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.premium-btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
    filter: brightness(1.05);
}

.premium-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s;
    cursor: pointer;
}

.premium-user-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 240px;
    background: #0f172a !important;
    /* Solid Slate 900 */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000 !important;
}

.dropdown-wrapper:hover .premium-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.premium-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: rgba(241, 245, 249, 0.85) !important;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.premium-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.premium-dropdown-item i {
    color: #818cf8 !important;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* ── Mobile Drawer ── */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 11, 20, 0.6);
    backdrop-filter: blur(8px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #0f172a;
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right 0.30s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mobile-drawer-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer-footer {
    flex-shrink: 0;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f172a;
    position: relative;
    z-index: 10;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(241, 245, 249, 0.7);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-drawer-link.active {
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.mobile-drawer-link i {
    color: #818cf8;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* ── Base & Variables (Home Page) ── */
:root {
    --primary: #4f46e5;
    --primary-light: #eef2ff;
    --accent: #10b981;
    --surface: #f8fafc;
    --border: #e8ecf0;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* ── Gradient Highlights & Text ── */
.text-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 10px;
    background: rgba(99, 102, 241, 0.12);
    border-radius: 4px;
    z-index: -1;
}

/* ── Badges ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    border: 1px solid rgba(199, 210, 254, 0.6);
    color: #4f46e5;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.05);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: #fff;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.28);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #374151;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    border: 1.5px solid #e5e7eb;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: #6366f1;
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* ── Feature Cards ── */
.feature-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--header-gradient, linear-gradient(90deg, #4f46e5, #6366f1));
    opacity: 0;
    transition: opacity 0.22s;
}

.feature-card:hover {
    border-color: var(--border-hover, rgba(99, 102, 241, 0.25));
    box-shadow: 0 20px 40px var(--glow-color, rgba(79, 70, 229, 0.06));
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.feature-card:hover .icon-wrap {
    transform: scale(1.08);
}

/* ── Gradient CTA Card ── */
.self-study-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
    border-radius: var(--radius-2xl);
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(79, 70, 229, 0.15);
}

/* ── Steps ── */
.step-line {
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
}

.step-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-wrapper:hover .step-dot {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.18);
}

/* ── Ticker ── */
.stat-bar {
    background: #0f172a;
    /* Premium dark background for stat bar */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    gap: 64px;
    animation: ticker-scroll 35s linear infinite;
    width: max-content;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Pricing ── */
.pricing-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
}

.pricing-card.featured {
    background: linear-gradient(150deg, #1e1b4b, #312e81, #4338ca);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.32);
    transform: translateY(-4px);
}

/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.25s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
    border-color: rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

/* ── Store Badges ── */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-badge:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── Animations ── */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes growWidth {
    from {
        width: 0%;
    }

    to {
        width: var(--target);
    }
}

.grow-bar {
    animation: growWidth 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ── Mobile-first styles ── */
@media (max-width: 639px) {
    .hero-title-text {
        font-size: 2.3rem !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle-text {
        font-size: 1.85rem !important;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        font-size: 15px;
        padding: 14px 24px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .step-dot {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

/* ── Scrollbar hide ── */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ── Exam Pills ── */
.exam-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 100px;
    padding: 8px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.exam-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1.5px;
    /* Border thickness */
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
    pointer-events: none;
}

.exam-pill .icon-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.exam-pill span {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    transition: color 0.2s ease;
}

/* Hover States with Custom Colored Glows */
.exam-pill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px var(--glow-color, rgba(99, 102, 241, 0.12));
    border-color: transparent;
}

.exam-pill:hover::before {
    background: var(--border-gradient, linear-gradient(135deg, #4f46e5, #6366f1));
}

.exam-pill:hover .icon-container {
    transform: scale(1.1) rotate(8deg);
    background: var(--icon-hover-bg, #4f46e5) !important;
    color: #ffffff !important;
}

.exam-pill:hover span {
    color: var(--text-hover-color, #4f46e5);
}

/* ── Bilingual & Specialty badges ── */
.bilingual-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 1px solid rgba(254, 215, 170, 0.6);
    color: #c2410c;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.04);
}

/* ── Mockup Card ── */
.mockup-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06), 0 2px 10px rgba(0, 0, 0, 0.03);
    padding: 28px;
    overflow: hidden;
}

/* ── Hero Mockup Wrapper height on mobile ── */
.hero-mockup-wrapper {
    height: 480px;
}

@media (min-width: 1024px) {
    .hero-mockup-wrapper {
        height: 560px;
    }
}

/* ============================================================
   PREMIUM LIGHT GLASSMORPHISM THEME OVERRIDES
   ============================================================ */

.premium-light-theme {
    background-color: #faf5ff !important;
    background-image: linear-gradient(135deg, #f5f3ff 0%, #fafaf9 50%, #fae8ff 100%) !important;
    background-attachment: fixed !important;
    color: #1e293b !important;
}

/* ── Section Backgrounds — distinct alternating, no more all-transparent ── */
.premium-light-theme section.bg-white {
    background: #ffffff !important;
}

.premium-light-theme section.bg-slate-50 {
    background: #f1f5f9 !important;
}

/* ── Glassmorphic Cards ── */
.premium-light-theme .feature-card,
.premium-light-theme .step-card,
.premium-light-theme .testimonial-card,
.premium-light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.premium-light-theme .feature-card:hover,
.premium-light-theme .step-card:hover,
.premium-light-theme .testimonial-card:hover,
.premium-light-theme .pricing-card:hover {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    box-shadow: 0 20px 40px var(--glow-color, rgba(99, 102, 241, 0.06)) !important;
    transform: translateY(-4px) !important;
}

/* ── Premium Dark Navbar ── */
.premium-light-theme .premium-nav {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-light-theme .premium-nav.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.premium-light-theme .premium-nav-link {
    color: rgba(241, 245, 249, 0.75) !important;
}

.premium-light-theme .premium-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.premium-light-theme .premium-nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.premium-light-theme .premium-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: #818cf8;
    /* Indigo 400 */
    border-radius: 2px;
}

.premium-light-theme .premium-btn-login {
    color: rgba(241, 245, 249, 0.8) !important;
}

.premium-light-theme .premium-btn-login:hover {
    color: #ffffff !important;
}

.premium-light-theme .premium-lang-pill {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-light-theme .premium-lang-btn {
    color: rgba(241, 245, 249, 0.5) !important;
}

.premium-light-theme .premium-lang-btn.active {
    background: #4f46e5 !important;
    color: #ffffff !important;
}

/* ── FAQ Details Accordion ── */
.premium-light-theme details {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
}

.premium-light-theme details summary {
    color: #0f172a !important;
}

.premium-light-theme details div {
    color: #334155 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* ── Exam Badges & Pills ── */
.premium-light-theme .exam-badges-section {
    background: transparent !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.premium-light-theme .exam-pill {
    background: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
}

.premium-light-theme .exam-pill span {
    color: #475569 !important;
}

.premium-light-theme .exam-pill:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}

.premium-light-theme .exam-pill:hover span {
    color: var(--text-hover-color, #4f46e5) !important;
}

/* ── Stats Strip / Bar ── */
.premium-light-theme .stat-bar,
.premium-light-theme .bg-white.border-y.border-slate-100 {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    border-color: rgba(0, 0, 0, 0.04) !important;
}

.premium-light-theme .ticker-inner div,
.premium-light-theme .bg-white.border-y.border-slate-100 div {
    color: #475569 !important;
}

/* ── Mobile App Section Banner Card ── */
.premium-light-theme .bg-indigo-50.rounded-\[2rem\] {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    box-shadow: 0 20px 48px rgba(79, 70, 229, 0.04) !important;
}

.premium-light-theme .bg-indigo-50.rounded-\[2rem\] h2 {
    color: #0f172a !important;
}

/* ── Hero Mockup Dashboard ── */
.premium-light-theme .hero-mockup-wrapper>div {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08) !important;
}

/* ── Form & Input Overrides (Login / Register) ── */
.premium-light-theme .bg-gradient-to-br.from-primary-50.via-white.to-purple-50 {
    background: transparent !important;
}

.premium-light-theme .bg-white\/80 {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05) !important;
}

.premium-light-theme .bg-secondary-50\/50,
.premium-light-theme input[type="text"],
.premium-light-theme input[type="email"],
.premium-light-theme input[type="password"] {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #0f172a !important;
}

.premium-light-theme input[type="text"]:focus,
.premium-light-theme input[type="email"]:focus,
.premium-light-theme input[type="password"]:focus {
    background: #ffffff !important;
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1) !important;
}

.premium-light-theme .border-secondary-200,
.premium-light-theme .border-secondary-300 {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.premium-light-theme .bg-white.text-secondary-500,
.premium-light-theme span.px-3.bg-white {
    background: #fff5ee !important;
    color: #64748b !important;
}

.premium-light-theme .text-secondary-900 {
    color: #0f172a !important;
}

.premium-light-theme .text-secondary-700 {
    color: #334155 !important;
}

.premium-light-theme .text-secondary-500 {
    color: #64748b !important;
}

/* ── Button Secondary Overrides ── */
.premium-light-theme .btn-secondary {
    background: rgba(255, 255, 255, 0.6) !important;
    color: #374151 !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
}

.premium-light-theme .btn-secondary:hover {
    background: #ffffff !important;
    border-color: #4f46e5 !important;
    color: #4f46e5 !important;
    transform: translateY(-2px) !important;
}

/* ── Timeline Steps ── */
/* .premium-light-theme .step-dot {
    background: #ffffff !important;
    border-color: #ffffff !important;
} */

/* ── General Elements ── */
.premium-light-theme hr,
.premium-light-theme .border-slate-100,
.premium-light-theme .border-slate-200,
.premium-light-theme .border-indigo-100,
.premium-light-theme .border-blue-50,
.premium-light-theme .border-indigo-50 {
    border-color: rgba(0, 0, 0, 0.05) !important;
}


/* Global List Fix */
ol:not([class]),
ul:not([class]) {
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

ol:not([class]) {
    list-style-type: decimal;
}

ul:not([class]) {
    list-style-type: disc;
}

ol:not([class])>li,
ul:not([class])>li {
    margin-bottom: 0.5rem;
}


p {
    margin-bottom: 1rem;
}