/* ═══════════════════════════════════════════════════════
   VARIABLES & RESET  —  LIGHT / PROJECTOR THEME
════════════════════════════════════════════════════════ */
:root {
  --bg:        #f2f6f3;
  --surface:   #ffffff;
  --surface2:  #eaf2ec;
  --card:      #ffffff;
  --border:    rgba(30,100,60,0.15);
  --gold:      #8a6500;
  --gold-lt:   #a67c00;
  --gold-dim:  rgba(138,101,0,0.08);
  --green:     #1a6038;
  --green-lt:  #237a4a;
  --green-dim: rgba(26,96,56,0.09);
  --text:      #142018;
  --text-muted:#3d6650;
  --text-dim:  #80aa92;
  --grape:     #5b21b6;
  --grape-dark:#4c1d95;
  --olive:     #3d6e0e;
  --olive-dark:#2d5209;
  --honey:     #92400e;
  --honey-lt:  #b45309;
  --r:         14px;
  --r-sm:      9px;
  --shadow:    0 2px 16px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* ═══════════════════════════════════════════════════════
   PROGRESS BAR
════════════════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; right: 0;
  height: 4px;
  background: linear-gradient(to left, var(--gold-lt), var(--green-lt));
  width: 10%;
  z-index: 100;
  transition: width 0.4s ease;
  border-radius: 0 0 0 4px;
}

/* ═══════════════════════════════════════════════════════
   PRESENTATION & SLIDES
════════════════════════════════════════════════════════ */
.presentation {
  width: 100%;
  height: calc(100vh - 70px);
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 30px 44px 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.slide.exit-left {
  opacity: 0;
  transform: translateX(60px);
}

/* ═══════════════════════════════════════════════════════
   SLIDE HEADER
════════════════════════════════════════════════════════ */
.slide-header {
  text-align: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1.5px solid rgba(26,96,56,0.2);
  color: var(--green);
  padding: 5px 18px;
  border-radius: 99px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.slide-title {
  font-size: clamp(1.5rem, 2.8vw, 2.0rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.slide-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   SLIDE 1 — COVER
════════════════════════════════════════════════════════ */
.slide--cover {
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffffff;
  overflow: hidden;
}

.cover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cover-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,96,56,0.12) 0%, transparent 70%);
  top: -160px; right: -140px;
  animation: float1 9s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(138,101,0,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: float2 11s ease-in-out infinite;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,96,56,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,28px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.12)} }

.cover-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,96,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,96,56,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}

.cover-logos {
  position: absolute;
  top: 20px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: fadeDown 0.8s ease both;
}

.logo-box:last-child { animation-delay: 0.1s; }

.logo-img-wrap {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 2.5px solid rgba(26,96,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.logo-img-wrap:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(26,96,56,0.18);
}

.real-logo {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.logo-label {
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 820px;
  padding: 130px 24px 80px;
}

.cover-tag {
  background: rgba(26,96,56,0.07);
  border: 1.5px solid rgba(26,96,56,0.2);
  color: var(--green);
  padding: 5px 20px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  animation: fadeUp 0.7s 0.75s ease both;
}

.cover-title {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  animation: fadeUp 0.7s 0.55s ease both;
}

.cover-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  animation: fadeUp 0.7s 0.45s ease both;
}

.divider-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to left, transparent, rgba(26,96,56,0.4));
}
.divider-line:last-child {
  background: linear-gradient(to right, transparent, rgba(26,96,56,0.4));
}
.divider-wheat { font-size: 1.7rem; }

.cover-orgs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: fadeUp 0.7s 0.15s ease both;
  text-align: center;
}

.org-line {
  font-size: 1.08rem;
  color: var(--text-muted);
}
.org-line--main {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--green);
}

.cover-dedication {
  background: rgba(138,101,0,0.06);
  border: 1.5px solid rgba(138,101,0,0.2);
  border-radius: var(--r);
  padding: 10px 28px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.ded-label { font-size: 0.82rem; color: var(--text-muted); display: block; margin-bottom: 2px; }
.ded-title { font-size: 1.05rem; font-weight: 700; color: var(--gold-lt); }

.cover-bottom-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 40px;
  background: rgba(26,96,56,0.05);
  border-top: 1.5px solid rgba(26,96,56,0.12);
  font-size: 0.88rem;
  color: var(--text-dim);
}
.strip-dot { color: var(--green); font-size: 0.45rem; }

