/* ============ ROOT VARIABLES & GLOBALS ============ */
:root {
  --navy: #0B1640;
  --blue: #1D4ED8;
  --blue-light: #3457F0;
  --blue-dark: #1E3FC0;
  --grad: linear-gradient(135deg, #3457F0 0%, #233FC7 100%);
  --bg-soft: #EEF3FF;
  --ink: #111827;
  --ink-soft: #4B5563;
  --ink-faint: #8A93A6;
  --line: #E7EAF3;
  --card: #FFFFFF;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(17,24,57,.06);
  --shadow-lg: 0 18px 40px rgba(17,24,57,.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  fill: none;
}

/* ============ DESKTOP HEADER (TOPBAR) ============ */
.desktop-experience .topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.desktop-experience .topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-experience .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.desktop-experience .brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(52,87,240,.35);
}

.desktop-experience .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.desktop-experience .brand-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.2px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.desktop-experience .brand-name span {
  color: var(--blue-light);
}

.desktop-experience .brand-tag {
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ============ SEARCH BOX ============ */
.desktop-experience .search-box {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F5F7FC;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 6px 0 14px;
  height: 42px;
}

.desktop-experience .search-box svg {
  width: 18px;
  height: 18px;
  color: var(--ink-faint);
  flex-shrink: 0;
}

.desktop-experience .search-box input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: var(--ink);
}

.desktop-experience .search-box input::placeholder {
  color: var(--ink-faint);
}

.desktop-experience .search-btn {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.desktop-experience .search-btn:hover {
  opacity: .9;
}

.desktop-experience .search-btn svg {
  width: 15px;
  height: 15px;
}

/* ============ TOPBAR ACTIONS ============ */
.desktop-experience .topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.desktop-experience .top-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.desktop-experience .top-link svg {
  width: 19px;
  height: 19px;
  color: var(--blue-light);
}

.desktop-experience .login-btn {
  background: var(--grad);
  color: #fff;
  border-radius: 9px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 16px rgba(52,87,240,.3);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.desktop-experience .login-btn svg {
  width: 16px;
  height: 16px;
}

/* ============ NAVIGATION BAR ============ */
.desktop-experience .navbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.desktop-experience .navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
}

.desktop-experience .nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}

.desktop-experience .nav-item:hover {
  color: var(--blue-light);
  background: #F7F9FE;
}

.desktop-experience .nav-item.active {
  color: var(--blue-light);
  border-color: var(--blue-light);
  font-weight: 700;
}

.desktop-experience .nav-item.home-pill {
  background: var(--grad);
  color: #fff;
  border-radius: 8px;
  margin: 8px 4px 8px 0;
  border-bottom: none;
  padding: 9px 16px;
}

.desktop-experience .nav-item.home-pill:hover {
  color: #fff;
  opacity: .92;
  background: var(--grad);
}

.desktop-experience .nav-item svg {
  width: 15px;
  height: 15px;
}

/* ============ RESPONSIVE HIDING ============ */
/* Yeh class mobile device par desktop header ko hide kar degi */
@media (max-width: 768px) {
  .desktop-experience {
    display: none !important;
  }
}