/* ===========================
   COLOR VARIABLES
   =========================== */
:root {
  --primary:         #2563eb;
  --primary-dark:    #1e40af;
  --primary-darker:  #1a3a8f;
  --primary-light:   #eff6ff;
  --primary-muted:   rgba(255,255,255,0.15);
  --primary-muted2:  rgba(255,255,255,0.25);

  --bg-main:         #ffffff;
  --bg-surface:      #f0f4ff;
  --bg-card:         #ffffff;

  --text-primary:    #111827;
  --text-secondary:  #4b5563;
  --text-muted:      #9ca3af;
  --text-white:      #ffffff;
  --text-white-soft: rgba(255,255,255,0.88);

  --border:          #e5e7eb;
  --border-blue:     #bfdbfe;

  --correct:         #16a34a;
  --wrong:           #dc2626;
  --warning:         #d97706;

  --shadow-sm:       0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:       0 4px 16px rgba(37,99,235,0.12);
  --shadow-lg:       0 8px 30px rgba(37,99,235,0.15);

  --header-top-h:    64px;
  --header-nav-h:    42px;
  --header-total:    106px;
}

/* DARK MODE */
[data-theme="dark"] {
  --bg-main:         #0f172a;
  --bg-surface:      #1e293b;
  --bg-card:         #1e293b;
  --text-primary:    #f1f5f9;
  --text-secondary:  #94a3b8;
  --text-muted:      #64748b;
  --border:          #334155;
  --border-blue:     #1e40af;
  --primary-light:   #1e293b;
  --shadow-sm:       0 1px 4px rgba(0,0,0,0.3);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg:       0 8px 30px rgba(0,0,0,0.4);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
html, body { background: var(--bg-main); }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  transition: background 0.3s, color 0.3s;
  padding-top: var(--header-total);
}

/* Pre-paint header area to avoid top flash before header.js injects markup */
body:not(.header-loaded)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-total);
  background:
    linear-gradient(
      to bottom,
      #1b2546 0,
      #1b2546 var(--header-top-h),
      #1e3a8a var(--header-top-h),
      #1e3a8a 100%
    );
  z-index: 998;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   TOP HEADER BAR
   =========================== */
  /* BRAND CONTAINER */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ICON */
.brand-logo img {
  width: 49px;
  height: 45px;
  border-radius: 12px;
}

/* TEXT BLOCK */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* LOGO TEXT */
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
/* ================================
   BRAND NAME — GLOBAL SYSTEM
   Change here = changes everywhere
================================= */

/* "Amar" part — white */
.brand-main {
  color: #ffffff;
  font-weight: 500;
}

/* "Porashona" part — gold gradient */
.brand-accent {
  background: linear-gradient(90deg, #bfdbfe, #93c5fd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

/* Full brand name wrapper */
.brand-name-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 0px;
}

/* Tagline below brand name */
.brand-tagline {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  margin-top: 2px;
}

/* ================================
   SIZE VARIANTS
================================= */

/* Large — for footer, hero */
.brand-name-text.brand-lg {
  font-size: 26px;
}

/* Small — for inner pages breadcrumb */
.brand-name-text.brand-sm {
  font-size: 16px;
}

/* Keep old classes working — point to new ones */
.logo-text { font-family: 'Poppins', sans-serif; }
.logo-main { color: #ffffff; font-weight: 500; }
.logo-accent {
  background: linear-gradient(90deg, #fcd34d, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}


.header-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-top-h);
  background: #1b2546;
  box-shadow: 0 1px 0 rgba(99,137,255,0.25), 0 4px 20px rgba(0,0,0,0.5);
}


.header-top-inner {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LEFT */
.ht-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-left: 0px;
  margin-left: 0px;
  flex: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 7px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--primary-muted); }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RIGHT */
.ht-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--primary-muted); }

/* Account */
.account-wrap { position: relative; }

.account-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 12px;
  background: var(--primary-muted);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.account-btn:hover { background: var(--primary-muted2); }
.account-label { font-size: 13px; }

/* Account Dropdown */
.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(290px, calc(100vw - 24px));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.985);
  transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.18s ease;
  z-index: 200;
}
.account-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.account-dropdown.opening {
  animation: accDropIn 0.18s ease-out;
}

@keyframes accDropIn{
  0% { transform: translateY(-6px) scale(0.985); }
  60% { transform: translateY(2px) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

.account-auth-state.is-hidden { display: none; }

.account-user-top{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px 14px 10px;
}

.account-avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.account-avatar-img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:none;
}

.account-avatar-fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.2px;
}

.account-user-meta{ min-width:0; }
.account-user-name{
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.2;
}
.account-user-email{
  font-size: 12px;
  color: var(--text-secondary);
  word-break: break-word;
}

