/* ═══════════════════════════════════════════════════
   DDSEA — DesiDhaakad Sustainability Excellence Awards
   Master Stylesheet + Responsive
   ═══════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ───────────────────────── */
:root {
  --primary-green:   #014A2E;
  --accent-pink:     #D6497B;
  --secondary-green: #509F3D;
  --bg-cream:        #FAFAF7;
  --text-dark:       #1A2420;

  /* Extended palette */
  --green-deep:      #012A1A;
  --green-mid:       #023D27;
  --green-soft:      #0A6B40;
  --green-light:     #7DBF6A;
  --pink-soft:       #F0A0BC;
  --pink-dark:       #A3305A;
  --cream-dark:      #F0EEE8;
  --cream-mid:       #F5F3EE;
  --gold:            #C9A96E;
  --gold-light:      #E8D5A8;
  --white:           #FFFFFF;
  --text-mid:        #3B5247;
  --text-light:      #6B8A7A;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: 4rem 0;
  --container-w: 1240px;
  --container-pad: 0 2rem;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(1,74,46,0.08);
  --shadow-md:  0 8px 32px rgba(1,74,46,0.12);
  --shadow-lg:  0 20px 60px rgba(1,74,46,0.16);
  --shadow-glow:0 0 40px rgba(80,159,61,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.2s;
  --t-mid:   0.4s;
  --t-slow:  0.7s;
}

/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

html, body {
   overflow-x: hidden;
  width: 100%;
}

.ddsea-body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.4;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none !important; color: inherit; transition: color var(--t-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ── UTILITY CLASSES ──────────────────────────── */
.section-padding { padding: var(--section-pad); }
.section-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--container-pad);
}
.mt-cta { margin-top: 2rem; }

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ── GLOBAL BUTTON STYLES ─────────────────────── */
.btn-primary-ddsea {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-pink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary-ddsea::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid) var(--ease-smooth);
}
.btn-primary-ddsea:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary-ddsea span, .btn-primary-ddsea svg { position: relative; z-index: 1; }
.btn-primary-ddsea:hover { color: var(--white); box-shadow: 0 8px 24px rgba(214,73,123,0.4); }

.btn-outline-ddsea {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.82rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-smooth);
}
.btn-outline-ddsea:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: all var(--t-mid);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.section-cta { text-align: center; margin-top: 3.5rem; }

/* ── SECTION TYPOGRAPHY ───────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--green-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent-pink);
}
.section-title.light { color: var(--white); }

.section-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header-center .section-sub {
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.ddsea-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(1, 42, 26, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-info span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.75rem;
  transition: all var(--t-fast);
}

.topbar-socials a:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   MAIN NAVIGATION
══════════════════════════════════════════════ */
.ddsea-nav {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--t-mid) var(--ease-smooth);
}

.ddsea-nav.scrolled {
  background: rgba(1, 42, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 170px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.30rem;
  margin-bottom: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--accent-pink) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background var(--t-fast) !important;
}

.nav-cta:hover {
  background: var(--pink-dark) !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu-ddsea {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 150px;
  padding: 0.5rem 0;
  background: rgba(1, 42, 26, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-fast);
}

.nav-dropdown:hover .dropdown-menu-ddsea {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-ddsea a {
  display: block;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--t-mid);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--green-deep);
  z-index: 1002;
  padding: 7rem 2rem 3rem;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.mobile-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-link:hover {
  color: var(--accent-pink);
}

.mobile-cta {
  color: var(--accent-pink) !important;
}

.mobile-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.4rem;
}

.mobile-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 1rem;
}

.mobile-socials a:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
}

/* Mobile Close */
.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

.mobile-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 10px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

