:root {
  --orange: #ea881d;
  --green: #3a7d24;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ─────────────────────────────────────
       LANGUAGE SYSTEM
       Add lang="en" or lang="fr" to <html>
       .lang-en and .lang-fr blocks toggle
    ───────────────────────────────────── */
html[lang="en"] .lang-fr {
  display: none !important;
}

html[lang="fr"] .lang-en {
  display: none !important;
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-nav .nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: #2d2d2d;
  padding: .45rem .85rem !important;
  transition: color .2s;
}

.navbar-nav .nav-link:hover {
  color: var(--orange);
}

.navbar-nav .nav-link.active {
  color: var(--orange);
  font-weight: 600;
}

.btn-register-nav {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  font-size: .88rem;
  padding: .42rem 1.25rem !important;
  border-radius: 6px;
  transition: background .2s, transform .15s;
}

.btn-register-nav:hover {
  background: #d07418;
  transform: translateY(-1px);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn {
  padding: 4px 12px;
  cursor: pointer;
  color: #555;
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.lang-btn.active {
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
}

.lang-divider {
  color: #ccc;
  font-size: .75rem;
  pointer-events: none;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ea881d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/banner/bg_hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1rem;
  max-width: 1200px;
  animation: fadeUp .8s ease both;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.hero-content h1 {
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero-meta {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-hero:hover {
  background: #d07418;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 136, 29, .4);
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .7;
}

.scroll-hint span {
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 1.4s infinite;
}

/* ── PARTNERS STRIP ── */
.partners-strip {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 2.5rem 0;
}

.partners-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
}

/* ── BACKGROUND & RATIONALE ── */
.bgr-section {
  display: flex;
  min-height: 620px;
}

.bgr-content {
  flex: 0 0 52%;
  padding: 3rem 3.5rem 5rem 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f0f0f0;
}

.bgr-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: .65rem;
  margin-bottom: 1rem;
}

.bgr-content h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.bgr-content p {
  font-size: .9rem;
  color: #4a4a4a;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.bgr-content p strong {
  color: var(--green);
  font-weight: 600;
}

.bgr-stats {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.bgr-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .9rem 1.1rem;
  background: #f5faf2;
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  flex: 1;
  min-width: 100px;
}

.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: .68rem;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bgr-image {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.bgr-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: .8rem 1rem 1rem;
    margin-top: .4rem;
    border-top: 1px solid #eee;
  }

  .navbar-nav .nav-link {
    padding: .55rem 0 !important;
  }

  .btn-register-nav {
    margin-top: .6rem;
    display: inline-block;
  }

  .lang-toggle {
    margin-bottom: .8rem;
  }

  .bgr-section {
    flex-direction: column;
  }

  .bgr-content {
    flex: none;
    padding: 3rem 2rem;
  }

  .bgr-image {
    flex: none;
    min-height: 360px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-hero {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .bgr-content {
    padding: 2.5rem 1.2rem;
  }

  .bgr-stats {
    gap: .6rem;
  }

  .stat-num {
    font-size: 1.3rem;
  }
}

/* ══════════════════════════════════════════
   OBJECTIVES SECTION
══════════════════════════════════════════ */

.obj-section {
  position: relative;
  padding: 3rem 0;
  background: url('../img/three.jpg') center / cover no-repeat;
  overflow: hidden;
}

.obj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
}

.obj-container {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.obj-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.obj-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: .65rem;
  margin-bottom: 1rem;
}

.obj-header h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.obj-intro {
  font-size: .92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin: 0;
}

/* ── Grid: 3 columns, 2 rows + 1 wide card ── */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Wide card spanning full width (7th objective) */
.obj-card-wide {
  grid-column: 1 / -1;
}

/* ── Cards ── */
.obj-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .2s, border-color .2s;
}

.obj-card:hover {
  background: rgba(58, 125, 36, 0.2);
  border-color: var(--green);
}

.obj-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.obj-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .obj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .obj-card-wide {
    grid-column: 1 / -1;
  }
}

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

  .obj-card-wide {
    grid-column: 1;
  }

  .obj-section {
    padding: 3.5rem 0;
  }
}

/* ══════════════════════════════════════════
   STRATEGIC POSITIONING SECTION
   Two full-height panels side by side:
   Left = green bg, Right = orange bg
══════════════════════════════════════════ */

.sp-section {
  display: flex;
  min-height: 520px;
}

/* ── LEFT PANEL — green background ── */
.sp-left {
  flex: 0 0 48%;
  background: var(--green);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Orange title on the green panel */
.sp-left-title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 1.1rem;
  line-height: 1.25;
}

/* Intro paragraph — white text */
.sp-intro {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.82;
  margin: 0 0 1.2rem;
}

/* Closing paragraph — white text */
.sp-closing {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.82;
  margin: 0;
}

/* ── RIGHT PANEL — orange background ── */
.sp-right {
  flex: 0 0 52%;
  background: var(--orange);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Dark title on the orange panel */
.sp-right-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

/* Sub-intro on the orange panel */
.sp-right-sub {
  font-size: .88rem;
  color: #1a1a1a;
  line-height: 1.8;
  margin: 0 0 1.1rem;
}

/* Dark closing paragraph on orange panel */
.sp-closing-dark {
  color: #1a1a1a !important;
}

/* ── SHARED LIST STYLES ── */
.sp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

/* Each list item is flex row */
.sp-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.9);
}