/* ═══════════════════════════════════════════════════════
   SLIDE 2 — OVERVIEW
════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.stat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  animation: fadeUp 0.55s var(--delay, 0ms) ease both;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26,96,56,0.12);
}

.stat-icon-wrap { font-size: 3rem; margin-bottom: 10px; }

.stat-number {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.stat-sub { font-size: 0.86rem; color: var(--text-muted); }

.overview-desc {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 13px 18px;
  font-size: 1.03rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.two-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex-shrink: 0;
}

.sector-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.sector-card:hover { transform: translateY(-3px); }
.sector-icon { font-size: 2.7rem; margin-bottom: 7px; display: block; }
.sector-title { font-size: 1.16rem; font-weight: 800; color: var(--green); margin-bottom: 5px; }
.sector-card p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   DATA LAYOUT
════════════════════════════════════════════════════════ */
.data-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.table-wrap {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.data-table th {
  background: var(--green);
  color: #ffffff;
  padding: 10px 12px;
  font-weight: 700;
  text-align: right;
  font-size: 1.15rem;
}

.data-table th:first-child { border-radius: 0 6px 0 0; }
.data-table th:last-child  { border-radius: 6px 0 0 0; }

.data-table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(26,96,56,0.08);
  color: var(--text);
  vertical-align: middle;
}

.data-table tbody tr:nth-child(even) td { background: rgba(26,96,56,0.03); }
.data-table tbody tr:hover td { background: rgba(26,96,56,0.07); }
.data-table tbody tr:last-child td { border-bottom: none; }

.td-icon { font-size: 1rem; margin-left: 4px; }

.table-note {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

.chart-box {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
}
.chart-box canvas { max-height: 290px; }

/* ═══════════════════════════════════════════════════════
   FRUITS SLIDE
════════════════════════════════════════════════════════ */
.slide--fruits .fruits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.fruit-cards-col { display: flex; flex-direction: column; gap: 12px; }

.fruit-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  flex: 1;
  box-shadow: var(--shadow);
}

.fruit-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fruit-emoji { font-size: 2.5rem; }
.fruit-name  { font-size: 1.28rem; font-weight: 800; color: var(--text); }

.fbar-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fbar-label { font-size: 0.89rem; color: var(--text-muted); white-space: nowrap; }
.fbar-track {
  height: 9px;
  background: rgba(26,96,56,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.fbar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1.2s ease;
}
.fbar-val { font-size: 0.88rem; color: var(--green); font-weight: 700; white-space: nowrap; }

.chart-box--fruits { min-height: 200px; }

/* ═══════════════════════════════════════════════════════
   NURSERY SLIDE
════════════════════════════════════════════════════════ */
.slide--nursery { justify-content: flex-start; }

.nursery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  flex: 1;
}

.nursery-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.nursery-ring {
  width: 190px; height: 190px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0%, var(--green-lt) 60%, var(--gold-lt) 100%);
  padding: 5px;
  box-shadow: 0 0 36px rgba(26,96,56,0.18);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.nursery-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite reverse;
}

.nursery-big-num { font-size: 2.3rem; font-weight: 800; color: var(--green); }
.nursery-unit    { font-size: 1.15rem; color: var(--text-muted); }

.nursery-types {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.ntype {
  background: var(--green-dim);
  border: 1.5px solid rgba(26,96,56,0.2);
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.93rem;
  color: var(--green);
  font-weight: 600;
}

.nursery-import {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  box-shadow: var(--shadow);
}

.import-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--green);
}
.import-icon { font-size: 2.1rem; }
.nursery-import p { font-size: 0.99rem; color: var(--text-muted); line-height: 1.75; }