/* ══════════════════════════════════════════════
   RESPONSIVE NAV
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ddsea-topbar {
    display: none;
  }

  .ddsea-nav,
  .ddsea-nav.scrolled {
    top: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-logo img {
    width: 145px;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    padding: 0 1rem;
  }

  .ddsea-nav {
    padding: 0.8rem 0;
  }

  .nav-logo img {
    width: 128px;
  }

  .mobile-menu {
    padding: 6rem 1.5rem 2.5rem;
  }

  .mobile-link {
    font-size: 1.32rem;
  }
}


/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--green-deep);
  line-height:1;
}


.hero-side-text {
  position: absolute;
  left: 3.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;

  pointer-events: none;
}

.hero-side-text span {
  writing-mode: vertical-rl;
  text-orientation: upright;

  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-side-text {
    left: 0.6rem;
    opacity: 0.45;
  }

  .hero-side-text span {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 480px) {
  .hero-side-text {
    display: none;
  }
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-video-overlay {
  position: absolute;
  inset: 0.5;
  background: linear-gradient(
    135deg,
    rgba(1,42,26,0.88) 0%,
    rgba(1, 74, 46, 0.594) 50%,
    rgba(1, 42, 26, 0.737) 100%
  );
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 60%, rgba(80,159,61,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(214,73,123,0.12) 0%, transparent 40%),
    linear-gradient(to bottom, transparent 70%, rgba(1,42,26,0.95) 100%);
}

.hero-dedication {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  color: var(--white);
  text-align:center;
}

.hero-dedication span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink);
}

.hero-dedication strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero-dedication em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 600px) {
  .hero-dedication strong {
    font-size: 1.05rem;
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.leaf-particle {
  width: 8px;
  height: 12px;
  border-radius: 50% 5px;
  background: rgba(80,159,61,0.6);
  animation: floatLeaf 12s infinite linear;
}
.light-particle {
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: floatLight 8s infinite ease-in-out;
}
.p1  { width:6px;height:9px; top:20%;left:10%;animation-delay:0s;animation-duration:14s; }
.p2  { width:5px;height:8px; top:60%;left:25%;animation-delay:2s;animation-duration:11s; }
.p3  { width:7px;height:11px;top:35%;left:75%;animation-delay:4s;animation-duration:16s; }
.p4  { width:4px;height:7px; top:75%;left:55%;animation-delay:1s;animation-duration:12s; }
.p5  { width:6px;height:9px; top:15%;left:85%;animation-delay:3s;animation-duration:13s; }
.lp1 { width:3px;height:3px; top:25%;left:30%;animation-delay:0.5s;animation-duration:7s;  }
.lp2 { width:2px;height:2px; top:55%;left:70%;animation-delay:2.5s;animation-duration:9s; }
.lp3 { width:4px;height:4px; top:40%;left:15%;animation-delay:1.5s;animation-duration:8s; }
.lp4 { width:3px;height:3px; top:80%;left:40%;animation-delay:3.5s;animation-duration:10s;}
.lp5 { width:2px;height:2px; top:10%;left:60%;animation-delay:0.8s;animation-duration:6s; }
.lp6 { width:3px;height:3px; top:65%;left:90%;animation-delay:4.5s;animation-duration:8s; }

@keyframes floatLeaf {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-120vh) rotate(720deg) translateX(80px); opacity: 0; }
}
@keyframes floatLight {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%      { transform: translateY(-30px) scale(1.5); opacity: 0.9; }
}

/* Hero Content */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}
.hero-inner {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
/* .hero-left { max-width: 1200px; } */

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-pink);
}
.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hero-event-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  width: fit-content;
  margin: 0 auto 1.3rem;
  padding: 0.45rem 1.2rem;
  background: var(--white);
  border: 1px solid rgb(255, 0, 238);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.hero-event-row .hero-eyebrow {
  margin: 0;
  flex-shrink: 0;
}

.hero-event-row .eyebrow-line {
  background: var(--accent-pink);
}

.hero-event-row .eyebrow-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--primary-green);
}

.hero-event-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-event-logo span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary-green);
  white-space: nowrap;
}
.etherwire {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary-green);
  white-space: nowrap;
  margin-block-end: 20px;
}
.etherwire span {

  padding-bottom: 10px;
}

