@import "tailwindcss";

/* ── VARIABLES ── */
:root {
  --ff-display: var(--ff-display-next), 'Baloo 2', cursive;
  --ff-devanagari: var(--ff-devanagari-next), 'Tiro Devanagari Hindi', serif;
  --ff-body: var(--ff-body-next), 'Nunito', sans-serif;

  --saffron: #F4631E;
  --saffron-2: #FF8C4B;
  --saffron-pale: #FEF0E8;
  --saffron-mid: #FDDAC6;

  --teal: #0B8A6F;
  --teal-2: #12B08D;
  --teal-pale: #E4F6F1;
  --teal-mid: #8ED8C6;

  --gold: #F0A500;
  --gold-pale: #FEF6E0;

  --ink: #1C1A28;
  --ink-2: #3D3A52;
  --ink-3: #7B7892;
  --ink-4: #B8B6CC;

  --cream: #FDFCF8;
  --cream-2: #F7F5EE;
  --cream-3: #EEEBe2;
  --white: #FFFFFF;
  --border: #E8E5DC;
  --border-2: #D8D4C8;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;

  --sh-card: 0 2px 20px rgba(28, 26, 40, .07);
  --sh-lift: 0 8px 36px rgba(28, 26, 40, .13);
  --sh-float: 0 20px 60px rgba(28, 26, 40, .18);
}

/* ── BASE STYLES ── */
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 252, 248, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px, 4vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: var(--r-sm);
  object-fit: contain;
}

.nav-brand {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand span {
  color: var(--saffron);
}

.nav-brand-title {
  white-space: nowrap;
}

.nav-brand small {
  font-family: var(--ff-devanagari);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: .3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-pill {
  display: flex;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-pill button {
  padding: 5px 13px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}

.lang-pill button.on {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244, 99, 30, .35);
}

.nav-link {
  padding: 7px 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: all .2s;
}

.nav-link:hover {
  background: var(--cream-2);
  color: var(--saffron);
}

.btn-login {
  padding: 9px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition: all .25s;
  letter-spacing: .2px;
  cursor: pointer;
}

.btn-login:hover {
  background: var(--saffron);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244, 99, 30, .4);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--ink);
  font-size: 22px;
}

/* ── HERO ── */
.hero {
  padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 48px) 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  border: 1px solid var(--teal-mid);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--saffron);
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--saffron);
  border-radius: 2px;
  transform: scaleX(.9);
  transform-origin: left;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--sh-card);
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 13px 28px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(244, 99, 30, .35);
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 99, 30, .45);
}

.btn-hero-sec {
  padding: 13px 24px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border-2);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s;
  cursor: pointer;
}

.btn-hero-sec:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-2px);
}

.hero-logo-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-xl);
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(244, 99, 30, .2));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 auto clamp(32px, 5vw, 56px);
  max-width: 1280px;
  width: calc(100% - clamp(32px, 8vw, 96px));
}

.stat-cell {
  background: var(--white);
  padding: clamp(16px, 2vw, 24px) clamp(12px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .2s;
}

.stat-cell:hover {
  background: var(--saffron-pale);
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--saffron);
}

.stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--ink);
}

.section-title span {
  color: var(--saffron);
}

/* ── FILTERS ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 clamp(16px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.fchip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.fchip:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: var(--saffron-pale);
}

.fchip.on {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  box-shadow: 0 3px 12px rgba(244, 99, 30, .3);
}

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 5px 5px 5px 20px;
  box-shadow: var(--sh-card);
  transition: border-color .2s;
  max-width: 320px;
  width: 100%;
}

.search-bar:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(244, 99, 30, .1);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}

.search-bar input::placeholder {
  color: var(--ink-4);
}

.search-btn {
  padding: 9px 20px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.search-btn:hover {
  background: #d9531a;
}

/* ── CARDS GRID ── */
.cards-section {
  padding: 0 clamp(16px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-card);
  cursor: pointer;
  overflow: hidden;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--sh-lift);
  border-color: var(--saffron-mid);
}

.card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-thumb-bg {
  position: absolute;
  inset: 0;
  opacity: .12;
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(8px);
  transform: scale(1.2);
}

.card-thumb-icon {
  font-size: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .15));
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.b-pdf {
  background: #FEECEC;
  color: #C93030;
}

.b-ppt {
  background: #FEF0E6;
  color: #C26A00;
}