.account-menu-items{
  display:flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
}
.dropdown-header {
  padding: 12px 14px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  border-radius: 12px;
  margin: 0 10px;
  width: calc(100% - 20px);
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.dropdown-item:hover { 
  background: var(--bg-surface); 
  border-color: rgba(37,99,235,0.35);
  transform: translateY(-1px);
}
.dropdown-item svg { color: var(--text-muted); flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.premium-item {
  color: var(--warning) !important;
  font-weight: 700 !important;
}
.premium-item svg { color: var(--warning) !important; }

.premium-item:disabled{
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.account-logout-item{
  border-color: rgba(255,90,111,0.25);
  background: rgba(255,90,111,0.08);
}
.account-logout-item:hover{
  border-color: rgba(255,90,111,0.40);
  background: rgba(255,90,111,0.12);
}

/* Account Login Modal */
.account-modal-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.account-modal-backdrop.open{ display:flex; }

.account-modal{
  width: min(520px, 100%);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px 18px 16px;
  animation: accountModalIn 0.16s ease-out;
}

@keyframes accountModalIn{
  from { transform: translateY(8px); opacity: 0.7; }
  to   { transform: translateY(0); opacity: 1; }
}

.account-modal-title-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.account-modal-title{
  font-size: 18px;
  font-weight: 900;
  color: var(--text-primary);
}

.account-modal-close{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  cursor:pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.account-modal-close:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.account-modal-body{
  margin-top: 14px;
}

.account-google-btn{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(58,162,255,0.45);
  background: linear-gradient(180deg, rgba(58,162,255,0.18), rgba(26,127,211,0.10));
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.1s ease, border-color 0.15s ease, background 0.15s ease;
}

.account-google-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(58,162,255,0.70);
}

.account-google-btn:disabled{
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}

.account-spinner{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(59,130,246,0.35);
  border-top-color: rgba(59,130,246,0.95);
  animation: account-spin 0.7s linear infinite;
}

@keyframes account-spin{
  to { transform: rotate(360deg); }
}

.account-login-error{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,90,111,0.35);
  background: rgba(255,90,111,0.10);
  color: rgba(255,215,221,0.98);
  font-size: 13.5px;
}

/* ===========================
   BOTTOM NAV BAR
   =========================== */
.header-nav {
  position: fixed;
  top: var(--header-top-h);
  left: 0; right: 0;
  z-index: 999;
  height: var(--header-nav-h);
  background: #1e3a8a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-nav-inner {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-white-soft);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  height: 32px;
}
.nav-link:hover { background: var(--primary-muted); color: #fff; }
.nav-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
}

/* More dropdown */
.nav-more-wrap { position: relative; margin-left: auto; }

.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-white-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  height: 32px;
}
.nav-more-btn:hover { background: var(--primary-muted); color: #fff; }

.chevron { transition: transform 0.2s; }
.nav-more-btn.open .chevron { transform: rotate(180deg); }

.more-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 200;
}
.more-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.more-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: background 0.15s;
}
.more-dropdown-item:hover { background: var(--bg-surface); }
.more-dropdown-item svg { color: var(--text-muted); flex-shrink: 0; }

.coming-soon {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ===========================
   MOBILE SLIDE MENU
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 290px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--primary);
  flex-shrink: 0;
}
.mobile-menu-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--primary-muted); }

.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.mobile-search svg { color: var(--text-muted); flex-shrink: 0; }
.mobile-search input {
  border: none; outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  width: 100%;
}

.mobile-menu-links { flex: 1; padding: 4px 0 16px; }

.mobile-link {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.15s;
}
.mobile-link:hover, .mobile-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-sub { background: var(--bg-surface); }
.mobile-sub-link {
  display: block;
  padding: 9px 20px 9px 36px;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.mobile-sub-link:hover { color: var(--primary); background: var(--primary-light); }

.mobile-menu-footer {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-login-btn, .mobile-register-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.mobile-login-btn {
  background: var(--bg-surface);
  color: var(--primary);
  border: 1.5px solid var(--border-blue);
}
.mobile-login-btn:hover { background: var(--primary-light); }
.mobile-register-btn {
  background: var(--primary);
  color: #fff;
}
.mobile-register-btn:hover { background: var(--primary-dark); }

/* ===========================
   OVERLAY
   =========================== */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
}
.overlay.show { display: block; }

/* ===========================
   MAIN CONTENT
   =========================== */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  body { padding-top: var(--header-top-h); }
  body:not(.header-loaded)::before { height: var(--header-top-h); }
  .hamburger { display: flex; }
  .brand-tagline { display: none; }
}

@media (max-width: 768px) {
  .ht-center { max-width: 100%; }
  .account-label { display: none; }
  .account-btn { padding: 7px; border-radius: 50%; }
  .brand-tagline { display: none; }
}

@media (max-width: 520px) {
  .header-top-inner { padding: 0 12px; gap: 10px; }
  .brand-name { font-size: 18px; }
  .brand-logo svg { width: 28px; height: 28px; }
  .search-btn { display: none; }
  .search-bar { border-radius: 8px; }
}
/* ==============================
   HERO SLIDER
================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: var(--primary);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slide */
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 40px;
  position: relative;
}