.hero-event-logo img {
  max-width: 132px;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .hero-event-row {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    padding: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .hero-event-logo {
    align-items: flex-start;
  }

  .hero-event-logo:nth-child(3) {
    align-items: flex-end;
    text-align: right;
  }

  .hero-event-row .hero-eyebrow {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
    margin-top: 0.15rem;
  }

  .hero-event-logo img {
    max-width: 112px;
    max-height: 44px;
  }

  .hero-event-row .eyebrow-text {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .hero-event-row {
    width: 100%;
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .hero-event-logo span {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }

  .hero-event-logo img {
    max-width: 92px;
    max-height: 38px;
  }

  .hero-event-row .hero-eyebrow {
    gap: 0.6rem;
  }

  .hero-event-row .eyebrow-line {
    width: 26px;
  }

  .hero-event-row .eyebrow-text {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-event-row {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.25rem;
    padding: 0.85rem 0.9rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hosted presented"
      "date date";
    gap: 0.8rem 1rem;
    border-radius: 10px;
  }

  .hero-event-logo:first-child {
    grid-area: hosted;
    align-items: center;
    text-align: left;
  }

  .hero-event-logo:nth-child(3) {
    grid-area: presented;
    align-items: center;
    text-align: right;
  }

  .hero-event-row .hero-eyebrow {
    grid-area: date;
    justify-content: center;
    width: 100%;
    gap: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(1,74,46,0.12);
  }

  .hero-event-logo span {
    font-size: 0.52rem;
    letter-spacing: 0.09em;
  }

  .hero-event-logo img {
    max-width: 105px;
    max-height: 42px;
  }

  .hero-event-row .eyebrow-line {
    width: 26px;
  }

  .hero-event-row .eyebrow-text {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-event-row {
    max-width: 330px;
    padding: 0.75rem;
    gap: 0.7rem;
  }

  .hero-event-logo img {
    max-width: 88px;
    max-height: 36px;
  }

  .hero-event-logo span {
    font-size: 0.46rem;
    letter-spacing: 0.07em;
  }
  .etherwire span {
    padding-bottom: 0;
  }

  .hero-event-row .hero-eyebrow {
    gap: 0.45rem;
    padding-top: 0.55rem;
  }

  .hero-event-row .eyebrow-line {
    width: 18px;
  }

  .hero-event-row .eyebrow-text {
    font-size: 0.54rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-texts{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero-hindi {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  /* display: block; */
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* =========================
   MINI LOGO
========================= */

.hero-mini-logo{
    display: flex;
    justify-content: center;
        margin-bottom: -30px;
}

.hero-mini-logo img{
    width: 310px;
    height: auto;
}

.hero-title img{
  width:43vw;
  height:auto;
}




/* Scroll Indicator */
/* .scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.5rem;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: 0.5; }
} */


/* Hero Marquee */
.hero-marquee-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(1,42,26,0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  padding: 0 2rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  margin-right: 1.5rem;
}
.marquee-track { overflow: hidden; flex: 1; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 6.5rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.partner-placeholder {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  height: 28px;
  display: flex;
  align-items: center;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Partner Logo Images (replace placeholder styles) */
.partner-logo-img {
  height: 40px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.partner-logo-img:hover {
  opacity: 1;
}

/* Marquee item – vertical stack: image + title */
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.partner-logo-img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.partner-title {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  font-weight: 400;
}
.marquee-item:hover .partner-logo-img {
  opacity: 1;
}
/* Adjust spacing in marquee */
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 6rem;   /* increase gap to accommodate titles */
  animation: marqueeScroll 30s linear infinite; /* slightly slower for readability */
  width: max-content;
}
@media (max-width: 768px) {
  .partner-logo-img { height: 24px; max-width: 70px; }
  .partner-title { font-size: 0.55rem; }
  .marquee-inner { gap: 2rem; }
}

/* Tablet hero logo sizing */
@media (max-width: 992px) {
  .hero-content-wrap {
    padding: 7rem 0 3.5rem;
  }

  .hero-mini-logo {
    margin-bottom: -22px;
  }

  .hero-mini-logo img {
    width: 240px;
  }

  .hero-title {
    margin-bottom: 1.2rem;
  }

  .hero-title img {
    width: 62vw;
    max-width: 560px;
  }
}

/* Mobile hero logo sizing */
@media (max-width: 768px) {
  .hero-content-wrap {
    padding: 6.5rem 0 3rem;
  }

  .hero-inner {
    padding: 0 1.1rem;
  }

  .hero-mini-logo {
    margin-bottom: -14px;
  }

  .hero-mini-logo img {
    width: 185px;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-title img {
    width: 82vw;
    max-width: 420px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content-wrap {
    padding: 6rem 0 2.5rem;
  }

  .hero-mini-logo {
    margin-bottom: -10px;
  }

  .hero-mini-logo img {
    width: 145px;
  }

  .hero-title img {
    width: 90vw;
    max-width: 340px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .hero-mini-logo img {
    width: 125px;
  }

  .hero-title img {
    width: 92vw;
    max-width: 300px;
  }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
/* Success Strip */
.success-strip {
  background: linear-gradient(135deg, #f9f7f0 0%, #f2efe4 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(80,159,61,0.2);
  border-bottom: 1px solid rgba(80,159,61,0.2);
}
.success-strip-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.success-badge {
  display: inline-block;
  background: var(--accent-pink);
  color: white;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.success-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.success-divider {
  width: 60px;
  height: 2px;
  background: var(--secondary-green);
  margin: 1.2rem auto;
}
.success-launch {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 0;
}




.about-section { background: var(--bg-cream); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
/* Visual Col */
.about-visual-col { position: relative; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-single-img {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 24px;  */
  object-fit: cover;
}

/* Content Col */
.about-quote-block {
  position: relative;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(1,74,46,0.06), rgba(214,73,123,0.04));
  border-left: 2px solid var(--accent-pink);
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent-pink);
  opacity: 0.3;
  line-height: 0;
  position: absolute;
  top: 1rem; left: 1rem;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--primary-green);
  line-height: 1.4;
  position: relative;
  z-index: 1;
  padding-left: 1rem;
}
.about-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-body strong { font-weight: 600; color: var(--text-dark); }

.about-harit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(80,159,61,0.08), rgba(1,74,46,0.05));
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
}
.harit-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.harit-text { display: flex; flex-direction: column; gap: 0.3rem; }
.harit-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.harit-body {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Full-width quote */
.about-full-quote {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
.full-quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-pink), transparent);
}
.full-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  flex-shrink: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════════ */
.why-section {
  position: relative;
  background: var(--green-deep);
  padding: var(--section-pad);
  overflow: hidden;
}
.why-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(80,159,61,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(214,73,123,0.08) 0%, transparent 60%);
}
.why-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--container-pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-body {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.sdg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.sdg-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(80,159,61,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.why-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: all var(--t-mid);
}
.why-stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.why-stat-card.accent { background: rgba(214,73,123,0.12); border-color: rgba(214,73,123,0.25); }
.wsc-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.wsc-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   CATEGORIES SECTION
══════════════════════════════════════════════ */
.categories-section {
  background: var(--bg-cream);
}

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

.cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-mid) var(--ease-smooth);
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-card-inner {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  /* border: 1px solid rgba(1,74,46,0.14); */
  background-image:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.82) 38%,
      rgba(255,255,255,0.32) 62%,
      rgba(1,74,46,0.18) 100%
    ),
    url("../images/ddsea/award-category.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 28px rgba(1,74,46,0.08);
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}

.cat-card:hover .cat-card-inner {
  border-color: rgba(80,159,61,0.35);
  box-shadow: 0 18px 42px rgba(1,74,46,0.16);
}

.cat-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  background: rgba(1,74,46,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(1,74,46,0.18);
  transition: transform var(--t-mid) var(--ease-bounce);
}

.cat-card:hover .cat-icon-wrap {
  transform: scale(1.08) rotate(-5deg);
}

.cat-icon {
  font-size: 1.3rem;
}

.cat-content {
  position: relative;
  z-index: 2;
}

.cat-hindi {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-pink);
  margin-bottom: 0.35rem;
}

.cat-english {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.cat-desc {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.cat-glow {
  display: none;
}


.featured-cat .cat-icon-wrap {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
}


.featured-cat .cat-english {
  color: var(--primary-green);
}

.featured-cat .cat-desc {
  color: rgba(255,255,255,0.82);
}

/* Responsive */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

}

/* ══════════════════════════════════════════════
   OBJECTIVES SECTION
══════════════════════════════════════════════ */
.objectives-section { background: var(--cream-mid); }
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.obj-card {
  background: var(--white);
  border: 1px solid rgba(1,74,46,0.06);
  border-radius: 4px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: all var(--t-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.obj-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
  transform: scaleX(0);
  transition: transform var(--t-mid);
}
.obj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.obj-card:hover::before { transform: scaleX(1); }
.obj-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* OBJECTIVE ICONS */
.obj-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 32px;
  transition: all 0.4s ease;
  position: relative;
}

/* Individual Colors */
.obj-card:nth-child(1) .obj-icon {
  color: #a855f7;
}

.obj-card:nth-child(2) .obj-icon {
  color: #0ea5e9;
}

.obj-card:nth-child(3) .obj-icon {
  color: #10b981;
}

.obj-card:nth-child(4) .obj-icon {
  color: #f59e0b;
}

.obj-card:nth-child(5) .obj-icon {
  color: #22c55e;
}

/* Hover Animation */
.obj-card:hover .obj-icon {
  transform: translateY(-8px) scale(1.08);
}

.obj-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.obj-body {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   TIMELINE SECTION
══════════════════════════════════════════════ */
.timeline-section { background: var(--bg-cream); }
.timeline-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 28px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--secondary-green), transparent);
  z-index: 0;
}
.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.tl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.tl-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--secondary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(80,159,61,0.1);
  transition: all var(--t-mid);
}
.tl-item:hover .tl-node {
  background: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 8px rgba(80,159,61,0.15), var(--shadow-glow);
}
.tl-item:hover .tl-node-num { color: var(--white); }
.tl-node-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-green);
  transition: color var(--t-mid);
}
.star-node { background: var(--primary-green); border-color: var(--primary-green); }
.star-node .tl-node-num { font-size: 1.2rem; }
.tl-card {
  background: var(--white);
  border: 1px solid rgba(1,74,46,0.08);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  transition: all var(--t-mid);
}
.tl-item:hover .tl-card {
  box-shadow: var(--shadow-md);
  border-color: rgba(80,159,61,0.2);
}
.tl-phase {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-green);
  margin-bottom: 0.4rem;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.tl-body {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.highlight-card {
  background: linear-gradient(135deg, var(--primary-green), var(--green-soft));
}
.highlight-card .tl-phase { color: var(--gold-light); }
.highlight-card .tl-title { color: var(--white); }
.highlight-card .tl-body { color: rgba(255,255,255,0.75); }
.highlight-card .tl-date { color: var(--white); }

/* ══════════════════════════════════════════════
   JURY SECTION
══════════════════════════════════════════════ */
.jury-section {
  background: var(--cream-mid);
}

.jury-category-label {
  display: flex;
  justify-content: center;
  margin: 3rem 0 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(80,159,61,0.2);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-pink);
}

.jury-category-label:first-of-type {
  margin-top: 0;
}

/* Main jury: 3 columns */
.jury-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

/* Preselection: 3 cards, large */
.preselect-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

/* Management: 5 cards, first row 3, second row centered */
.management-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.management-grid .jury-card {
  grid-column: span 2;
}

.management-grid .jury-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.management-grid .jury-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.jury-card {
  text-align: center;
  transition: transform var(--t-mid);
}

.jury-card:hover {
  transform: translateY(-6px);
}

.jury-portrait,
.small-card .jury-portrait,
.small-card .small-portrait {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1.18;
  height: auto;
  margin: 0 auto 1.2rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.jury-img,
.small-card .jury-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter var(--t-mid);
}

.jury-card:hover .jury-img {
  filter: brightness(0.98);
}

.portrait-placeholder,
.small-portrait .portrait-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--green-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

.jury-info {
  max-width: 350px;
  margin: 0 auto;
}

.jury-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.jury-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

/* Tablet */
@media (max-width: 992px) {
  .jury-grid,
  .preselect-grid,
  .management-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .management-grid .jury-card,
  .management-grid .jury-card:nth-child(4),
  .management-grid .jury-card:nth-child(5) {
    grid-column: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .jury-grid,
  .preselect-grid,
  .management-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .jury-portrait,
  .small-card .jury-portrait,
  .small-card .small-portrait {
    max-width: 320px;
  }

  .jury-category-label {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }
}
/* ══════════════════════════════════════════════
   ELIGIBILITY SECTION
══════════════════════════════════════════════ */
.eligibility-section { background: var(--bg-cream); }
.eligibility-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: flex-start;
}
.elig-intro {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.elig-accordion { display: flex; flex-direction: column; gap: 1px; }
.elig-item {
  background: var(--white);
  border: 1px solid rgba(1,74,46,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: box-shadow var(--t-mid);
}
.elig-item.open { box-shadow: var(--shadow-sm); }
.elig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.elig-header:hover { background: rgba(1,74,46,0.03); }
.elig-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
.elig-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(1,74,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-green);
  transition: all var(--t-mid);
  flex-shrink: 0;
}
.elig-item.open .elig-toggle {
  background: var(--primary-green);
  color: var(--white);
  transform: rotate(45deg);
}
.elig-body {
  padding: 0 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid) var(--ease-smooth), padding var(--t-mid);
}
.elig-item.open .elig-body {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}
.elig-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.elig-list li {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}
.elig-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════ */
.process-section { background: var(--cream-mid); }
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-step {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(1,74,46,0.08);
  border-right: none;
  transition: all var(--t-mid);
}
.proc-step:last-child { border-right: 1px solid rgba(1,74,46,0.08); }
.proc-step:hover {
  background: linear-gradient(135deg, rgba(1,74,46,0.04), rgba(80,159,61,0.06));
}
.proc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(1,74,46,0.06);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.2rem;
}
.proc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

/* Process Icons */
.proc-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  position: relative;
  transition: all 0.4s ease;
}

/* Individual Icon Colors */
.proc-step:nth-child(1) .proc-icon {
  color: #2563eb;
}

.proc-step:nth-child(2) .proc-icon {
  color: #10b981;
}

.proc-step:nth-child(3) .proc-icon {
  color: #f59e0b;
}

.proc-step:nth-child(4) .proc-icon {
  color: #ef4444;
}

/* Hover Effect */
.proc-step:hover .proc-icon {
  transform: translateY(-6px) scale(1.08);
}


.proc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.proc-body {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}
.proc-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.process-flow {
  overflow: visible;
}

.proc-step {
  z-index: 1;
  overflow: visible;
}

/* Make earlier cards sit above the next card, so arrows stay visible */
.proc-step:nth-child(1) {
  z-index: 4;
}

.proc-step:nth-child(2) {
  z-index: 3;
}

.proc-step:nth-child(3) {
  z-index: 2;
}

.proc-step:nth-child(4) {
  z-index: 1;
}

.proc-arrow {
  z-index: 20;
}
/* ══════════════════════════════════════════════
   PARTNERS SECTION
══════════════════════════════════════════════ */
.partners-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}



.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(80,159,61,0.08) 0%, transparent 70%);
}
.partners-section .section-container { position: relative; z-index: 1; }
.partners-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.partner-logo-item {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-mid);
}
.partner-logo-item:hover { background: rgba(255,255,255,0.08); }
.partner-logo-item span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.partners-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  margin-bottom: 3rem;
}
.partners-marquee-inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
.partners-marquee-inner span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* Partner Grid Images & Labels */
.partner-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.partner-grid-img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}
.partner-logo-item:hover .partner-grid-img {
  opacity: 1;
}
.partner-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Marquee Logos */
.marquee-logo {
  height: 65px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 1rem;
}
.marquee-logo:hover {
  opacity: 1;
}
.partners-marquee-inner {
  display: flex;
  align-items: center;
  gap: 6rem;
  animation: marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-grid-img {
    max-width: 100px;
    max-height: 50px;
  }
  .marquee-logo {
    height: 70px;
    max-width: 90px;
    margin: 0 0.8rem;
  }
  .partners-marquee-inner {
    gap: 1.5rem;
  }
}