.b-video {
  background: #E6EDFF;
  color: #1844B8;
}

.b-youtube {
  background: #FFEBEB;
  color: #B80000;
}

.b-doc {
  background: #EBF8F6;
  color: #0B8A6F;
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.35;
}

.card-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

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

.card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
}

.card-btn {
  padding: 7px 16px;
  border-radius: 100px;
  border: none;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  transition: all .2s;
  flex-shrink: 0;
  cursor: pointer;
}

.card-btn:hover {
  background: var(--saffron);
  color: #fff;
  transform: scale(1.04);
}

/* ── LOAD MORE ── */
.load-more-wrap {
  text-align: center;
  padding: 0 0 clamp(40px, 6vw, 72px);
}

.btn-load {
  padding: 13px 40px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--border-2);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s;
  cursor: pointer;
}

.btn-load:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  box-shadow: var(--sh-card);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 48px) 0;
  margin-top: auto;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(32px, 5vw, 56px);
  align-items: center;
}

/* brand col */
.footer-logo-img {
  height: 48px;
  border-radius: var(--r-sm);
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand-p {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  max-width: 280px;
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--saffron);
}

/* ── VCARD ── */
.vcard {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--sh-float);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.vcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--saffron-pale) 0%, var(--teal-pale) 100%);
  opacity: .5;
  pointer-events: none;
}

.vcard-inner {
  position: relative;
  z-index: 1;
}

.vcard-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.vcard-photo {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(28, 26, 40, .18);
}

.vcard-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
}

.vcard-role {
  font-size: 12px;
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: .3px;
  margin-bottom: 5px;
}

.vcard-org {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}

.vcard-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.vcard-contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vcard-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vcard-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.vi-mail {
  background: var(--saffron-pale);
}

.vi-phone {
  background: var(--teal-pale);
}

.vi-loc {
  background: var(--gold-pale);
}

.vi-yt {
  background: #FFEBEB;
}

.vcard-contact-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
}

.vcard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.vcard-stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.vcard-stat-n {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--saffron);
}

.vcard-stat-l {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
}

.mini-graph {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-top: 10px;
  justify-content: center;
}

.mini-bar {
  border-radius: 3px 3px 0 0;
  background: var(--saffron);
  opacity: .7;
  transition: opacity .2s;
  flex: 1;
  max-width: 18px;
}

.mini-bar:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

/* ── CONTENT VIEW PAGE ── */
.content-wrap {
  flex: 1;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 72px);
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-3);
  background: none;
  border: none;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: color .2s;
  cursor: pointer;
}

.back-link:hover {
  color: var(--saffron);
}

.content-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.content-h1 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 28px;
}

.content-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.viewer-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--sh-card);
}

.viewer-topbar {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream-2);
  flex-wrap: wrap;
}

.viewer-filename {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(11, 138, 111, .3);
  cursor: pointer;
}

.btn-dl:hover {
  background: #097a61;
  transform: translateY(-1px);
}

.viewer-body {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #F8F7F3;
  padding: 40px 24px;
  text-align: center;
}

.viewer-body-icon {
  font-size: 68px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .12));
}

.viewer-body-label {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-2);
}

.viewer-body-sub {
  font-size: 14px;
  color: var(--ink-4);
  max-width: 300px;
  line-height: 1.55;
}

.desc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 20px;
}

.desc-card h2 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.desc-card p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
}

.desc-highlight {
  background: var(--teal-pale);
  border-color: var(--teal-mid);
}

.desc-highlight h2 {
  color: var(--teal);
}

.desc-highlight p {
  color: var(--teal);
}

/* ── LOGIN ── */
.login-scene {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 60px) clamp(16px, 4vw, 40px);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--saffron-pale) 0%, var(--cream) 70%);
  position: relative;
  min-height: 80vh;
}

.login-scene::before {
  content: 'अ आ इ ई उ ए ओ क ख ग';
  position: absolute;
  inset: 0;
  font-family: var(--ff-devanagari);
  font-size: clamp(40px, 8vw, 80px);
  color: var(--saffron);
  opacity: .04;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: clamp(8px, 3vw, 28px);
  flex-wrap: wrap;
  pointer-events: none;
  padding: 20px;
}

.login-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 5vw, 52px);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--sh-float);
  border: 1.5px solid var(--border);
  position: relative;
  z-index: 1;
  animation: slideUp .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-head {
  text-align: center;
  margin-bottom: 32px;
}

