/* =========================================================
   NSEEB — Main Stylesheet
   Fonts: Playfair Display (headings) + Poppins (body)
   ========================================================= */

:root {
  --nseeb-purple: #6C4FE3;
  --nseeb-purple-dark: #3F2A8F;
  --nseeb-navy: #150E36;
  --nseeb-navy-2: #1B1442;
  --nseeb-blush: #FCE9E7;
  --nseeb-blush-2: #FDF1EF;
  --nseeb-gold: #F0A93C;
  --nseeb-green: #23A566;
  --nseeb-ink: #1B1B2E;
  --nseeb-muted: #6B6B7C;
  --nseeb-line: #E9E2E6;
  --nseeb-white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 30px rgba(21, 14, 54, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--nseeb-ink);
  background-color: var(--nseeb-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--nseeb-ink);
  letter-spacing: -0.01em;
}

p { color: var(--nseeb-muted); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

.text-purple { color: var(--nseeb-purple) !important; }
.text-gold   { color: var(--nseeb-gold) !important; }
.text-green  { color: var(--nseeb-green) !important; }
.bg-blush    { background-color: var(--nseeb-blush) !important; }
.bg-blush-2  { background-color: var(--nseeb-blush-2) !important; }
.bg-navy     { background-color: var(--nseeb-navy) !important; }
.bg-navy-2   { background-color: var(--nseeb-navy-2) !important; }
.bg-purple   { background-color: var(--nseeb-purple) !important; }

.section { padding: 5.5rem 0; }
@media (max-width: 767.98px) {
  .section { padding: 3.25rem 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--nseeb-purple);
  margin-bottom: .75rem;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--nseeb-purple);
  display: inline-block;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--nseeb-purple);
  margin: 1rem 0 1.5rem;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: var(--nseeb-purple);
  opacity: .35;
  max-width: 220px;
}

/* Buttons */
.btn-nseeb-primary {
  background-color: var(--nseeb-purple);
  border: 1px solid var(--nseeb-purple);
  color: #fff;
  font-weight: 500;
  padding: .7rem 1.6rem;
  border-radius: 8px;
  transition: all .2s ease;
}
.btn-nseeb-primary:hover { background-color: var(--nseeb-purple-dark); border-color: var(--nseeb-purple-dark); color: #fff; }

.btn-nseeb-outline {
  background-color: transparent;
  border: 1px solid var(--nseeb-gold);
  color: var(--nseeb-gold);
  font-weight: 500;
  padding: .7rem 1.6rem;
  border-radius: 8px;
  transition: all .2s ease;
}
.btn-nseeb-outline:hover { background-color: var(--nseeb-gold); color: #fff; }

.btn-nseeb-gold {
  background-color: var(--nseeb-gold);
  border: 1px solid var(--nseeb-gold);
  color: #fff;
  font-weight: 500;
  padding: .6rem 1.4rem;
  border-radius: 8px;
  transition: all .2s ease;
}
.btn-nseeb-gold:hover { background-color: #d9911f; border-color: #d9911f; color: #fff; }

.btn-nseeb-light {
  background-color: #fff;
  border: 1px solid var(--nseeb-line);
  color: var(--nseeb-ink);
  font-weight: 500;
  padding: .65rem 1.4rem;
  border-radius: 8px;
}

/* ===================== NAVBAR ===================== */
.nseeb-navbar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1030;
}
.nseeb-navbar.is-static { position: relative; top: 0; }

.nseeb-navbar .navbar-inner {
  background: rgba(21, 14, 54, 0.45);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: .5rem .5rem .5rem 1.75rem;
}
.nseeb-navbar .navbar-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .03em;
}
.nseeb-navbar .nav-link {
  color: rgba(255,255,255,0.9);
  font-size: .93rem;
  font-weight: 400;
  padding: .5rem .85rem !important;
}
.nseeb-navbar .nav-link:hover,
.nseeb-navbar .nav-link.active { color: var(--nseeb-gold); }

.nseeb-navbar .btn-signup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 40px;
  padding: .5rem 1.2rem;
  font-size: .9rem;
  white-space: nowrap;
}