/* ══════════════════════════════════════════════
   NOMINATION FORM SECTION
══════════════════════════════════════════════ */
.nominate-section {
  position: relative;
  background: var(--primary-green);
  padding: var(--section-pad);
  overflow: hidden;
}
.nominate-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 60%, rgba(80,159,61,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(214,73,123,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.nominate-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--container-pad);
}
.nominate-body {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.nominate-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nd-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.nd-item i { color: var(--accent-pink); width: 16px; }

/* Form Container */
.form-container {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-steps {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(1,74,46,0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--t-mid);
}
.form-step.active .step-num {
  background: var(--primary-green);
  color: var(--white);
}
.form-step.done .step-num {
  background: var(--secondary-green);
  color: var(--white);
}
.step-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-step.active .step-label { color: var(--primary-green); }
.step-connector {
  flex: 1;
  height: 1px;
  background: rgba(1,74,46,0.15);
  margin: 0 0.8rem;
}
.form-panel {
  display: none;
}
.form-panel.active { display: block; }
.form-panel-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
/* Floating Label Fields */
.float-field {
  position: relative;
}
.float-field input,
.float-field textarea,
.float-field select {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  background: rgba(1,74,46,0.03);
  border: 1px solid rgba(1,74,46,0.15);
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.float-field input:focus,
.float-field textarea:focus,
.float-field select:focus {
  border-color: var(--primary-green);
  background: rgba(1,74,46,0.04);
}
.float-field label {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all var(--t-fast);
  pointer-events: none;
}
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field textarea:focus + label,
.float-field textarea:not(:placeholder-shown) + label,
.float-field select:focus + label,
.float-field select:not([value=""]) + label {
  top: 0.25rem;
  font-size: 0.7rem;
  color: var(--secondary-green);
  letter-spacing: 0.05em;
}
.float-field select + label {
  top: 0.25rem;
  font-size: 0.7rem;
  color: var(--secondary-green);
  letter-spacing: 0.05em;
}
.float-field textarea { resize: vertical; min-height: 90px; }
.select-field select { padding-top: 1.2rem; }

.form-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.form-check-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--primary-green);
  cursor: pointer;
}
.form-check-wrap label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
}
.form-btn-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.form-btn { width: 100%; justify-content: center; }
.form-btn-back {
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(1,74,46,0.15);
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-fast);
}
.form-btn-back:hover { border-color: var(--primary-green); color: var(--primary-green); }

