/* ===================================
   PLAYSCHOOL COMPETITIVE ANALYSIS
   Premium Presentation Styles
   =================================== */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --bg-primary: #080816;
    --bg-secondary: #0e0e24;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.09);
    --bg-glass: rgba(255, 255, 255, 0.07);
    --border-glass: rgba(255, 255, 255, 0.12);
    --text-primary: #f5f5ff;
    --text-secondary: #b8b8d8;
    --text-muted: #7a7aa8;
    --accent-1: #4f8fff;    /* Bright Blue */
    --accent-2: #c850ff;    /* Vivid Purple */
    --accent-3: #ff4d8a;    /* Hot Pink */
    --accent-4: #00d4ff;    /* Neon Cyan */
    --accent-5: #00e676;    /* Bright Green */
    --accent-6: #ffab00;    /* Golden Orange */
    --accent-7: #ff6b35;    /* Bright Coral */
    --gradient-1: linear-gradient(135deg, #4f8fff, #c850ff);
    --gradient-2: linear-gradient(135deg, #c850ff, #ff4d8a);
    --gradient-3: linear-gradient(135deg, #00d4ff, #00e676);
    --gradient-4: linear-gradient(135deg, #ffab00, #ff4d8a);
    --gradient-5: linear-gradient(135deg, #ff6b35, #ffab00);
    --sidebar-width: 260px;
    --header-height: 0px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body.lang-hi {
    font-family: var(--font-hindi);
}

a {
    color: var(--accent-4);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--accent-2);
    text-decoration: underline;
}

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

/* ===================================
   SIDEBAR NAVIGATION
   =================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform var(--transition-med);
}

.sidebar-header {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.logo-mark {
    flex-shrink: 0;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.nav-links {
    flex: 1;
    overflow-y: auto;
    padding: 12px 8px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none !important;
    transition: all var(--transition-fast);
    margin-bottom: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
    text-decoration: none !important;
}

.nav-link.active {
    color: #fff;
    background: var(--gradient-1);
    box-shadow: 0 2px 12px rgba(79, 143, 255, 0.35);
}

.nav-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-glass);
}

.slide-counter {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Mobile Menu Toggle ---- */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ===================================
   MAIN SLIDES CONTAINER
   =================================== */
.slides-container {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.slide {
    min-height: 100vh;
    padding: 60px 48px;
    display: flex;
    align-items: flex-start;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* ---- Slide Navigation Controls ---- */
.slide-nav-controls {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 50;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-glass);
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.nav-arrow:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: scale(1.1);
}
.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===================================
   COVER SLIDE
   =================================== */
.slide-cover {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 30% 50%, rgba(79,143,255,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(200,80,255,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 80%, rgba(255,77,138,0.06) 0%, transparent 50%),
                var(--bg-primary);
    overflow: hidden;
}

.cover-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 500px; height: 500px;
    background: var(--accent-1);
    top: -200px; left: -100px;
    animation-delay: 0s;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--accent-2);
    bottom: -150px; right: -100px;
    animation-delay: -5s;
}
.shape-3 {
    width: 300px; height: 300px;
    background: var(--accent-3);
    top: 30%; right: 20%;
    animation-delay: -10s;
}
.shape-4 {
    width: 350px; height: 350px;
    background: var(--accent-4);
    bottom: 20%; left: 15%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05);}
    50% { transform: translate(-20px, 20px) scale(0.95);}
    75% { transform: translate(15px, 15px) scale(1.03);}
}

.cover-content {
    position: relative;
    z-index: 2;
}

.cover-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-4);
    margin-bottom: 32px;
}

.cover-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cover-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cover-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.meta-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.meta-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}
.meta-divider {
    width: 1px;
    height: 32px;
    background: var(--border-glass);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-med);
    box-shadow: 0 4px 24px rgba(79, 143, 255, 0.45);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79, 143, 255, 0.55);
}

/* ---- Animations ---- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* ===================================
   SLIDE HEADERS
   =================================== */
.slide-header {
    margin-bottom: 40px;
}

.slide-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.slide-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.7;
}

/* ===================================
   GLASS CARDS
   =================================== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-med);
    backdrop-filter: blur(8px);
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   STATS GRID
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
}
.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================
   INSIGHT CARDS
   =================================== */
.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.insight-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.insight-card ul {
    list-style: none;
    padding: 0;
}
.insight-card li {
    padding: 7px 0;
    padding-left: 22px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.insight-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-2);
    font-weight: 600;
}

/* ===================================
   DATA TABLES
   =================================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    margin-bottom: 16px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.data-table thead {
    background: rgba(79, 143, 255, 0.12);
}
.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--accent-4);
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-glass);
}
.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--text-secondary);
    vertical-align: top;
}
.data-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}
.data-table tbody tr:last-child td {
    border-bottom: none;
}
.data-table .highlight-row {
    background: rgba(79, 143, 255, 0.07) !important;
}

.table-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.badge-prem {
    background: rgba(200, 80, 255, 0.18);
    color: #d580ff;
    border: 1px solid rgba(200, 80, 255, 0.35);
}
.badge-mid {
    background: rgba(0, 212, 255, 0.15);
    color: #5ce6ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.badge-aff {
    background: rgba(0, 230, 118, 0.15);
    color: #66ffb3;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

/* ===================================
   PROFILE CARDS
   =================================== */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 20px;
}