.login-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--saffron-pale);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.login-head h1 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}

.login-head p {
  font-size: 14px;
  color: var(--ink-3);
}

.f-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
  margin-bottom: 7px;
  letter-spacing: .2px;
}

.f-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: var(--cream-2);
  transition: all .2s;
  margin-bottom: 18px;
}

.f-input:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244, 99, 30, .1);
}

.btn-submit-login {
  width: 100%;
  padding: 14px;
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  transition: all .25s;
  letter-spacing: .2px;
  cursor: pointer;
}

.btn-submit-login:hover {
  background: #d9531a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 99, 30, .4);
}

.err-box {
  background: #FEF0F0;
  border: 1.5px solid #FCCFCF;
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #B02020;
  margin-bottom: 18px;
  display: none;
}

.err-box.show {
  display: block;
  animation: shake .4s;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.demo-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-3);
  background: var(--cream-2);
  border-radius: var(--r-md);
  padding: 12px;
}

.demo-hint strong {
  color: var(--teal);
}

/* ── UPLOAD ── */
.upload-banner {
  background: var(--teal-pale);
  border-bottom: 1px solid var(--teal-mid);
  padding: 10px clamp(16px, 4vw, 48px);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.upload-wrap {
  flex: 1;
  padding: clamp(28px, 4vw, 52px) clamp(16px, 4vw, 48px);
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}

.upload-wrap h1 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}

.upload-wrap > p {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.upload-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--sh-card);
}

.uf-row {
  margin-bottom: 22px;
}

.uf-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
  margin-bottom: 7px;
}

.uf-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 6px;
}

.uf-input, .uf-textarea, .uf-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: var(--cream-2);
  resize: none;
  transition: all .2s;
}

.uf-input:focus, .uf-textarea:focus, .uf-select:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244, 99, 30, .08);
}

.uf-textarea {
  min-height: 90px;
  line-height: 1.6;
}

.rich-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 10px;
  background: var(--cream-2);
  border: 2px solid var(--border);
  border-bottom: none;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

.rich-bar button {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  transition: all .15s;
  cursor: pointer;
}

.rich-bar button:hover {
  background: var(--saffron-pale);
  color: var(--saffron);
  border-color: var(--saffron-mid);
}

.rich-textarea {
  border-radius: 0 0 var(--r-md) var(--r-md) !important;
}

.file-drop {
  border: 2px dashed var(--border-2);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px) 24px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: all .2s;
}

.file-drop:hover {
  border-color: var(--saffron);
  background: var(--saffron-pale);
}

.file-drop-icon {
  font-size: 38px;
  margin-bottom: 10px;
}

.file-drop p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}

.file-drop span {
  font-size: 12px;
  color: var(--ink-4);
}

.or-sep {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink-4);
  letter-spacing: 1px;
  margin: 14px 0;
}

.locked-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.locked-field {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  background: var(--cream-2);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
}

.btn-pub {
  padding: 13px 36px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 800;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(11, 138, 111, .3);
  cursor: pointer;
}

.btn-pub:hover {
  background: #097a61;
  transform: translateY(-1px);
}

.btn-cancel-form {
  padding: 13px 24px;
  background: var(--white);
  color: var(--ink-2);
  border: 2px solid var(--border-2);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  transition: all .2s;
  cursor: pointer;
}

.btn-cancel-form:hover {
  border-color: var(--ink-2);
}

/* ── ABOUT ── */
.about-hero-section {
  padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 48px) 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: var(--r-2xl);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-float);
  border: 4px solid var(--white);
}

.about-info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--saffron-pale);
  color: var(--saffron);
  border: 1px solid var(--saffron-mid);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  margin-bottom: 14px;
}

.about-info h1 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}

.about-info-sub {
  font-family: var(--ff-devanagari);
  font-size: 15px;
  color: var(--teal);
  margin-bottom: 18px;
}

.about-bio {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.soc-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.soc-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background: var(--saffron-pale);
}

.about-body {
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-head {
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-head::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.exp-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s;
}

.exp-item:hover {
  box-shadow: var(--sh-card);
  border-color: var(--saffron-mid);
}

.exp-pill {
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 13px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}

.exp-sub {
  font-size: 13px;
  color: var(--ink-3);
}

.timeline {
  position: relative;
  padding-left: 28px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

.tl-item {
  position: relative;
  padding: 0 0 22px 18px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  border: 2.5px solid var(--cream);
  box-shadow: 0 0 0 2px var(--saffron-mid);
}

.tl-title {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}

.tl-sub {
  font-size: 13px;
  color: var(--ink-3);
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.pub-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: all .25s;
}

.pub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
  border-color: var(--saffron-mid);
}

.pub-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.pub-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
}