.form-success {
  text-align: center;
  padding: 2rem 0;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.7rem;
}
.form-success p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.ddsea-footer {
  background: var(--green-deep);
  padding-top: 5rem;
}
.footer-top {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--green-light);
  margin-bottom: 0.8rem;
}
.footer-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-col-title {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-col a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--t-fast);
}
.footer-links-col a:hover { color: var(--white); }
.footer-links-col a i { font-size: 0.75rem; color: var(--accent-pink); width: 14px; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6) ;
  transition: all var(--t-mid);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
  background: var(--accent-pink);
  color: var(--white) !important;
  border-color: var(--accent-pink);
}
.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* Scroll to Top */
.scroll-top-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--t-mid);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(214,73,123,0.4);
  border: none;
  cursor: pointer;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════════════
   RESPONSIVENESS
══════════════════════════════════════════════ */

/* Large Tablets: 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .t1 { font-size: clamp(1.8rem, 4vw, 3rem); }
  .t2,.t3,.t4 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }

  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-stack { height: 340px; }
  .about-img-main { width: 70%; height: 300px; }
  .about-img-accent { width: 40%; height: 180px; }

  .why-inner { grid-template-columns: 1fr; gap: 3rem; }

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

  .objectives-grid { grid-template-columns: repeat(3, 1fr); }

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

  .eligibility-inner { grid-template-columns: 1fr; gap: 3rem; }

  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .proc-step:nth-child(2) { border-right: 1px solid rgba(1,74,46,0.08); }
  .proc-step:nth-child(odd):not(:last-child) .proc-arrow { display: none; }

  .nominate-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }

  .impact-divider { display: none; }
  .impact-grid { gap: 1.5rem 3rem; justify-content: center; }
}

/* Tablets: 768px */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  .ddsea-nav { padding: 1rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content-wrap { padding: 6rem 0 3rem; }
  .t1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .t2,.t3,.t4 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary-ddsea, .btn-outline-ddsea { width: 100%; justify-content: center; }

  .marquee-label { display: none; }

  .about-split { grid-template-columns: 1fr; }
  .about-img-stack { height: 300px; }
  .about-img-main { width: 75%; height: 260px; }
  .about-img-accent { width: 42%; height: 160px; }
  .about-floater-text { left: 0; }

  .about-full-quote { flex-direction: column; text-align: center; }
  .full-quote-line { width: 80px; height: 1px; }

  .categories-grid { grid-template-columns: 1fr; gap: 1rem; }

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

  .timeline-wrap { max-width: 100%; }
  .tl-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .tl-node { width: 44px; height: 44px; }
  .timeline-line { left: 22px; }

  .jury-grid { grid-template-columns: repeat(2, 1fr); }
  /* .jury-portrait { width: 130px; height: 130px; } */

  .process-flow { grid-template-columns: 1fr; }
  .proc-step { border-right: 1px solid rgba(1,74,46,0.08) !important; border-top: none; }
  .proc-step:not(:first-child) { border-top: none; }
  .proc-arrow { display: none; }

  .news-grid { grid-template-columns: 1fr; }
  .featured-news { grid-row: auto; }
  .news-thumb-placeholder { height: 220px; }

  .partners-logo-wall { grid-template-columns: repeat(2, 1fr); }

  .form-container { padding: 1.8rem 1.5rem; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  :root { --section-pad: 3.5rem 0; --container-pad: 0 1.2rem; }

  .hero-content-wrap { padding: 5.5rem 0 2.5rem; }
  .hero-inner { padding: 15px 1.2rem; }
  .t1 { font-size: 1.4rem; }
  .t2,.t3,.t4 { font-size: 2rem; }
  .hero-hindi { font-size: 1rem; }
  .hero-sub { font-size: 0.88rem; }

  .impact-strip { padding: 2.5rem 1.2rem; }
  .impact-grid { flex-direction: column; align-items: center; gap: 1.5rem; }

  .about-img-stack { height: 260px; }
  .about-img-main { width: 80%; height: 220px; }
  .about-img-accent { display: none; }
  .about-floater-text { position: relative; left: auto; bottom: auto; margin-top: 1rem; display: inline-flex; }

  .objectives-grid { grid-template-columns: 1fr; }

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

  .jury-grid { grid-template-columns: 1fr; }
  .jury-committee-grid { grid-template-columns: 1fr; max-width: 100%; }

  .partners-logo-wall { grid-template-columns: 1fr 1fr; }
  .partner-logo-item { padding: 1.5rem 1rem; }

  .footer-bottom { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }

  .section-title { font-size: 1.8rem; }
  .section-sub { font-size: 0.9rem; }

  .form-steps { gap: 0.3rem; }
  .step-label { display: none; }
  .step-connector { margin: 0 0.4rem; }

  .scroll-top-btn { bottom: 1.5rem; right: 1rem; }
}

/* ══════════════════════════════════════════════
   PRINT MEDIA
══════════════════════════════════════════════ */
@media print {
  .ddsea-nav, .scroll-top-btn, .hero-particles,
  .hero-video-wrap, .hero-marquee-strip { display: none; }
  .hero-section { min-height: auto; background: var(--primary-green); }
  .hero-content-wrap { padding: 2rem 0; }
}


/* ══════════════════════════════════════════════
   NOMINATE VISUAL & FLOATING CARD (FIXED)
══════════════════════════════════════════════ */

.nominate-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem 1rem 0; /* Breathing room for the bottom-right card overlap */
}