/* The nav now carries 9 links + lang switcher + sign-up button — that no
   longer fits the original spacing on laptop/desktop widths below ~1500px,
   so it wraps the rounded pill onto a second line. Tighten spacing
   progressively as the viewport shrinks, instead of wrapping. */
@media (min-width: 992px) and (max-width: 1499.98px) {
  .nseeb-navbar .navbar-inner { padding-left: 1.1rem; padding-right: .4rem; }
  .nseeb-navbar .navbar-brand { font-size: 1.15rem; }
  .nseeb-navbar .navbar-nav { flex-wrap: nowrap; }
  .nseeb-navbar .nav-link { font-size: .82rem; padding: .5rem .55rem !important; white-space: nowrap; }
  .nseeb-navbar .btn-signup { padding: .45rem .9rem; font-size: .82rem; }
  .nseeb-navbar .btn-lang-toggle { padding: .4rem .65rem; font-size: .82rem; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nseeb-navbar .navbar-brand { font-size: 1rem; }
  .nseeb-navbar .nav-link { font-size: .74rem; padding: .5rem .4rem !important; }
  .nseeb-navbar .btn-signup span,
  .nseeb-navbar .btn-signup { padding: .4rem .7rem; font-size: .74rem; }
}

/* Static (non-hero) navbar variant used across inner pages — same transparent-over-image treatment */
.page-topbar {
  background: linear-gradient(120deg, #241A4D 0%, #3A2864 45%, #5B3F72 100%);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.page-topbar::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(240,169,60,0.18), transparent 40%),
                     radial-gradient(circle at 80% 10%, rgba(108,79,227,0.35), transparent 45%);
}

/* ===================== HOME HERO ===================== */
.hero-home {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(20,13,45,.55) 0%, rgba(20,13,45,.45) 40%, rgba(10,7,25,.85) 100%),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding-top: 110px;
}
.hero-home h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
.hero-home p.lead { color: rgba(255,255,255,0.85); max-width: 640px; margin-inline: auto; }

.hero-search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.hero-search-card label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--nseeb-muted);
  font-weight: 600;
  margin-bottom: .3rem;
}
.hero-search-card select,
.hero-search-card input {
  border: 1px solid var(--nseeb-line);
  background: #F7F5FA;
  border-radius: 8px;
}
.hero-search-btn {
  background: #E14A4A;
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== INNER PAGE HERO / BREADCRUMB ===================== */
.page-hero {
  background-color: var(--nseeb-blush);
  padding: 6rem 0 2.25rem;
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .35rem; }
.page-hero .breadcrumb-nseeb { color: var(--nseeb-muted); font-size: .85rem; }
.page-hero .breadcrumb-nseeb a { color: var(--nseeb-muted); }
.page-hero .breadcrumb-nseeb a:hover { color: var(--nseeb-purple); }
.page-hero hr { border-top: 1px solid var(--nseeb-line); opacity: 1; margin-top: 2rem; }

/* ===================== CARDS ===================== */
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: #EFEAFB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nseeb-purple);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.feature-card h5, .feature-card h6 { margin: .9rem 0 .4rem; }
.feature-card p { font-size: .9rem; margin-bottom: 0; }

.list-row {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  height: 100%;
}
.list-row .icon-badge { width: 38px; height: 38px; font-size: 1rem; }
.list-row span.label { font-weight: 500; font-size: .93rem; }

.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.step-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--nseeb-purple);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.3rem;
}

/* Standalone "How It Works" page: left-aligned step cards, numbered,
   uniform size, purple highlight on hover (same language as .services-grid). */
.how-it-works-grid .step-card {
  transition: background .2s ease, color .2s ease;
  min-height: 100%;
}
.how-it-works-grid .step-icon { margin: 0 0 1.1rem; }
.how-it-works-grid .step-number {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(108, 79, 227, .18);
}
.how-it-works-grid .step-card:hover {
  background: var(--nseeb-purple);
  color: #fff;
}
.how-it-works-grid .step-card:hover .step-icon { background: rgba(255,255,255,.18); }
.how-it-works-grid .step-card:hover .step-number { color: rgba(255,255,255,.35); }
.how-it-works-grid .step-card:hover p { color: rgba(255,255,255,.85); }