.pub-sub {
  font-size: 12px;
  color: var(--ink-3);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  pointer-events: none;
  max-width: calc(100vw - 48px);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo-img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .hero-sub {
    margin: 0 auto 28px;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }

  .footer-grid > .footer-brand {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .nav-brand {
    align-items: center;
    text-align: center;
  }

  .about-hero-section {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) {
  .nav-mobile-dropdown {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .search-bar {
    max-width: 100%;
    width: 100%;
  }

  .about-photo {
    margin: 0 auto;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .45s ease both;
}

.fade-up:nth-child(1) {
  animation-delay: .03s;
}

.fade-up:nth-child(2) {
  animation-delay: .07s;
}

.fade-up:nth-child(3) {
  animation-delay: .11s;
}

.fade-up:nth-child(4) {
  animation-delay: .15s;
}

.fade-up:nth-child(5) {
  animation-delay: .19s;
}

.fade-up:nth-child(6) {
  animation-delay: .23s;
}

.fade-up:nth-child(7) {
  animation-delay: .27s;
}

.fade-up:nth-child(8) {
  animation-delay: .31s;
}

.fade-up:nth-child(9) {
  animation-delay: .35s;
}

.fade-up:nth-child(10) {
  animation-delay: .39s;
}

.fade-up:nth-child(11) {
  animation-delay: .43s;
}

.fade-up:nth-child(12) {
  animation-delay: .47s;
}

/* SVG Icon Sizing Helpers for Lucide React */
.card-thumb-bg svg {
  width: 100px;
  height: 100px;
  display: inline-block;
}
.card-thumb-icon svg {
  width: 56px;
  height: 56px;
  display: inline-block;
}
.vcard-icon svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.pub-icon-box svg {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.login-icon-wrap svg {
  width: 28px;
  height: 28px;
  display: inline-block;
}
.file-drop-icon svg {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  display: inline-block;
}
.viewer-body-icon svg {
  width: 68px;
  height: 68px;
  display: inline-block;
}

/* Landscape vCard styling & centering */
.footer-center-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-center-card .footer-nav-title {
  margin-bottom: 20px;
  text-align: center;
}

.vcard-landscape {
  max-width: 800px;
  width: 100%;
  padding: 24px clamp(20px, 3vw, 32px);
}

.vcard-landscape-grid {
  display: grid;
  grid-template-columns: 1.1fr auto 1.3fr;
  gap: 28px;
  align-items: center;
}

.vcard-landscape-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-2);
}

.vcard-landscape-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vcard-landscape-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vcard-landscape-left .vcard-top {
  margin-bottom: 0;
}

.vcard-landscape-left .vcard-stats {
  margin-bottom: 0;
}

.vcard-landscape-right .vcard-contacts {
  margin-bottom: 0;
}

.vcard-landscape-right .mini-graph {
  margin-top: 0;
}

/* Footer bottom link */
.footer-adox-link {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s, text-decoration 0.2s;
}

.footer-adox-link:hover {
  color: var(--saffron-2);
  text-decoration: underline;
}

@media (max-width: 800px) {
  .vcard-landscape-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .vcard-landscape-divider {
    width: 100%;
    height: 1px;
  }
  
  .vcard-landscape-left {
    align-items: center;
  }

  .vcard-landscape-left .vcard-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .vcard-landscape-left .vcard-stats {
    width: 100%;
  }

  .vcard-landscape-right .vcard-row {
    justify-content: center;
  }
  
  .vcard-landscape-right .mini-graph {
    justify-content: center;
  }
}

/* ── MODERN ADMIN UPLOAD CARD STYLES ── */
.admin-dashboard-container {
  max-width: 890px;
  margin: 40px auto;
  padding: 0 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.admin-header-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.admin-header-subtitle {
  font-size: 14px;
  color: #666666;
  margin-top: 4px;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #E8E5DC;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.back-home-btn:hover {
  background-color: #FDFCF9;
  border-color: #D8D4C8;
}

.admin-form-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E5DC;
  border-radius: 20px;
  padding: clamp(20px, 4vw, 40px);
  box-shadow: 0 4px 24px rgba(28, 26, 40, 0.02);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .admin-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1C1A28;
}

.form-label-asterisk {
  color: var(--saffron);
  font-weight: 700;
  margin-left: 2px;
}

.form-label-sub {
  font-weight: 400;
  color: #888888;
  margin-left: 4px;
}

.form-input-text {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E8E5DC;
  border-radius: 10px;
  background-color: #FDFCFB;
  outline: none;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: #1C1A28;
  transition: all 0.2s;
}

.form-input-text::placeholder {
  color: #A09EB5;
}

.form-input-text:focus {
  border-color: var(--saffron);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(244, 99, 30, 0.06);
}

.rich-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background-color: #FDFCFB;
  border: 1px solid #E8E5DC;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.rich-btn {
  padding: 5px 10px;
  background-color: #FFFFFF;
  border: 1px solid #E8E5DC;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: #444444;
  cursor: pointer;
  transition: all 0.15s;
}

.rich-btn:hover {
  background-color: #FEF5F0;
  color: var(--saffron);
  border-color: var(--saffron-mid);
}

.rich-divider {
  width: 1px;
  height: 16px;
  background-color: #E8E5DC;
  margin: 0 4px;
}

.rich-textarea-input {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: 1px solid #E8E5DC;
  border-radius: 0 0 10px 10px;
  background-color: #FDFCFB;
  outline: none;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: #1C1A28;
  resize: vertical;
  line-height: 1.6;
  transition: all 0.2s;
}

.rich-textarea-input::placeholder {
  color: #A09EB5;
}

.rich-textarea-input:focus {
  border-color: var(--saffron);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(244, 99, 30, 0.06);
}

.drag-drop-zone {
  border: 1.5px dashed #FADED3;
  background-color: #FFFDFB;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.drag-drop-zone:hover {
  border-color: var(--saffron);
  background-color: #FFF9F6;
}

.drag-drop-folder-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}

.drag-drop-title {
  font-size: 15px;
  font-weight: 700;
  color: #1C1A28;
  margin: 0;
}

.drag-drop-subtitle {
  font-size: 12.5px;
  color: #7B7892;
  margin: 0;
}

.or-separator {
  position: relative;
  text-align: center;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
  margin: 28px 0;
}

.or-separator::before,
.or-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #E8E5DC;
}