.nominate-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px; /* Increased further to make the image even larger */
  margin: 0 auto;
}

.nominate-main-img {
  width: 100%;
  height: 500px; /* Forces the image to be much taller */
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px; /* Adds a premium finish to the large image */
}

/* The Overlapping Card */
.nominate-overlay-card {
  position: absolute;
  bottom: -8px; /* Overlaps bottom edge */
  right: -4px;  /* Overlaps right edge */
  background: var(--bg-cream);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  padding: 1.8rem 1.2rem; /* Increased vertical padding to make card taller */
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 240px; 
  min-width: 200px;
  width: 35%; /* Reduced from 40% */
  min-height: 240px; /* Forces a slightly taller presence */
}

/* Card Interior Styling */
.nominate-overlay-card .card-icon {
  width: 34px; /* Scaled down slightly */
  height: 34px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.nominate-overlay-card .card-title {
  font-family: var(--font-sans);
  font-size: 0.8rem; /* Slightly smaller text */
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.nominate-overlay-card .card-title-accent {
  color: var(--accent-pink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem; /* Scaled down proportionally */
  display: block;
  margin-top: 0.1rem;
}

.nominate-overlay-card .card-divider {
  color: var(--gold);
  font-size: 0.9rem;
  margin: 0.3rem 0;
  opacity: 0.6;
}

.nominate-overlay-card .card-sub {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}

.nominate-overlay-card .btn-primary-ddsea {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 0.6rem; /* Tighter padding for a smaller button */
  font-size: 0.7rem;
}

/* ======================================================
   1200px+
   LARGE DESKTOP
====================================================== */

@media (max-width: 1200px) {

  .nominate-right {
    align-items: flex-end;
  }

  .nominate-visual-wrapper {
    max-width: 620px;
  }

  .nominate-main-img {
    height: 440px;
  }

  .nominate-overlay-card {
    width: 230px;
    min-height: 220px;

    right: 0;
    bottom: -10px;
  }
}

/* ======================================================
   992px
   TABLET LANDSCAPE
====================================================== */

@media (max-width: 992px) {

  /* SECTION STACKS */

  .nominate-inner {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .nominate-left {
    text-align: center;
    max-width: 700px;
  }

  .nominate-details {
    align-items: center;
  }

  /* IMAGE AREA */

  .nominate-right {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .nominate-visual-wrapper {
    max-width: 640px;
  }

  .nominate-main-img {
    height: auto;
    object-fit: contain;
  }

  /* CARD REPOSITIONS */

  .nominate-overlay-card {
    width: 250px;

    right: 20px;
    bottom: 0;

    min-height: 220px;
  }
}

/* ======================================================
   768px
   TABLET PORTRAIT
====================================================== */

@media (max-width: 768px) {

  .nominate-inner {
    gap: 3rem;
  }

  .nominate-left {
    text-align: center;
  }

  .nominate-body {
    margin-left: auto;
    margin-right: auto;
  }

  /* IMAGE */

  .nominate-visual-wrapper {
    width: 100%;
    max-width: 450px; /* Reduced to stop it from being too big */
    margin: 0 auto; /* Lock strictly to the center */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nominate-main-img {
    width: 100%;
    height: auto;
  }

  /* CARD */

  .nominate-overlay-card {
    position: relative;
    width: 90%;
    max-width: 320px;
    margin: -40px auto 0;
    right: auto;
    bottom: auto;
    min-height: auto;
    padding: 1.4rem 1.2rem;
    border-radius: 14px;
  }
}

/* ======================================================
   576px
   MOBILE LARGE
====================================================== */

@media (max-width: 576px) {

  .nominate-inner {
    gap: 2.5rem;
  }

  .nominate-overlay-card {
    width: 100%;
    max-width: 280px;
    padding: 1.4rem 1rem;
  }

  /* CENTER CARD CONTENT */

  .nominate-overlay-card .card-title {
    font-size: 0.72rem;
  }

  .nominate-overlay-card .card-title-accent {
    font-size: 0.82rem;
  }

  .nominate-overlay-card .card-sub {
    font-size: 0.72rem;
  }
}

/* ======================================================
   420px
   SMALL MOBILE
====================================================== */

@media (max-width: 420px) {

  .nominate-section {
    overflow: hidden;
  }

  .nominate-main-img {
    width: 115%;
    max-width: none;

    transform: translateX(-3%);
    width: 100%;
    max-width: 100%;
    transform: none; /* Removes the horizontal shift */
  }

  /* CARD BELOW IMAGE */

  .nominate-overlay-card {
    max-width: 240px;

    margin-top: -30px;

    padding: 1.2rem 0.9rem;
  }

  .nominate-overlay-card .card-title {
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .nominate-overlay-card .card-title-accent {
    font-size: 0.75rem;
  }

  .nominate-overlay-card .btn-primary-ddsea {
    font-size: 0.62rem;
  }
}

/* ======================================================
   320px
   EXTRA SMALL
====================================================== */

@media (max-width: 320px) {

  .nominate-main-img {
    width: 122%;
    transform: translateX(-5%);
    width: 100%;
    transform: none; /* Removes the horizontal shift */
  }

  .nominate-overlay-card {
    max-width: 210px;

    padding: 1rem 0.8rem;

    margin-top: -20px;
  }

  .nominate-overlay-card .card-icon {
    width: 26px;
    height: 26px;

    font-size: 0.6rem;
  }

  .nominate-overlay-card .card-title {
    font-size: 0.58rem;
  }

  .nominate-overlay-card .card-title-accent {
    font-size: 0.68rem;
  }

  .nominate-overlay-card .card-sub {
    font-size: 0.6rem;
  }

  .nominate-overlay-card .btn-primary-ddsea {
    font-size: 0.55rem;
    padding: 0.42rem;
  }
}

/* WHY SECTION IMAGE */

.why-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%; 
  flex: 1;     
}

.why-image-wrap {
  position: relative;
  width: 100%;
  max-width: 750px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-art-image {
  width: 100%;
  max-width: 100%; /* Ensures image never overflows wrapper */
  min-width: 555px; /* Keeps it large on desktop */
  height: auto;
  object-fit: contain;
  display: block;
  
  filter:
    drop-shadow(0 0 40px rgba(255, 192, 203, 0.08))
    drop-shadow(0 0 80px rgba(255, 215, 120, 0.12));

  transition: transform .6s ease;
}

/* subtle floating interaction */
.why-image-wrap:hover .why-art-image {
  transform: translateY(-6px) scale(1.02);
}

/* optional glow behind artwork */
.why-image-wrap::before {
  content: "";
  position: absolute;
  width: 80%; 
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255,215,120,0.18) 0%,
    rgba(255,105,180,0.08) 35%,
    transparent 75%
  );

  filter: blur(80px);
  z-index: -1;
}


/* --- RESPONSIVE --- */

/* Tablets & Small Laptops */
@media(max-width: 991px) {
  .why-right {
    margin-top: 50px;
  }

  .why-image-wrap {
    max-width: 650px; 
  }

  .why-art-image {
    min-width: 0; /* CRITICAL FIX: Allows image to shrink below 610px */
  }
}

/* Large Mobile Devices */
@media(max-width: 768px) {
  .why-right {
    margin-top: 40px;
  }

  .why-image-wrap {
    max-width: 100%;
  }
}

/* Standard Mobile Devices */
@media(max-width: 480px) {
  .why-right {
    margin-top: 30px; 
  }

  .why-image-wrap {
    width: 90%; 
    margin: 0 auto;
  }

  .why-art-image {
    min-width: 250px; /* CRITICAL FIX: Allows image to shrink below 610px */
  }
}

/* Extra Small Mobile Devices (e.g., iPhone SE, Galaxy Fold, 320px) */
@media(max-width: 360px) {
  .why-right {
    margin-top: 20px;
  }

  .why-image-wrap {
    width: 100%; 
    padding: 0 10px; 
  }
}

.nomination-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.nomination-modal.active {
  display: flex;
}

.nomination-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 30, 20, 0.72);
  backdrop-filter: blur(6px);
}

.nomination-modal-box {
  position: relative;
  width: min(720px, 100%);
  background: var(--white);
  border-radius: 8px;
  padding: 2.2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  z-index: 1;
}

.nomination-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1,74,46,0.08);
  color: var(--primary-green);
}

.nomination-modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 0.7rem;
}