.profile-card {
    padding: 0;
    overflow: hidden;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(79, 143, 255, 0.08);
    border-bottom: 1px solid var(--border-glass);
}

.profile-rank {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.profile-tagline {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.profile-body {
    padding: 16px 24px 20px;
}

.profile-row {
    display: flex;
    gap: 8px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.profile-row:last-child {
    border-bottom: none;
}
.profile-row .label {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 90px;
    flex-shrink: 0;
    font-size: 12px;
}
.profile-row span:last-child {
    color: var(--text-secondary);
}

/* ===================================
   FEE COMPARISON
   =================================== */
.comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-med);
}
.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tier-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier-premium .tier-header { background: linear-gradient(135deg, rgba(200,80,255,0.18), rgba(255,77,138,0.12)); }
.tier-mid .tier-header { background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(79,143,255,0.12)); }
.tier-affordable .tier-header { background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,212,255,0.1)); }

.tier-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.tier-premium .tier-badge { color: #d580ff; }
.tier-mid .tier-badge { color: #5ce6ff; }
.tier-affordable .tier-badge { color: #66ffb3; }

.tier-range {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.tier-list {
    list-style: none;
    padding: 16px 20px;
}
.tier-list li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.tier-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-2);
}

.tier-note {
    padding: 12px 20px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-glass);
    font-style: italic;
}

.compact-table th,
.compact-table td {
    font-size: 13px;
    padding: 10px 14px;
}

/* ===================================
   CURRICULUM INSIGHTS
   =================================== */
.curriculum-insights {
    margin-top: 24px;
}

/* ===================================
   FRANCHISE INSIGHTS
   =================================== */
.franchise-insights {
    margin-top: 24px;
}

/* ===================================
   BAREILLY MARKET GRID
   =================================== */
.bareilly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* ===================================
   RECOMMENDATIONS
   =================================== */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 24px;
}

.rec-card {
    padding: 0;
    overflow: hidden;
}

.rec-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.rec-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding: 24px 24px 0;
}

.rec-card .rec-icon {
    padding: 24px 24px 0;
    display: block;
}

.rec-body {
    padding: 0 24px 24px;
}

.rec-body ul {
    list-style: none;
    padding: 0;
}
.rec-body > ul > li {
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.rec-body > ul > li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-2);
    font-weight: 700;
    font-size: 16px;
}
.rec-body > ul > li > ul {
    margin-top: 6px;
}
.rec-body > ul > li > ul > li {
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
    font-size: 13px;
    color: var(--text-muted);
}
.rec-body > ul > li > ul > li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.highlight-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ---- Price Table ---- */
.price-table {
    margin: 12px 0;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.price {
    font-weight: 700;
    color: var(--accent-5);
}
.rec-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ---- Facility Grid ---- */
.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.facility-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}
.facility-item.must {
    background: rgba(16, 185, 129, 0.08);
    color: #6ee7b7;
}
.facility-item.nice {
    background: rgba(245, 158, 11, 0.08);
    color: #fcd34d;
}

/* ---- Comparison Mini ---- */
.comparison-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.compare-option {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
}
.compare-option h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.compare-option p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.compare-option ul {
    list-style: none;
    padding: 0;
}
.compare-option li {
    font-size: 13px;
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
    color: var(--text-muted);
}
.compare-option li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-2);
}

/* ===================================
   COMPETITIVE EDGE SLIDE
   =================================== */
.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.edge-card {
    position: relative;
    padding: 28px 24px 24px 24px;
    overflow: hidden;
}
.edge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.edge-card-featured {
    grid-column: 1 / -1;
    border-color: rgba(79, 143, 255, 0.35);
    background: rgba(79, 143, 255, 0.05);
}
.edge-card-featured::before {
    height: 4px;
    background: var(--gradient-4);
}

.edge-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
}

.edge-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.edge-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.edge-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.edge-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}
.edge-list li {
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.edge-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-5);
    font-size: 10px;
    top: 8px;
}

.edge-tag {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: #66ffb3;
}