.slide-1 { background: linear-gradient(120deg, #1d4ed8 0%, #2563eb 60%, #3b82f6 100%); }
.slide-2 { background: linear-gradient(120deg, #0369a1 0%, #0284c7 60%, #0ea5e9 100%); }
.slide-3 { background: linear-gradient(120deg, #1e40af 0%, #2563eb 50%, #1d4ed8 100%); }

.slide-content {
  flex: 1;
  z-index: 2;
}

.slide-sub {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.slide-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.slide-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 22px;
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #ffffff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 7px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.slide-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.slide-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.slider-btn:hover { background: rgba(255,255,255,0.35); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
  padding: 0;
}
.dot.active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}

/* ==============================
   STATS BAR
================================= */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 32px;
  gap: 2px;
}

.stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ==============================
   COUNTDOWN SECTION
================================= */
.countdown-section {
  background: var(--bg-surface);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.countdown-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.countdown-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.countdown-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.countdown-hint {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
}

.add-exam-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.2s, transform 0.15s;
}
.add-exam-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Countdown Cards Grid */
.countdown-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Empty State */
.countdown-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 30px;
  color: var(--text-muted);
  text-align: center;
}
.countdown-empty p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}
.countdown-empty span {
  font-size: 13px;
}

/* Individual Countdown Card */
.countdown-card {
  position: relative;
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 200px;
  max-width: 220px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.countdown-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Subtle background pattern */
.countdown-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}

.card-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.card-remove:hover { background: rgba(255,255,255,0.35); }

.card-exam-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2px;
  padding-right: 24px;
  line-height: 1.3;
}

.card-exam-date {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  font-weight: 500;
}

.card-timer {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.timer-num {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  text-align: center;
}

.timer-label {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timer-sep {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  line-height: 1;
}

/* Card Colors - light/pastel tones */
.card-color-0 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.card-color-1 { background: linear-gradient(135deg, #10b981, #059669); }
.card-color-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.card-color-3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.card-color-4 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.card-color-5 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.card-color-6 { background: linear-gradient(135deg, #ec4899, #db2777); }
.card-color-7 { background: linear-gradient(135deg, #14b8a6, #0d9488); }

/* ==============================
   EXAM PICKER MODAL
================================= */
.exam-picker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exam-picker-overlay.open {
  display: flex;
}

.exam-picker {
  background: var(--bg-card);
  border-radius: 14px;
  width: 100%;
  max-width: 440px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
}

.picker-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.picker-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s;
}
.picker-close:hover { background: var(--bg-surface); }

.picker-sub {
  padding: 10px 20px 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.picker-list {
  padding: 8px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.picker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid transparent;
}
.picker-item:hover { background: var(--bg-surface); }
.picker-item.already-added {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.picker-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.picker-item-info { flex: 1; }

.picker-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.picker-item-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.picker-item-added {
  font-size: 11px;
  font-weight: 600;
  color: var(--correct);
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ==============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .hero-slider { height: 380px; }
  .slide { padding: 0 44px 0 20px; }
  .slide-title { font-size: 24px; }
  .slide-desc { font-size: 13px; display: none; }
  .slide-visual { display: none; }

  .stats-inner { gap: 0; overflow-x: auto; justify-content: flex-start; }
  .stat-item { padding: 12px 18px; }
  .stat-num { font-size: 17px; }

  .countdown-cards { gap: 10px; }
  .countdown-card { min-width: 160px; max-width: 180px; padding: 14px; }
  .timer-num { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-slider { height: 220px; }
  .slide-title { font-size: 20px; }
  .slide-btns { gap: 8px; }
  .btn-primary, .btn-outline { padding: 8px 14px; font-size: 13px; }
  .countdown-card { min-width: 145px; }
}
/* ==============================
   EXAMS SECTION
================================= */
.exams-section {
  padding: 48px 0 60px;
  background: var(--bg-main);
}

.exams-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.exams-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.exams-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.exams-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Search inside section */
.exams-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  min-width: 220px;
  transition: border-color 0.2s;
}
.exams-search:focus-within {
  border-color: var(--primary);
  background: var(--bg-card);
}
.exams-search svg { color: var(--text-muted); flex-shrink: 0; }
.exams-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  width: 100%;
}
.exams-search input::placeholder { color: var(--text-muted); }

/* ==============================
   CATEGORY TABS
================================= */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 2px;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cat-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.cat-tab.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(37,99,235,0.25);
}

.cat-tab-icon {
  font-size: 14px;
  line-height: 1;
}

/* ==============================
   EXAM CARDS GRID
================================= */
.exam-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ==============================
   SINGLE EXAM CARD
================================= */
.exam-card {
  position: relative;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 16px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  overflow: hidden;
  text-decoration: none;
}

/* Subtle top color bar */
.exam-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3.5px;
  border-radius: 14px 14px 0 0;
  transition: height 0.25s ease;
}

.exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.12);
  border-color: var(--border-blue);
}

.exam-card:hover::before {
  height: 5px;
}

/* Card icon circle */
.exam-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.exam-card:hover .exam-card-icon {
  transform: scale(1.08);
}

/* Card name */
.exam-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.1px;
}

/* Category badge */
.exam-card-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Popular tag */
.exam-card-popular {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  background: #fef3c7;
  color: #d97706;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ==============================
   CARD COLOR THEMES
   Each category gets its own color
================================= */

/* Engineering Entrance — Blue */
.card-engineering::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.card-engineering .exam-card-icon { background: #dbeafe; }
.card-engineering .exam-card-badge { background: #dbeafe; color: #1e40af; }

/* Medical Entrance — Pink */
.card-medical::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.card-medical .exam-card-icon { background: #fce7f3; }
.card-medical .exam-card-badge { background: #fce7f3; color: #9d174d; }

/* Board Exams — Green */
.card-school::before { background: linear-gradient(90deg, #10b981, #34d399); }
.card-school .exam-card-icon { background: #d1fae5; }
.card-school .exam-card-badge { background: #d1fae5; color: #065f46; }

/* University Entrance — Purple */
.card-university::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.card-university .exam-card-icon { background: #ede9fe; }
.card-university .exam-card-badge { background: #ede9fe; color: #5b21b6; }

/* WB Police — Red */
.card-wbpolice::before { background: linear-gradient(90deg, #ef4444, #f87171); }
.card-wbpolice .exam-card-icon { background: #fee2e2; }
.card-wbpolice .exam-card-badge { background: #fee2e2; color: #991b1b; }

/* WB Govt Jobs — Indigo */
.card-wbgov::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
.card-wbgov .exam-card-icon { background: #e0e7ff; }
.card-wbgov .exam-card-badge { background: #e0e7ff; color: #3730a3; }

/* Railway — Orange */
.card-railway::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.card-railway .exam-card-icon { background: #ffedd5; }
.card-railway .exam-card-badge { background: #ffedd5; color: #9a3412; }

/* SSC — Amber */
.card-ssc::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.card-ssc .exam-card-icon { background: #fef3c7; }
.card-ssc .exam-card-badge { background: #fef3c7; color: #92400e; }

/* Banking — Teal */
.card-banking::before { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.card-banking .exam-card-icon { background: #ccfbf1; }
.card-banking .exam-card-badge { background: #ccfbf1; color: #0f766e; }

/* Insurance — Cyan */
.card-insurance::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.card-insurance .exam-card-icon { background: #cffafe; }
.card-insurance .exam-card-badge { background: #cffafe; color: #0e7490; }

/* Post Office — Yellow */
.card-postoffice::before { background: linear-gradient(90deg, #eab308, #facc15); }
.card-postoffice .exam-card-icon { background: #fef9c3; }
.card-postoffice .exam-card-badge { background: #fef9c3; color: #854d0e; }

/* Defence — Slate */
.card-defence::before { background: linear-gradient(90deg, #475569, #64748b); }
.card-defence .exam-card-icon { background: #f1f5f9; }
.card-defence .exam-card-badge { background: #f1f5f9; color: #1e293b; }

/* Technical — Rose */
.card-technical::before { background: linear-gradient(90deg, #e11d48, #fb7185); }
.card-technical .exam-card-icon { background: #ffe4e6; }
.card-technical .exam-card-badge { background: #ffe4e6; color: #9f1239; }

/* ==============================
   NO RESULTS
================================= */
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 10px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}
.no-results p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}
.no-results span { font-size: 13px; }

/* ==============================
   RESPONSIVE
================================= */
@media (max-width: 1200px) {
  .exam-cards-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .exam-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .exams-header { flex-direction: column; align-items: flex-start; }
  .exams-search { width: 100%; min-width: unset; }
  .exam-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exams-title { font-size: 22px; }
  .category-tabs { gap: 6px; }
  .cat-tab { padding: 7px 13px; font-size: 12.5px; }
  .exam-card { padding: 18px 12px 14px; }
  .exam-card-icon { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
  .exam-card-name { font-size: 13px; }
}

@media (max-width: 380px) {
  .exam-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
/* ==============================
   WHY CHOOSE US — SUBTLE VERSION
================================= */
/* .why-section {
  padding: 48px 0 52px;
  background: var(--bg-main);
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* Heading — smaller, not competing */
/* .why-heading {
  text-align: center;
  margin-bottom: 32px;
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.why-highlight {
  color: var(--primary);
}

.why-subtitle {
  font-size: 13px;
  color: var(--text-muted);
} */

/* ==============================
   GRID — horizontal list style
================================= */
/* .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
} */

/* ==============================
   CARD — minimal, flat, small
================================= */
/* .why-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
} */

/* .why-card:hover {
  border-color: var(--border-blue);
  background: var(--primary-light);
} */

/* Small icon — not dominant */
/* .why-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
} */

/* Icon colors */
/* .why-green  { background: #d1fae5; color: #059669; }
.why-blue   { background: #dbeafe; color: #2563eb; }
.why-purple { background: #ede9fe; color: #7c3aed; }
.why-orange { background: #ffedd5; color: #ea580c; }
.why-teal   { background: #ccfbf1; color: #0d9488; }
.why-red    { background: #fee2e2; color: #dc2626; } */

/* Text */
/* .why-text h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
} */

/* .why-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
} */

/* ==============================
   RESPONSIVE
================================= */
/* @media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: repeat(1, 1fr); gap: 8px; }
  .why-title { font-size: 17px; }
  .why-section { padding: 36px 0 40px; }
} */
 /* ==============================
   WHY SECTION — Premium dark style
================================= */
.why-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1B4FBB 0%, #0F1B2D 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs like premium section */
.why-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.why-heading {
  text-align: center;
  margin-bottom: 36px;
}

.why-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fbbf24;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.why-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.why-highlight {
  color: #93c5fd;
}

.why-subtitle {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* Icon */
.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.12);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text */
.why-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-text p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-title { font-size: 20px; }
  .why-section { padding: 40px 0; }
}
/* ==============================
   PREMIUM SECTION
================================= */
.premium-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.premium-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.premium-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.premium-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* LEFT */
.premium-left { flex: 1; }

.premium-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbbf24;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.premium-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.premium-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 22px;
}

.premium-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 28px;
}

.pf-item {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.premium-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.premium-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #fbbf24;
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.premium-cta:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,191,36,0.35);
}

.premium-annual {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.premium-annual:hover { color: #ffffff; }

/* RIGHT — Preview Card */
.premium-right {
  flex-shrink: 0;
  width: 260px;
}

.premium-card-preview {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.preview-badge {
  font-size: 12px;
  font-weight: 700;
  color: #d97706;
  background: #fef3c7;
  padding: 3px 10px;
  border-radius: 20px;
}

.preview-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.preview-price small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.preview-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #374151;
  font-weight: 500;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.preview-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.preview-btn:hover { background: var(--primary-dark); }

.preview-note {
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
}

/* ==============================
   FOOTER
================================= */

/* ==============================
   FEEDBACK SECTION
================================= */
.fb-section {
  padding: 56px 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 60%, #1b4fbb 100%);
  position: relative;
  overflow: hidden;
}
.fb-section::before {
  content:''; position:absolute; top:-120px; right:-120px;
  width:380px; height:380px; border-radius:50%;
  background:rgba(255,255,255,0.03); pointer-events:none;
}
.fb-section::after {
  content:''; position:absolute; bottom:-80px; left:-80px;
  width:260px; height:260px; border-radius:50%;
  background:rgba(255,255,255,0.03); pointer-events:none;
}
.fb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.fb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.fb-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: #fbbf24;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 3px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
.fb-title {
  font-size: 24px; font-weight: 800;
  color: #fff; letter-spacing: -0.3px; line-height: 1.2;
}
.fb-title span { color: #93c5fd; }
.fb-subtitle { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 5px; }

.see-all-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.see-all-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Grid */
.fb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

/* Review card */
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s, transform 0.2s;
  animation: fbFadeUp 0.5s ease both;
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
@keyframes fbFadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
.review-card:nth-child(1) { animation-delay:0.05s; }
.review-card:nth-child(2) { animation-delay:0.12s; }
.review-card:nth-child(3) { animation-delay:0.19s; }
.review-card:nth-child(4) { animation-delay:0.26s; }
.review-card.pos-bl {
  grid-column: auto;
  grid-row: auto;
}
.rc-top { display:flex; align-items:center; gap:10px; }
.rc-avatar {
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:#fff; flex-shrink:0;
}
.av-b { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.av-g { background: linear-gradient(135deg,#10b981,#047857); }
.av-p { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.av-o { background: linear-gradient(135deg,#f59e0b,#b45309); }

.rc-info { flex:1; min-width:0; }
.rc-name { font-size:13px; font-weight:700; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rc-meta { font-size:11px; color:rgba(255,255,255,0.4); margin-top:1px; }
.rc-stars { display:flex; gap:1px; }
.s  { font-size:12px; color:#fbbf24; }
.s-e{ font-size:12px; color:rgba(255,255,255,0.15); }
.rc-text { font-size:12.5px; color:rgba(255,255,255,0.68); line-height:1.6; flex:1; }
.rc-bottom { display:flex; align-items:center; justify-content:space-between; }
.rc-exam-tag {
  font-size:11px; font-weight:600;
  padding:2px 9px; border-radius:20px;
  background:rgba(147,197,253,0.12); color:#93c5fd;
  border:1px solid rgba(147,197,253,0.2);
}
.rc-like-btn {
  display:flex; align-items:center; gap:5px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px; padding:4px 10px;
  font-size:12px; font-weight:600;
  color:rgba(255,255,255,0.5);
  cursor:pointer; font-family:inherit; transition:all 0.2s;
}
.rc-like-btn:hover { background:rgba(239,68,68,0.15); border-color:rgba(239,68,68,0.3); color:#f87171; }
.rc-like-btn.liked { background:rgba(239,68,68,0.15); border-color:rgba(239,68,68,0.35); color:#f87171; }
.heart { font-size:13px; transition:transform 0.2s; }
.rc-like-btn.liked .heart { transform:scale(1.25); }

/* Form card */
.form-card {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px;
  animation: fbFadeUp 0.5s ease 0.3s both;
}
.form-head { margin-bottom:16px; }
.form-head-title { font-size:15px; font-weight:700; color:#fff; margin-bottom:3px; }
.form-head-sub { font-size:12px; color:rgba(255,255,255,0.45); }
.star-row { display:flex; align-items:center; gap:4px; margin-bottom:10px; }
.star-row-label { font-size:12px; color:rgba(255,255,255,0.5); margin-right:6px; }
.sp { font-size:22px; cursor:pointer; color:rgba(255,255,255,0.18); transition:color 0.15s, transform 0.15s; user-select:none; line-height:1; }
.sp:hover, .sp.lit { color:#fbbf24; transform:scale(1.15); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group { margin-bottom:10px; }
.fi {
  width:100%; padding:9px 12px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.13);
  border-radius:8px; font-size:13px; color:#fff;
  font-family:inherit; outline:none;
  transition:border-color 0.2s, background 0.2s;
}
.fi::placeholder { color:rgba(255,255,255,0.22); }
.fi:focus { border-color:rgba(147,197,253,0.45); background:rgba(255,255,255,0.1); }
select.fi option { background:#1e3a8a; color:#fff; }
textarea.fi {
  resize: none;
  height: 60px;
  line-height: 1.5;
}
.form-footer { display:flex; align-items:center; justify-content:flex-end; gap:12px; margin-top:4px; }
.form-note { font-size:11.5px; color:rgba(255,255,255,0.35); }
.submit-btn {
  padding:9px 22px;
  background:#fbbf24; color:#1e3a8a;
  font-size:13px; font-weight:800;
  border-radius:8px; border:none;
  cursor:pointer; font-family:inherit;
  transition:background 0.2s, transform 0.15s;
}
.submit-btn:hover { background:#f59e0b; transform:translateY(-1px); }
.form-success { display:none; text-align:center; padding:16px; }
.succ-icon { font-size:36px; margin-bottom:10px; }
.succ-title { font-size:16px; font-weight:700; color:#fff; margin-bottom:5px; }
.succ-sub { font-size:12.5px; color:rgba(255,255,255,0.5); }

/* Modal */
.fb-modal-backdrop {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.7); z-index:9999;
  align-items:center; justify-content:center;
}
.fb-modal-backdrop.open { display:flex; }
.fb-modal-box {
  background:#1e3a8a;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px; padding:28px;
  width:min(540px,90vw); max-height:80vh;
  overflow-y:auto; position:relative;
}
.fb-modal-title { font-size:18px; font-weight:800; color:#fff; margin-bottom:18px; }
.fb-modal-close {
  position:absolute; top:16px; right:16px;
  background:rgba(255,255,255,0.1); border:none;
  border-radius:50%; width:30px; height:30px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:#fff; font-size:16px;
  transition:background 0.2s;
}
.fb-modal-close:hover { background:rgba(255,255,255,0.2); }
.fb-modal-cards { display:flex; flex-direction:column; gap:12px; }
.fb-modal-card {
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px; padding:14px;
}

/* Shake animation */
@keyframes fb-shake {
  0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)}
}
.fb-shake { animation:fb-shake 0.3s ease; }

/* Responsive */
@media (max-width: 900px) {
  .fb-grid { grid-template-columns: 1fr 1fr; }
  .form-card { grid-column: 1 / -1; }
  .review-card.pos-bl { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .fb-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fb-section { padding: 40px 0; }
  .fb-title { font-size: 20px; }
}
/* ==============================
   PREMIUM FOOTER — REPLACE OLD FOOTER CSS
   Add this at bottom of style.css
   Delete old footer CSS before adding
================================= */

.footer {
  background: linear-gradient(180deg, #0d1b3e 0%, #0a1128 100%);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.footer::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── TOP SECTION ── */
.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

/* ── BRAND COLUMN ── */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 22px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 8px;
}

.fsoc-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.fsoc-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Domain badge */
.footer-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}

/* ── LINKS AREA ── */
.footer-links-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Column title */
.footer-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.fcol-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Link list */
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s, transform 0.15s;
  line-height: 1;
}
.footer-link-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Coming soon badge in links */
.flink-badge {
  font-size: 9px;
  font-weight: 700;
  background: rgba(37,99,235,0.3);
  color: #93c5fd;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(37,99,235,0.3);
}

/* ── DIVIDER ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(37,99,235,0.3) 50%,
    rgba(255,255,255,0.08) 80%,
    transparent 100%);
}

/* ── BOTTOM SECTION ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.footer-copy-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

/* Trust badges */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-right { gap: 12px; }
}

@media (max-width: 520px) {
  .footer { padding: 40px 0 0; }
  .footer-links-area { grid-template-columns: 1fr 1fr; }
  .footer-trust-badge:last-child { display: none; }
}

@media (max-width: 380px) {
  .footer-links-area { grid-template-columns: 1fr; }
}
/* ============================================================
   ADD THIS TO THE BOTTOM OF YOUR style.css
   New styles for: improved slider, coming-soon banner,
   edit date modal, picker search, countdown cards update
============================================================ */

/* ── Slider Tag (badge above title) ──────────────────────── */
.slide-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

/* ── Slide Title Accent ───────────────────────────────────── */
.slide-title-accent {
  color: #ffd166;
  display: inline;
}

/* ── Slide Stats Row (Slide 1) ────────────────────────────── */
.slide-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0 20px;
}
.slide-stat { text-align: center; }
.slide-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.slide-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.slide-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.25);
}

/* ── Slide Feature List (Slide 2 & 3) ────────────────────── */
.slide-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 20px;
}
.slide-feat-item {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ── Slide Visual: Question Card (Slide 1) ───────────────── */
.slide-visual { position: relative; flex-shrink: 0; }
.slide-visual-1 { width: 280px; height: 200px; }

.sv-card {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: #1e293b;
}
.sv-card-main {
  width: 240px;
  position: relative;
  z-index: 2;
}
.sv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sv-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.sv-chip-blue { background: #dbeafe; color: #1d4ed8; }
.sv-qnum { font-size: 11px; color: #94a3b8; font-weight: 600; }
.sv-qtext {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sv-options { display: flex; flex-direction: column; gap: 5px; }
.sv-opt {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 500;
}
.sv-opt-correct {
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
}

.sv-card-float {
  position: absolute;
  font-size: 11px;
}
.sv-card-score {
  bottom: -10px;
  right: -20px;
  width: 110px;
  text-align: center;
  padding: 10px 12px;
  z-index: 3;
}
.sv-score-label { font-size: 10px; color: #64748b; margin-bottom: 2px; }
.sv-score-num { font-size: 22px; font-weight: 800; color: #2563eb; }
.sv-score-num span { font-size: 13px; }
.sv-score-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-top: 6px;
}
.sv-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 4px;
}

.sv-card-streak {
  top: -14px;
  right: -10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
  z-index: 3;
}

/* ── Slide Visual: Countdown Demo (Slide 2) ──────────────── */
.slide-visual-2 { width: 280px; }
.sv-countdown-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-cd-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 12px 16px;
}
.sv-cd-exam {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sv-cd-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sv-cd-box {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.sv-cd-num { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.sv-cd-unit { display: block; font-size: 9px; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; }
.sv-cd-sep { color: rgba(255,255,255,0.5); font-size: 18px; font-weight: 700; }
.sv-cd-wbjee { border-left: 3px solid #ffd166; }
.sv-cd-neet  { border-left: 3px solid #06d6a0; }

/* ── Slide Visual: Community Demo (Slide 3) ──────────────── */
.slide-visual-3 { width: 280px; }
.sv-community-demo { display: flex; flex-direction: column; gap: 10px; }
.sv-comm-card {
  background: rgba(255,255,255,0.97);
  border-radius: 12px;
  padding: 12px 14px;
  color: #1e293b;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.sv-comm-card-2 { opacity: 0.9; transform: translateX(16px); }
.sv-comm-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sv-comm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sv-av-1 { background: #3b82f6; }
.sv-av-2 { background: #8b5cf6; }
.sv-comm-name { font-size: 11px; font-weight: 700; color: #1e293b; display: block; }
.sv-comm-label { font-size: 10px; color: #64748b; display: block; }
.sv-comm-votes { margin-left: auto; font-size: 11px; font-weight: 700; color: #2563eb; }
.sv-comm-badge { margin-left: auto; font-size: 10px; background: #dcfce7; color: #166534; padding: 2px 7px; border-radius: 20px; font-weight: 700; }
.sv-comm-text { font-size: 11px; color: #475569; line-height: 1.4; }
.sv-comm-photo-hint { font-size: 10px; color: #3b82f6; margin-top: 6px; font-weight: 600; }

/* ── Coming Soon Banner ───────────────────────────────────── */
.coming-soon-banner {
  background: linear-gradient(90deg, #1e3a5f 0%, #1b4fbb 60%, #0f3460 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
  transform-origin: top;
}
.coming-soon-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: csbShimmer 3s infinite;
}
@keyframes csbShimmer {
  0%   { left: -60%; }
  100% { left: 130%; }
}
.csb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.csb-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.csb-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: csbPulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes csbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}
.csb-icon { font-size: 16px; }
.csb-text {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  flex: 1;
  line-height: 1.5;
}
.csb-text strong { color: #fff; }
.csb-text em { color: #ffd166; font-style: normal; }
.csb-cta {
  background: #ffd166;
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.csb-cta:hover { background: #ffbe0b; }
.csb-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  line-height: 1;
}
.csb-close:hover { color: #fff; }


/* ============================================================
   style.css — FIND this comment:
        .countdown-section {
   DELETE everything from .countdown-section { all the way
   down to the comment that says:  EXAM PICKER MODAL
   and delete the picker CSS too — stop deleting when you
   reach the next unrelated section after all picker styles.

   Easiest: in VS Code press Ctrl+F and search:
   ".countdown-section {"  → note the line number
   Then search "==============================" after that
   to find where the next section begins → delete between them.

   PASTE THIS entire block at that same spot:
============================================================ */

/* ── Section wrapper ── */
.countdown-section {
  background: var(--bg-surface);
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--border);
}
.countdown-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header row ── */
.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.countdown-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}
.countdown-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.countdown-hint {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
}
.add-exam-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}
.add-exam-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.add-exam-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Cards row ── */
.countdown-cards {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(100,100,100,0.2) transparent;
}
.countdown-cards::-webkit-scrollbar { height: 4px; }
.countdown-cards::-webkit-scrollbar-thumb { background: rgba(100,100,100,0.2); border-radius: 4px; }

/* ── Empty state ── */
.countdown-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 36px 20px;
  color: var(--text-muted);
  text-align: center;
}
.countdown-empty p { font-size: 15px; font-weight: 600; color: var(--text-secondary); margin: 0; }
.countdown-empty span { font-size: 13px; }
.empty-add-btn {
  margin-top: 6px;
  padding: 9px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.empty-add-btn:hover { background: var(--primary-dark); }

/* ── Individual Card ── */
.countdown-card {
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 14px;
  min-width: 220px;
  max-width: 240px;
  flex: 0 0 230px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.countdown-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* Decorative circles */
.countdown-card::before {
  content: '';
  position: absolute;
  right: -25px; top: -25px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.countdown-card::after {
  content: '';
  position: absolute;
  left: -15px; bottom: -15px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* ── Card top row: icon + name + buttons ── */
.card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.card-name-wrap {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.card-icon { font-size: 20px; flex-shrink: 0; line-height: 1.2; }
.card-exam-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  word-break: break-word;
}
.card-exam-cat {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 2px;
}
.card-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.card-edit-btn, .card-remove {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.card-edit-btn:hover { background: rgba(255,255,255,0.32); }
.card-remove:hover   { background: rgba(239,68,68,0.55); }

/* ── Date line ── */
.card-date-line {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-custom-tag {
  background: rgba(255,209,102,0.25);
  color: #ffd166;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  border: 1px solid rgba(255,209,102,0.4);
}
.card-tba-tag {
  color: #ffd166;
  font-weight: 700;
}

/* ── Timer ── */
.card-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.timer-num {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  padding: 8px 4px 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.timer-label {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.timer-sep {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ── No-date box ── */
.card-no-date {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.card-no-date p {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.card-no-date span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 8px;
}
.card-set-date-btn {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.card-set-date-btn:hover { background: rgba(255,255,255,0.3); }

/* ── Card colors ── */
.card-color-0 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.card-color-1 { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.card-color-2 { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.card-color-3 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.card-color-4 { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.card-color-5 { background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%); }
.card-color-6 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.card-color-7 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }

/* ── Overlay backdrop ── */
.cd-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.cd-overlay.open { display: flex; }

/* ── Modal box ── */
.cd-modal {
  background: var(--bg-card);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  animation: cdSlideUp 0.22s ease;
}
.cd-modal-sm { max-width: 400px; }
@keyframes cdSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Modal header ── */
.cd-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
  flex-shrink: 0;
}
.cd-modal-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cd-modal-title-row h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.cd-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.cd-close-btn:hover { background: var(--border); }

/* ── Picker search ── */
.cd-modal-search {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 16px 4px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 9px 13px;
  flex-shrink: 0;
}
[data-theme="dark"] .cd-modal-search { background: #0f172a; border-color: #2d3e55; }
.cd-modal-search svg { color: var(--text-muted); flex-shrink: 0; }
.cd-modal-search input {
  border: none;
  background: none;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  width: 100%;
  font-family: inherit;
}
.cd-modal-search input::placeholder { color: var(--text-muted); }

/* ── Picker list ── */
.cd-picker-list {
  padding: 8px 12px 16px;
  overflow-y: auto;
  flex: 1;
}
.cd-cat-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 12px 8px 5px;
  text-transform: uppercase;
}
.cd-picker-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid transparent;
}
.cd-picker-item:hover { background: var(--bg-surface); border-color: var(--border); }
[data-theme="dark"] .cd-picker-item:hover { background: #1a2535; }
.cd-picker-item.is-added {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.cd-picker-icon { font-size: 20px; flex-shrink: 0; }
.cd-picker-info { flex: 1; min-width: 0; }
.cd-picker-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: normal;
  word-break: break-word;
}
.cd-picker-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cd-picker-date.tba { color: #f59e0b; font-style: italic; }
.cd-picker-action { flex-shrink: 0; }
.cd-add-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cd-added-badge {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: #dcfce7;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
[data-theme="dark"] .cd-added-badge { background: #052e16; color: #34d399; }

/* ── Edit Date modal body ── */
.cd-modal-body { padding: 18px 20px 8px; }
.cd-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.cd-date-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-surface);
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.cd-date-input:focus { outline: none; border-color: var(--primary); }
[data-theme="dark"] .cd-date-input { background: #0f172a; color: #e2e8f0; border-color: #2d3e55; }
.cd-info-box {
  font-size: 12px;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 9px 12px;
  margin-top: 12px;
  line-height: 1.5;
}
[data-theme="dark"] .cd-info-box { background: #082f49; border-color: #0c4a6e; color: #7dd3fc; }

/* ── Modal footer ── */
.cd-modal-footer {
  display: flex;
  gap: 10px;
  padding: 12px 20px 18px;
  flex-shrink: 0;
}
.cd-btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.cd-btn-ghost:hover { color: #ef4444; border-color: #ef4444; }
.cd-btn-primary {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 9px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cd-btn-primary:hover { background: var(--primary-dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .countdown-card { min-width: 195px; max-width: 210px; flex: 0 0 200px; }
  .timer-num { font-size: 22px; padding: 6px 2px 4px; }
}
@media (max-width: 480px) {
  .countdown-card { min-width: 175px; max-width: 185px; flex: 0 0 180px; }
  .timer-num { font-size: 19px; }
}
/* ================================================================
   PASTE THIS at the very bottom of your style.css
   Fixes 3 issues:
   1. Card hover slides off white page → smooth lift only
   2. Dark black overlay on card body → removed
   3. Edit + Remove buttons overlapping → fixed layout
   4. Coming soon banner wrapping to next line → fixed
================================================================ */

/* ── FIX 1 & 2: Card hover — no more sliding off, no dark bg ── */
.countdown-card {
  transform: none !important;
  transition: box-shadow 0.25s ease !important;
  will-change: box-shadow;
}
.countdown-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25) !important;
}

/* Remove the dark pseudo-element overlays */
.countdown-card::before,
.countdown-card::after {
  display: none !important;
}

/* The dark background was coming from card-no-date — lighten it */
.card-no-date {
  background: rgba(0,0,0,0.12) !important;
}
.card-no-date p {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.95) !important;
  margin: 0 0 4px !important;
}
.card-no-date span {
  font-size: 11px !important;
  color: rgba(255,255,255,0.65) !important;
}

/* ── FIX 3: Edit + Remove buttons not overlapping ── */
.card-top-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 8px !important;
  position: relative !important;
  z-index: 2 !important;
}
.card-name-wrap {
  display: flex !important;
  align-items: flex-start !important;
  gap: 7px !important;
  flex: 1 !important;
  min-width: 0 !important;
  /* Make sure name area doesn't push into buttons */
  padding-right: 0 !important;
}
.card-actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 5px !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  /* Prevent any absolute positioning conflicts */
  position: static !important;
}
.card-edit-btn,
.card-remove {
  position: static !important;  /* remove any inherited absolute */
  width: 26px !important;
  height: 26px !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.95) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  border: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: background 0.2s !important;
  line-height: 1 !important;
}
.card-edit-btn:hover { background: rgba(255,255,255,0.35) !important; }
.card-remove:hover   { background: rgba(239,68,68,0.55) !important; }

/* ── FIX 4: Coming soon banner — keep everything one line ── */
.coming-soon-banner {
  padding: 11px 0 !important;
  white-space: nowrap; /* prevent wrapping at large screens */
}
.csb-inner {
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 44px 0 16px !important;
  overflow: hidden;
}
.csb-text {
  font-size: 12.5px !important;
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-width: 0 !important;
}
.csb-cta {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* On smaller screens allow wrap again so it's readable */
@media (max-width: 900px) {
  .coming-soon-banner { white-space: normal !important; }
  .csb-inner { flex-wrap: wrap !important; }
  .csb-text  { white-space: normal !important; overflow: visible !important; }
}