.service-tile {
  border-radius: var(--radius-md);
  background: #F3F0FA;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform .2s ease, background .2s ease;
}
.service-tile .icon-badge { margin: 0 auto 1rem; background: #fff; }
.service-tile.is-active {
  background: var(--nseeb-purple);
  color: #fff;
}
.service-tile.is-active .icon-badge { background: rgba(255,255,255,.18); color: #fff; }
.service-tile.is-active h6 { color: #fff; }
.service-tile:hover { transform: translateY(-4px); }
.service-tile h6 { font-size: .95rem; margin-top: .25rem; margin-bottom: 0; }

/* Our Services grid: the old design permanently highlighted one card
   (.is-active) — that color now shows on hover for any card instead. */
.services-grid .service-tile:hover {
  background: var(--nseeb-purple);
  color: #fff;
}
.services-grid .service-tile:hover .icon-badge { background: rgba(255,255,255,.18); color: #fff; }
.services-grid .service-tile:hover h6 { color: #fff; }
/* Reserve 2 lines of title height so every card matches, whether its title
   wraps or not (Bootstrap rows only stretch within a single row, not across
   the two rows of 4 cards this grid uses). */
.services-grid .service-tile h6 {
  min-height: 2.6em;
  display: flex;
  align-items: center;
}

.offer-strip {
  background: var(--nseeb-navy);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.offer-strip .tag { color: var(--nseeb-gold); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: .85rem .85rem 1.1rem;
  height: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(21, 14, 54, .14);
}
.product-card img { border-radius: 10px; width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .35s ease; }
.product-card:hover img { transform: scale(1.06); }
.product-card .price del { color: #b7b2c2; font-weight: 400; margin-right: .35rem; }
.product-card .price span.now { color: var(--nseeb-gold); font-weight: 600; }

.vendor-card img { border-radius: 10px 10px 0 0; width: 100%; height: 170px; object-fit: cover; }
.vendor-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); height: 100%; }
.vendor-card .body { padding: 1rem 1.1rem 1.25rem; }
.vendor-card .cat { color: var(--nseeb-gold); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.testimonial-card {
  background: #EDE7FA;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  height: 100%;
}
.testimonial-card p.quote { color: var(--nseeb-ink); font-style: italic; font-size: .93rem; }
.testimonial-card .avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }

.blog-card img { border-radius: 10px; width: 100%; height: 170px; object-fit: cover; }
.blog-card h6 { margin-top: .9rem; }
.blog-card p { font-size: .87rem; }
.blog-card .read-more { color: var(--nseeb-purple); font-weight: 500; font-size: .88rem; }

.advantage-card {
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  height: 100%;
  transition: background .2s ease, color .2s ease;
}
.advantage-card:hover { background: var(--nseeb-green); color: #fff; }
.advantage-card:hover .icon-badge { background: rgba(255,255,255,.2); color: #fff; }
.advantage-card:hover h6,
.advantage-card:hover p { color: #fff; }
.advantage-card h6 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; }

.value-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; height: 100%; }

.promise-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}
.promise-card .icon-badge { background: var(--nseeb-purple); color: #fff; border-radius: 10px; }

.faq-item {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.1rem;
  align-items: center;
}
.faq-num {
  background: #EFEAFB;
  color: var(--nseeb-purple);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.1rem;
  border-radius: 10px;
  min-width: 90px;
  height: 78px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item h6 { margin-bottom: .3rem; }
.faq-item p { margin: 0; font-size: .9rem; }

.privacy-row {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .85rem;
}

.shield-art {
  position: relative;
  border: 1px solid var(--nseeb-purple);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  background: #fff;
}

/* ===================== CTA / DOWNLOAD ===================== */
.cta-dark {
  background: var(--nseeb-navy);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3.5rem 2rem;
  text-align: center;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--nseeb-navy);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
}
.site-footer h6 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .95rem; }
.site-footer .footer-logo { font-family: var(--font-heading); font-style: italic; font-size: 1.9rem; color: #fff; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--nseeb-gold); }
.site-footer .social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.site-footer input.form-control {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.site-footer input.form-control::placeholder { color: rgba(255,255,255,.5); }
.site-footer select.form-select {
  background-color: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.footer-bottom { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ===================== MISC ===================== */
.badge-pill-soft {
  background: #EFEAFB;
  color: var(--nseeb-purple);
  border-radius: 40px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.filter-sidebar {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}
.filter-sidebar h6 { font-size: 1rem; margin-bottom: 1rem; }
.filter-sidebar .cat-group { margin-bottom: 1.1rem; }
.filter-sidebar .cat-title { font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.filter-sidebar .cat-sub { font-size: .85rem; color: var(--nseeb-muted); display: block; padding: .25rem 0 .25rem 1.6rem; }
.filter-sidebar .cat-sub.active { color: var(--nseeb-ink); font-weight: 600; }

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem;
  height: 100%;
}
.contact-direct-card {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  color: #fff;
}
.contact-direct-card .icon-badge { background: var(--nseeb-purple); color: #fff; margin-bottom: .9rem; }

.form-label-sm { font-size: .85rem; font-weight: 500; margin-bottom: .3rem; }

.vision-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3rem 2rem;
}
.vision-box { background: var(--nseeb-purple); border-radius: var(--radius-md); padding: 1.75rem; color: #fff; height: 100%; }
.vision-box .icon-badge { background: rgba(255,255,255,.15); color: #fff; margin-bottom: 1rem; }
.vision-box strong.label { color: var(--nseeb-gold); font-family: var(--font-heading); font-size: 1.2rem; display: block; margin-bottom: .5rem; }

.about-photo-stack { position: relative; }
.about-photo-stack .stat-badge {
  position: absolute; top: -14px; right: -10px;
  background: #fff; border-radius: 50%;
  width: 92px; height: 92px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--nseeb-green);
}
.about-photo-stack .stat-badge strong { font-size: 1.2rem; color: var(--nseeb-ink); line-height: 1; }
.about-photo-stack .stat-badge span { font-size: .6rem; color: var(--nseeb-muted); }

/* ===================== USER DASHBOARD ===================== */
.dash-shell {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}
.dash-shell-header { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--nseeb-line); margin-bottom: 1.5rem; }
.dash-shell-header-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--nseeb-blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--nseeb-purple);
  overflow: hidden; flex-shrink: 0;
}
.dash-shell-header-icon img { width: 100%; height: 100%; object-fit: cover; }
.dash-shell-welcome { color: var(--nseeb-muted); font-size: .9rem; display: block; }
.dash-shell-name { color: var(--nseeb-purple); font-family: var(--font-heading); font-weight: 700; margin: 0; }

.dash-sidebar { background: var(--nseeb-blush-2); border-radius: var(--radius-md); padding: 1rem .5rem; }
.dash-sidebar a {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem; border-radius: 8px;
  color: var(--nseeb-ink); font-weight: 500; font-size: .93rem;
  text-decoration: none; margin-bottom: .15rem;
  transition: background .15s ease, color .15s ease;
}
.dash-sidebar a i { font-size: 1rem; width: 20px; text-align: center; }
.dash-sidebar a:hover { background: rgba(108, 79, 227, .08); color: var(--nseeb-purple); }
.dash-sidebar a.active { color: var(--nseeb-purple); font-weight: 700; background: rgba(108, 79, 227, .1); }
.dash-sidebar hr { border-color: var(--nseeb-line); margin: .6rem .5rem; }

.dash-stat-card {
  background: var(--nseeb-navy);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  color: #fff;
  height: 100%;
}
.dash-stat-card .dash-stat-icon {
  width: 52px; height: 52px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.dash-stat-card h3 { font-size: 1.8rem; font-weight: 700; margin: 0 0 .15rem; color: #fff; }
.dash-stat-card h6 { font-size: .85rem; font-weight: 400; margin: 0; opacity: .85; }

@media (max-width: 991.98px) {
  .dash-sidebar { margin-bottom: 1.5rem; }
}

@media (max-width: 767.98px) {
  .nseeb-navbar { top: 12px; }
  .nseeb-navbar .navbar-inner { border-radius: 20px; padding: .6rem 1rem; }
  .page-hero { padding-top: 5.5rem; }
  .dash-shell { padding: 1.25rem; }
}