/* Orange arrow for the green panel */
.sp-arrow {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Green arrow for the orange panel */
.sp-arrow-green {
  color: var(--green) !important;
}

/* Dark text list items (right panel) */
.sp-list-dark li {
  color: #1a1a1a;
}

/* Bold labels inside right panel list items */
.sp-list-dark li strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .sp-section {
    flex-direction: column;
  }

  .sp-left,
  .sp-right {
    flex: none;
    width: 100%;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 576px) {

  .sp-left,
  .sp-right {
    padding: 2rem 1.2rem;
  }

  .sp-left-title,
  .sp-right-title {
    font-size: 1.4rem;
  }
}

/* ══════════════════════════════════════════
   PROGRAMME SECTION
══════════════════════════════════════════ */

.prog-section {
  position: relative;
  padding: 3rem 0;
  background: url('../img/three.jpg') center / cover no-repeat;
  overflow: hidden;
}

.prog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
}

.prog-container {
  position: relative;
  z-index: 1;
}

/* ── Title ── */
.prog-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ea881d;
  margin: 0 0 1.4rem;
  text-align: center;
}

/* ── Day Tabs ── */
.prog-tabs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.prog-tab {
  padding: .6rem 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  line-height: 1.35;
  text-align: left;
  border-radius: 3px;
  transition: background .2s, color .2s;
}

.prog-tab.on {
  background: #ea881d;
  color: #1a1a1a;
}

.prog-tab.off {
  background: transparent;
  color: rgba(255, 255, 255, 0.90);
  border: 1.5px solid rgba(255, 255, 255, 0.70);
}

.prog-tab.off:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Table (Day schedule) ── */
.prog-day {
  display: none;
  width: 100%;
  border-collapse: collapse;
}

.prog-day.show {
  display: table;
}

/* ── Row variants ── */
tr.rw-dark {
  background: rgba(28, 78, 18, 0.88);
}

tr.rw-light {
  background: rgba(42, 105, 25, 0.70);
}

tr.rw-break {
  background: rgba(22, 65, 14, 0.80);
}

/* ── Time cell ── */
.td-time {
  padding: .9rem 1rem .9rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  color: #ea881d;
  white-space: nowrap;
  vertical-align: top;
  width: 115px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 2px solid rgba(255, 255, 255, 0.25);
}

/* ── Content cell ── */
.td-body {
  padding: .9rem 1.2rem .9rem 1.1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.td-body h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 .3rem;
  line-height: 1.4;
}

.td-body p {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.72;
  margin: 0 0 .2rem;
}

.td-body p:last-child {
  margin: 0;
}

.td-body ul {
  margin: .2rem 0 .2rem 1.1rem;
  padding: 0;
}

.td-body ul li {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.72;
}

/* Sub-heading (bold white label inside a row) */
.td-body .sub {
  font-weight: 700;
  color: #ffffff;
  font-size: .82rem;
  margin-top: .4rem;
}

/* Orange label e.g. Rapporteur / Dinner Reception */
.td-body .orange-lbl {
  color: #ea881d;
  font-weight: 700;
  font-size: .8rem;
  margin-top: .3rem;
}

/* Break rows — green time + green title */
tr.rw-break .td-time {
  color: #6dcb45;
}

tr.rw-break .td-body h4 {
  color: #6dcb45;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .prog-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .prog-tab {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .prog-section {
    padding: 3rem 0;
  }

  .prog-day.show {
    display: block;
  }

  tr.rw-dark,
  tr.rw-light,
  tr.rw-break {
    display: block;
    margin-bottom: 2px;
  }

  .td-time,
  .td-body {
    display: block;
    width: 100%;
    border-right: none;
  }

  .td-time {
    border-bottom: none;
    padding-bottom: .2rem;
  }

  .td-body {
    padding-top: .2rem;
  }
}