.nomination-modal-box h2 {
  font-family: var(--font-display);
  color: var(--primary-green);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.nomination-modal-box p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.nomination-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.nomination-choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem;
  border: 1px solid rgba(1,74,46,0.16);
  border-radius: 8px;
  background: #fafaf7;
  color: var(--text-dark);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nomination-choice-card i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
}

.nomination-choice-card strong {
  color: var(--primary-green);
  font-size: 1rem;
}

.nomination-choice-card span {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nomination-choice-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-pink);
  box-shadow: 0 12px 30px rgba(1,74,46,0.12);
}

@media (max-width: 650px) {
  .nomination-modal-box {
    padding: 1.5rem;
  }

  .nomination-choice-grid {
    grid-template-columns: 1fr;
  }
}

.chief-guest-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.2rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(1,74,46,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(1,74,46,0.08);
}

.chief-guest-photo {
  width: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-light);
}

.chief-guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chief-guest-info {
  text-align: left;
}

.chief-guest-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-pink);
}

.chief-guest-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.chief-guest-info ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.chief-guest-info li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.65;
}

.chief-guest-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-pink);
}

@media (max-width: 768px) {
  .chief-guest-wrap {
    grid-template-columns: 1fr;
    padding: 1.4rem;
    gap: 1.5rem;
  }

  .chief-guest-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .chief-guest-info {
    text-align: center;
  }

  .chief-guest-info li {
    text-align: left;
  }
}