.import-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.flag-chip {
  background: rgba(138,101,0,0.07);
  border: 1.5px solid rgba(138,101,0,0.18);
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   ANIMAL SLIDE
════════════════════════════════════════════════════════ */
.slide--animal { justify-content: flex-start; }

.animal-scroll {
  flex: 1;
  overflow: auto;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.data-table--animal { font-size: 0.93rem; }

/* ═══════════════════════════════════════════════════════
   DUAL CHARTS
════════════════════════════════════════════════════════ */
.dual-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.chart-box--half {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.chart-title {
  font-size: 0.99rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 6px;
}

.chart-box--half canvas { max-height: 230px; }

/* ═══════════════════════════════════════════════════════
   HONEY SLIDE
════════════════════════════════════════════════════════ */
.slide--honey { justify-content: flex-start; }

.honey-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.honey-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
}

.honey-stat-card {
  flex: 1;
  max-width: 200px;
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.honey-stat-card:hover { transform: translateY(-4px); }

.hs-yellow { background: #fffbeb; border-color: rgba(180,83,9,0.2); }
.hs-amber  { background: #fef3c7; border-color: rgba(180,83,9,0.25); }
.hs-brown  { background: #fde68a22; border-color: rgba(146,64,14,0.2); }

.hs-icon { font-size: 2.5rem; margin-bottom: 7px; display: block; }
.hs-val  { font-size: 1.75rem; font-weight: 800; color: var(--honey); display: block; margin-bottom: 4px; }
.hs-lbl  { font-size: 0.91rem; color: var(--text-muted); }

.honey-arrow { font-size: 1.28rem; color: rgba(146,64,14,0.3); flex-shrink: 0; }

.chart-box--honey { flex: 1; min-height: 200px; }
.chart-box--honey canvas { max-height: 230px; }

/* ═══════════════════════════════════════════════════════
   SERVICES SLIDE
════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex: 1;
}

.service-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.55s var(--sd, 0ms) ease both;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,96,56,0.35);
  box-shadow: 0 10px 26px rgba(26,96,56,0.1);
}

.svc-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1.5px solid rgba(26,96,56,0.25);
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-ico  { font-size: 2.5rem; }
.svc-name { font-size: 1.18rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.svc-sub  { font-size: 0.86rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   CLOSING SLIDE
════════════════════════════════════════════════════════ */
.slide--closing {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.closing-bg { position: absolute; inset: 0; }
.closing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.c-orb1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(26,96,56,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.c-orb2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(138,101,0,0.09) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.closing-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 700px;
}

.closing-icon { font-size: 4rem; animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

.closing-title {
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
}

.closing-sub { font-size: 1.22rem; color: var(--text-muted); margin-top: -8px; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.sum-item {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sum-lbl { font-size: 0.86rem; color: var(--text-muted); }
.sum-val  { font-size: 0.92rem; font-weight: 800; color: var(--green); }

.closing-footer {
  border-top: 1.5px solid var(--border);
  padding-top: 14px;
  width: 100%;
}
.closing-footer p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════════════════════════════════
   SLIDE 11 — THANK YOU
════════════════════════════════════════════════════════ */
.slide--thankyou {
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.ty-bg { position: absolute; inset: 0; z-index: 0; }

.ty-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ty-orb1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,96,56,0.1) 0%, transparent 70%);
  top: -160px; right: -140px;
  animation: float1 9s ease-in-out infinite;
}
.ty-orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(138,101,0,0.08) 0%, transparent 70%);
  bottom: -120px; left: -120px;
  animation: float2 11s ease-in-out infinite;
}
.ty-orb3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(26,96,56,0.07) 0%, transparent 70%);
  top: 50%; left: 30%;
  animation: float3 7s ease-in-out infinite;
}

.ty-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,96,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,96,56,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}

.ty-logos {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 56px;
  z-index: 2;
  animation: fadeDown 0.8s ease both;
}

.ty-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(26,96,56,0.18);
  padding: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  transition: transform 0.3s;
}
.ty-logo:hover { transform: scale(1.08) rotate(3deg); }

.ty-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 660px;
  padding: 140px 24px 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.ty-icon { font-size: 4.5rem; animation: pulse 2.5s ease-in-out infinite; }

.ty-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ty-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 280px;
}

.ty-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to left, transparent, rgba(26,96,56,0.35));
}
.ty-line:last-child {
  background: linear-gradient(to right, transparent, rgba(26,96,56,0.35));
}
.ty-diamond { color: var(--green); font-size: 0.65rem; }

.ty-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ty-question-box {
  background: var(--green-dim);
  border: 1.5px solid rgba(26,96,56,0.22);
  border-radius: var(--r);
  padding: 18px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 18px rgba(26,96,56,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ty-question-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,96,56,0.14);
}

.ty-q-icon { font-size: 2.1rem; }
.ty-q-text { font-size: 1.6rem; font-weight: 800; color: var(--green); }
.ty-q-sub  { font-size: 0.99rem; color: var(--text-muted); }

.ty-orgs { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.ty-org-main { font-size: 1.16rem; font-weight: 800; color: var(--green); }
.ty-org      { font-size: 0.96rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════
   NAV BAR
════════════════════════════════════════════════════════ */
.nav-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1.5px solid rgba(26,96,56,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 14px;
  z-index: 50;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nav-btn:hover:not(:disabled) {
  background: var(--green-dim);
  color: var(--green);
  border-color: rgba(26,96,56,0.3);
}
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.nav-btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.nav-btn--primary:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  color: #fff;
}

.nav-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26,96,56,0.15);
  border: 1.5px solid rgba(26,96,56,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.nav-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.3);
}
.nav-dot:hover:not(.active) {
  background: rgba(26,96,56,0.25);
  border-color: var(--green-lt);
}