/* ══════════════════════════════════════════
   EXPECTED OUTPUTS & DELIVERABLES SECTION
══════════════════════════════════════════ */

.del-section {
  background: #f0f0f0;
  padding: 3rem 0;
}

.del-container {
  position: relative;
  z-index: 1;
}

.del-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.del-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: .65rem;
  margin-bottom: 1rem;
}

.del-header h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.del-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.del-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border-left: 4px solid var(--green);
}

.del-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.del-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3a7d24;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.del-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 .6rem;
  line-height: 1.4;
}

.del-body p {
  font-size: .85rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 .6rem;
}

.del-body ul {
  margin: 0 0 0 1.1rem;
  padding: 0;
}

.del-body ul li {
  font-size: .83rem;
  color: #555;
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .del-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .del-section {
    padding: 3rem 0;
  }

  .del-card {
    flex-direction: column;
    gap: .75rem;
  }

  .del-num {
    font-size: 1.6rem;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.site-footer {
  background: #1a1a1a;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy {
  font-size: .78rem;
  color: #fff;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}


/* ── HERO REGISTER ───────────────────────────────── */
.ricehero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.ricehero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner/bg_hero.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.ricehero:hover .ricehero__bg {
  transform: scale(1);
}

/* Dark green overlay */
.ricehero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Content */
.ricehero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  animation: fadeUp .8s ease both;
}

/* Badge */
.ricehero__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35em 1.1em;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s ease both;
}

/* Heading */
.ricehero__title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
  animation: fadeUp .6s .2s ease both;
}

/* Meta line */
.ricehero__meta {
  font-family: 'Nunito', sans-serif;
  color: #ffffffd4;
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  animation: fadeUp .6s .3s ease both;
}

.ricehero__dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA button */
.ricehero__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  padding: .75em 2.4em;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(232, 137, 12, .45);
  animation: fadeUp .6s .4s ease both;
}

.ricehero__btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232, 137, 12, .55);
  color: #fff;
}

.ricehero__btn:active {
  transform: translateY(0);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE TWEAKS ──────────────────── */
@media (max-width: 576px) {
  .ricehero__content {
    padding: 60px 16px;
  }
}


/* ─── Section ─── */
.pr-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 0 70px;

  overflow: hidden;
}

/* Background image */
.pr-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/three.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay filter */
.pr-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 20, 50, 0.88) 0%,
      rgba(5, 40, 30, 0.82) 60%,
      rgba(30, 10, 10, 0.80) 100%);
  z-index: 1;
}


.prog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 0;
}


/* Content layer */
.pr-section .container {
  position: relative;
  z-index: 3;
}

/* ─── Section Heading ─── */
.pr-section__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.pr-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
}

.pr-section__divider {
  width: 54px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 55px;
}

/* ─── Card Base ─── */
.pr-card {
  background: var(--glass-bg);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-radius: 20px;
  overflow: hidden;

  height: 100%;
  display: flex;
  flex-direction: column;
}

.pr-card:hover {

  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 160, 32, 0.28);
}

/* ─── Card Image ─── */
.pr-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
  border-radius: 18px 18px 0 0;
}

.pr-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pr-card:hover .pr-card__img-wrap img {
  transform: scale(1.06);
}

/* Image shimmer overlay */
.pr-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 55%,
      rgba(0, 0, 0, 0.45) 100%);
}

/* ─── Card Body ─── */
.pr-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pr-card__tag {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.pr-card__heading {

  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 6px;
}

.pr-card__excerpt {
  font-size: .85rem;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 8px;
}

.pr-card__meta {
  font-size: .85rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ─── Read More Button ─── */
.pr-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #c97a10 100%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
}

.pr-card__btn:hover {
  opacity: 0.88;
  color: #fff;
  border-color: rgba(255, 255, 255, 1);
}

.pr-card__btn svg {
  transition: transform 0.25s;
}

.pr-card__btn:hover svg {
  transform: translateX(4px);
}


/* Row spacing */
.pr-grid {
  row-gap: 28px;
}

/* Staggered fade-in */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pr-col {
  animation: fadeUp 0.6s ease both;
}

.pr-col:nth-child(1) {
  animation-delay: 0.05s;
}

.pr-col:nth-child(2) {
  animation-delay: 0.15s;
}

.pr-col:nth-child(3) {
  animation-delay: 0.25s;
}

.pr-col:nth-child(4) {
  animation-delay: 0.35s;
}

.pr-col:nth-child(5) {
  animation-delay: 0.45s;
}

.pr-col:nth-child(6) {
  animation-delay: 0.55s;
}