/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.app-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}
.app-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(79, 143, 255, 0.35);
}
.app-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}
.app-feature strong {
    font-size: 13px;
    color: var(--text-primary);
}
.app-feature small {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Tie-up Model Flow */
.tieup-model {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}
.tieup-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}
.tieup-num {
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.tieup-step div {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.tieup-arrow {
    font-size: 18px;
    color: var(--accent-2);
    font-weight: 700;
    flex-shrink: 0;
}

/* Impact Summary */
.edge-impact {
    margin-top: 8px;
}
.edge-impact h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.impact-item {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}
.impact-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.impact-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .edge-grid {
        grid-template-columns: 1fr;
    }
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    .tieup-model {
        flex-direction: column;
    }
    .tieup-arrow {
        transform: rotate(90deg);
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   CONCLUSION SLIDE
   =================================== */
.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.takeaway-card {
    position: relative;
    padding-left: 80px;
}

.takeaway-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

.takeaway-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.takeaway-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Next Steps ---- */
.next-steps {
    margin-bottom: 32px;
}
.next-steps h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-item div {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 4px;
}

/* ---- Disclaimer ---- */
.final-cta {
    text-align: center;
    margin-top: 24px;
}
.disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .slides-container {
        margin-left: 0;
    }
    .slide {
        padding: 72px 16px 36px;
    }
    .slide-nav-controls {
        bottom: 12px;
        right: 12px;
    }
    .nav-arrow {
        width: 42px;
        height: 42px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insight-cards {
        grid-template-columns: 1fr;
    }
    .tier-cards {
        grid-template-columns: 1fr;
    }
    .comparison-mini {
        grid-template-columns: 1fr;
    }
    .facility-grid {
        grid-template-columns: 1fr;
    }
    .takeaways-grid {
        grid-template-columns: 1fr;
    }
    .bareilly-grid {
        grid-template-columns: 1fr;
    }
    .cover-meta {
        flex-direction: column;
        gap: 14px;
    }
    .meta-divider {
        display: none;
    }
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    .slide-title {
        font-size: clamp(24px, 6vw, 36px);
    }
    .slide-desc {
        font-size: 15px;
    }
    .cover-branding {
        flex-direction: column;
        gap: 8px;
    }
    .brand-separator {
        display: none;
    }
    .brand-role {
        font-size: 12px;
        text-align: center;
    }
    .data-table {
        font-size: 12px;
    }
    .data-table th {
        font-size: 10px;
        padding: 10px 8px;
    }
    .data-table td {
        padding: 8px;
    }
    .edge-card-featured {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 66px 12px 28px;
    }
    .stat-value {
        font-size: 22px;
    }
    .cover-title {
        font-size: 28px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card {
        padding: 16px 10px;
    }
    .profile-row .label {
        min-width: 70px;
    }
    .profile-row {
        font-size: 13px;
    }
    .table-wrapper {
        margin-left: -8px;
        margin-right: -8px;
        border-radius: var(--radius-md);
    }
    .edge-emoji {
        font-size: 26px;
    }
    .edge-card h3 {
        font-size: 16px;
    }
    .app-feature {
        padding: 10px;
    }
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .impact-num {
        font-size: 28px;
    }
    .cover-branding {
        margin-bottom: 20px;
    }
    .brand-logo {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .brand-text {
        font-size: 17px;
    }
}

/* ===================================
   LANGUAGE TOGGLE
   =================================== */
.lang-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 200;
    padding: 8px 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-hindi);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.lang-toggle:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: scale(1.05);
}

/* ===================================
   COVER BRANDING
   =================================== */
.cover-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}
.brand-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.brand-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary) !important;
}
.brand-separator {
    color: var(--text-muted);
    font-size: 18px;
    margin: 0 4px;
}
.brand-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===================================
   RESEARCH NOTE
   =================================== */
.research-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 32px 0;
    border-left: 4px solid var(--accent-6);
    background: rgba(245, 158, 11, 0.04) !important;
}
.research-note-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.research-note-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-6);
    margin-bottom: 8px;
}
.research-note-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.research-note-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.research-note-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.research-note-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-5);
    font-weight: 700;
}

/* ===================================
   FOOTER BRANDING
   =================================== */
.footer-brand {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}
.footer-brand-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.footer-logo {
    width: 36px;
    height: 36px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary) !important;
}
.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}
.footer-credit {
    font-size: 14px;
    color: var(--text-secondary);
}
.footer-role {
    font-size: 12px;
    color: var(--text-muted);
}
.footer-url {
    font-size: 13px;
    color: var(--accent-4) !important;
    text-decoration: none !important;
    font-weight: 600;
}
.footer-url:hover {
    color: var(--accent-2) !important;
}

.sidebar-brand {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .lang-toggle {
        top: 16px;
        right: 70px;
    }
    .research-note-list {
        grid-template-columns: 1fr;
    }
    .footer-brand-inner {
        flex-direction: column;
    }
    .footer-right {
        text-align: left;
    }
}

/* Print Styles */
@media print {
    .sidebar, .mobile-menu-toggle, .slide-nav-controls, .cover-cta, .lang-toggle {
        display: none !important;
    }
    .slides-container {
        margin-left: 0;
    }
    .slide {
        page-break-after: always;
        min-height: auto;
        padding: 40px 30px;
        border-bottom: none;
    }
    .glass-card {
        background: #f8f9fa !important;
        border: 1px solid #ddd !important;
    }
    body {
        background: white;
        color: #1a1a2e;
    }
    .text-primary, .slide-title, .profile-name, h3, h4 {
        color: #1a1a2e !important;
    }
    .text-secondary, .text-muted, p, li, td {
        color: #4a4a6a !important;
    }
}