.slide-counter {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.22rem;
  color: var(--text-muted);
  min-width: 55px;
  justify-content: center;
}
.counter-sep { color: var(--text-dim); }
#currentSlide { color: var(--green); font-weight: 800; }

.kbd-hint {
  position: fixed;
  bottom: 74px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.67rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.kbd-hint.hidden { opacity: 0; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,96,56,0.3); border-radius: 99px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .slide { padding: 18px 14px 14px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .data-layout,
  .slide--fruits .fruits-layout,
  .nursery-content,
  .dual-charts,
  .summary-grid { grid-template-columns: 1fr; }
  .two-sectors { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .cover-title { font-size: 1.6rem; }
  .honey-stats-row { flex-direction: column; align-items: stretch; }
  .honey-arrow { transform: rotate(90deg); }
.cover-logos { top: 14px; left: 14px; }
  .logo-img-wrap { width: 60px; height: 60px; }
  .real-logo { width: 54px; height: 54px; }
  .nav-bar { padding: 0 10px; }
  .nav-btn span { display: none; }
  .kbd-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════
   AGENDA SLIDE (Slide 2)
════════════════════════════════════════════════════════ */
.slide--agenda { justify-content: flex-start; }

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  flex: 1;
  align-content: start;
}

.agenda-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.55s var(--ad, 0ms) ease both;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.agenda-item:hover {
  transform: translateY(-3px);
  border-color: rgba(26,96,56,0.35);
  box-shadow: 0 8px 24px rgba(26,96,56,0.1);
}

.ag-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ag-text {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   FULL-WIDTH DATA LAYOUT (Summer/Winter crops)
════════════════════════════════════════════════════════ */
.data-layout--full {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.table-wrap--scroll {
  overflow-y: auto;
  max-height: 100%;
}

.total-row td {
  background: rgba(26,96,56,0.07) !important;
  border-top: 2px solid rgba(26,96,56,0.25) !important;
  font-weight: 700;
  color: var(--green) !important;
}

.chart-box--summer,
.chart-box--winter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.chart-box--summer canvas,
.chart-box--winter canvas {
  max-height: 100%;
  flex: 1;
}

@media (max-width: 768px) {
  .agenda-grid { grid-template-columns: 1fr; }
  .data-layout--full { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   TALL CHART (summer/winter table slides)
════════════════════════════════════════════════════════ */
.chart-box--tall {
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
}
.chart-box--tall canvas {
  flex: 1;
  max-height: 100%;
  width: 100% !important;
}

/* ═══════════════════════════════════════════════════════
   TABLE: tighter on scroll slides
════════════════════════════════════════════════════════ */
.table-wrap--scroll .data-table td,
.table-wrap--scroll .data-table th {
  padding: 7px 10px;
}

/* ═══════════════════════════════════════════════════════
   SUMMARY GRID: 3-column on closing
════════════════════════════════════════════════════════ */
.summary-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ═══════════════════════════════════════════════════════
   SLIDE SUBTITLE STRONG
════════════════════════════════════════════════════════ */
.slide-subtitle strong {
  color: var(--green);
  font-weight: 800;
}

/* ═══ NEW SLIDE BADGE highlight ═══ */
.slide--new .slide-badge {
  background: rgba(26,96,56,0.14);
  border-color: rgba(26,96,56,0.35);
  font-weight: 800;
}

/* ═══ Tall chart for summer/winter table slides ═══ */
.chart-box--tall {
  flex-direction: column;
  align-items: stretch;
}
.chart-box--tall canvas {
  flex: 1;
  max-height: 100%;
  width: 100% !important;
}

/* ═══ Tighter table rows on scroll slides ═══ */
.table-wrap--scroll .data-table td,
.table-wrap--scroll .data-table th { padding: 7px 10px; }

/* ═══ Full-width data layout ═══ */
.data-layout--full {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.table-wrap--scroll { overflow-y: auto; max-height: 100%; }

.total-row td {
  background: rgba(26,96,56,0.07) !important;
  border-top: 2px solid rgba(26,96,56,0.25) !important;
  font-weight: 700;
  color: var(--green) !important;
}

.slide-subtitle strong { color: var(--green); font-weight: 800; }

@media (max-width: 768px) {
  .data-layout--full { grid-template-columns: 1fr; }
}

/* ═══ AGENDA EXPANDED ITEMS + SUB-LIST ═══ */
.agenda-item--expanded {
  align-items: flex-start;
  padding: 16px 18px;
  height: auto;
}

.agenda-item--expanded .ag-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ag-sub-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.ag-sub {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-dim);
  border: 1.5px solid rgba(26,96,56,0.2);
  color: var(--green);
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}