.or-separator::before {
  left: 0;
}

.or-separator::after {
  right: 0;
}

.disabled-input-text {
  background-color: #F7F5EE !important;
  color: #7B7892;
  cursor: not-allowed;
}

.btn-publish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background-color: var(--saffron);
  color: #FFFFFF;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(244, 99, 30, 0.15);
}

.btn-publish:hover {
  background-color: #E25210;
  box-shadow: 0 4px 14px rgba(244, 99, 30, 0.3);
}

.btn-publish:disabled {
  background-color: #FDDAC6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Styling for visual list rendering in rich editor & content description card */
.rich-textarea-input ul,
.desc-card ul {
  list-style-type: disc !important;
  padding-left: 24px !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.rich-textarea-input ol,
.desc-card ol {
  list-style-type: decimal !important;
  padding-left: 24px !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.rich-textarea-input li,
.desc-card li {
  margin-bottom: 4px !important;
  display: list-item !important;
}

/* ── Expanded About Page Styles ── */
.about-quote-box {
  background: linear-gradient(135deg, var(--saffron-pale) 0%, var(--cream) 100%);
  border-left: 6px solid var(--saffron);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: var(--sh-card);
  text-align: center;
  position: relative;
}

.about-quote-text {
  font-family: var(--ff-devanagari), var(--ff-display);
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  color: var(--ink);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-quote-author {
  font-size: 14px;
  font-weight: 800;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.glance-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s;
}

.glance-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--sh-card);
  transform: translateY(-2px);
}

.glance-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glance-info {
  flex: 1;
}

.glance-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.glance-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.resp-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.resp-badge {
  background: var(--cream-2);
  border: 1.5px solid var(--border);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.resp-badge:hover {
  background: var(--teal-pale);
  border-color: var(--teal-mid);
  color: var(--teal);
  transform: translateY(-1px);
}

/* ── HOMEPAGE MARQUEE BANNER ── */
@keyframes marquee-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-scroll {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}

.marquee-scroll:hover {
  animation-play-state: paused;
}