* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


body {
  background: transparent;
  color: #fff;
  overflow-x: hidden;
}

/* BACKGROUND VIDEO */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* LOGO */
.ihrd-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 90px;
  z-index: 10;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tharang-logo {
  width: 350px;
  animation: glow 3s infinite alternate;
  transform: translateY(50px); /* 👈 move logo down */
}

@keyframes glow {
  from { filter: drop-shadow(0 0 12px #ff2fa6); }
  to   { filter: drop-shadow(0 0 35px #ffd700); }
}

/* CURSOR TEXT */
#textCanvas {
  width: 100%;
  height: 180px;
  margin: 12px 0;
  pointer-events: auto;
}

/* TAGLINE */
.scan-text {
  font-size: 1.4rem;
  background: linear-gradient(90deg,#ff2fa6,#ffd700,#ff2fa6);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scan 4s linear infinite;
}

.ai-sub { 
  display: block;
  margin-top: 6px;
  letter-spacing: 2px;
  color: #ffd700;
}

/* FONT CHANGE ONLY */
.scan-text,
.ai-sub {
  font-family: 'Orbitron', sans-serif;
}

@keyframes scan {
  to { background-position: 300% center; }
}


/* SECTIONS */
.section {
  min-height: 100vh;
  padding: 90px 10%;
  text-align: center;
}

/* ABOUT HEADING */
.about-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 35px;
  text-shadow:
    0 0 12px rgba(255,215,0,0.6),
    0 0 25px rgba(255,47,166,0.4);
}

/* ABOUT BOX */
.about-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 40px;
  border-radius: 26px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,215,0,0.25);
}

.about-box p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #f5f5f5;
}

.about-highlight {
  color: #ffd700;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,215,0,0.6);
}

/* EVENTS */
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 60px;
}

.event-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.event-feature {
  padding: 35px;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgb(253, 3, 182), rgba(20,0,40,0.95));
  border: 1px solid rgb(255, 217, 0);
}

.event-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}

.event-btn {
  margin-top: 22px;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #ffd700;
  background: transparent;
  color: #ffd700;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.event-card {
  padding: 20px 26px;
  border-radius: 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,215,0,0.25);
  color: #aaa;
  cursor: pointer;
  transition: 0.35s;
}

.event-card.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255,215,0,0.25), rgba(255, 2, 124, 0.83));
  box-shadow: 0 0 30px rgba(255,215,0,0.9);
  transform: scale(1.05);
}
/* ===== FLOATING MAGNETIC EVENT CARD ===== */

.event-card {
  position: relative;
  padding: 20px 26px;
  border-radius: 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,215,0,0.25);
  color: #aaa;
  cursor: pointer;

  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.event-card:hover {
  color: #fff;
  box-shadow:
    0 15px 35px rgba(255,215,0,0.8),
    0 0 40px rgba(255,47,166,0.6);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 30px;
  text-align: center;
}



/* ================= EVENT INFO – GLASS PREMIUM ================= */

.info-premium {
  padding: 90px 8%;
}

/* Grid */
.info-wrapper {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* Glass Card */
.info-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  border-radius: 22px;
  padding: 26px 22px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,215,0,0.4);

  box-shadow:
    0 0 18px rgba(255,47,166,0.15),
    inset 0 0 12px rgba(255,255,255,0.05);

  text-align: center;

  transition: all 0.35s ease;
}

/* Hover */
.info-glass-card:hover {
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    0 0 28px rgba(255,47,166,0.35),
    0 0 45px rgba(255,215,0,0.25);
}

/* Icon */
.info-icon {
  font-size: 1.6rem;
  color: #ff2fa6;
  margin-bottom: 12px;
}

/* Title */
.info-glass-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;

  color: #ffde59;
  margin-bottom: 12px;
}

/* Text */
.info-glass-card p {
  font-size: 0.9rem;
  color: #f2f2f2;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Email Link */
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 0.9rem;
  font-weight: 600;

  color: #ff2fa6;
  text-decoration: none;

  transition: 0.25s ease;
}

.info-link:hover {
  color: #ffd700;
}

/* Call Button */
.info-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;
  margin-left: 6px;

  font-size: 0.8rem;
  font-weight: 600;

  color: #ff2fa6;
  text-decoration: none;

  border: 1px solid rgba(255,47,166,0.4);
  border-radius: 14px;

  background: rgba(255,255,255,0.04);

  transition: all 0.25s ease;
}

.info-call:hover {
  color: #ffd700;

  background: rgba(255,215,0,0.12);

  border-color: rgba(255,215,0,0.7);

  box-shadow: 0 0 14px rgba(255,215,0,0.4);
}

/* ================= EVENT INFO – ICON ALIGN FIX (MOBILE) ================= */

@media (max-width: 768px) {

  /* Make card relative */
  .info-glass-card {
    position: relative;
  }

  /* Lock icon to top-left */
  .info-icon {
    position: absolute;

    top: 14px;
    left: 14px;

    margin: 0; /* remove old spacing */

    font-size: 1.2rem;

    color: #ff2fa6;

    z-index: 2;
  }

  /* Give space so text doesn't overlap icon */
  .info-glass-card h3,
  .info-glass-card p,
  .info-link {
    padding-left: 28px;
  }
}


/* ================= MAP ================= */
.map {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  border: none;
}
/* ================= EVENT MODAL ================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: radial-gradient(
    circle at top,
    rgba(120,0,180,0.7),
    rgba(20,0,40,0.95)
  );
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  color: #fff;
  box-shadow:
    0 0 40px rgba(255,47,166,0.6),
    inset 0 0 25px rgba(255,215,0,0.25);
  position: relative;
}

.modal-box h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

.reg-status {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.qr-box {
  margin: 20px 0;
}

.qr-placeholder {
  width: 180px;
  height: 180px;
  margin: 15px auto;
  border-radius: 16px;
  border: 2px dashed #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
}

.note {
  font-size: 0.9rem;
  opacity: 0.85;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ffd700;
}

/* ===== NEW EVENTS LAYOUT ===== */
.event-layout.vertical {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Bottom event list */
.event-list.bottom-events {
  flex-direction: row;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* Bottom cards look like tiles */
.bottom-events .event-card {
  min-width: 180px;
  text-align: center;
  padding: 18px 22px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* Active card glow stronger */
.bottom-events .event-card.active {
  transform: scale(1.12);
}

/* Mobile friendly */
@media (max-width: 768px) {
  .event-feature img {
    height: 220px;
  }

  .event-list.bottom-events {
    gap: 18px;
  }

  .bottom-events .event-card {
    min-width: 150px;
  }
}
/* ===== SELECTED EVENT CARD (LITTLE MORE SMALL) ===== */
.event-feature {
  max-width: 700px;      /* ⬅️ tiny width reduction */
  margin: 0 auto;
  padding: 26px;         /* ⬅️ slightly tighter */
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    #7b005a,
    #b3007d,
    #4a0038
  );

  border: 2px solid #ffd700;
  box-shadow:
    0 0 24px rgba(255, 215, 0, 0.4),
    0 0 48px rgba(255, 47, 166, 0.3);
}

/* IMAGE – MICRO REDUCE */
.event-feature img {
  width: 100%;
  height: 240px;        /* ⬅️ just a little smaller */
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* TITLE */
.event-feature h3 {
  font-size: 1.55rem;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}

/* DESCRIPTION */
.event-feature p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* BUTTON */
.event-feature .event-btn {
  margin-top: 16px;
  padding: 9px 26px;
  font-size: 0.85rem;
}
/* ================= EVENTS GRID : 5 + 5 LAYOUT ================= */

/* ================= EVENTS GRID ================= */

.bottom-events {
  --second-row-shift: 100%;  /* ← CONTROL HERE */

  display: grid;
  grid-template-columns: repeat(5, auto);
  column-gap: 12px;
  row-gap: 3px;
  justify-content: center;
  justify-items: center;
}

/* ONLY second row (items 6–9) */
.bottom-events > :nth-child(6),
.bottom-events > :nth-child(7),
.bottom-events > :nth-child(8),
.bottom-events > :nth-child(9) {
  margin-left: var(--second-row-shift);
}

@media (max-width: 1024px) {
  .bottom-events {
    --second-row-shift: 0px;  /* RESET */
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .bottom-events {
    --second-row-shift: 0px;  /* RESET */
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Card size */
.bottom-events .event-card {
  width: 220px;
}


/* Card container */
.bottom-events .event-card {
  width: 200px;
  padding: 14px;
  border-radius: 18px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,215,0,0.25);
  transition: 0.35s;
}

/* Poster image */
.bottom-events .event-card img {
  width: 100%;
  height: 110px;              /* ⬅️ matches your screenshot */
  object-fit: cover;
  border-radius: 12px;
}

/* Event title */
.bottom-events .event-card span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #aaa;
}

/* Active card */
.bottom-events .event-card.active {
  background: linear-gradient(
    135deg,
    rgba(255,47,166,0.9),
    rgba(120,0,90,0.9)
  );
  color: #fff;
  transform: scale(1.08);
  box-shadow:
    0 0 25px rgba(255,215,0,0.8),
    0 0 45px rgba(255,47,166,0.6);
}

.bottom-events .event-card.active span {
  color: #fff;
}

/* Hover */
.bottom-events .event-card:hover {
  transform: scale(1.05);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .bottom-events .event-card {
    width: 160px;
  }

  .bottom-events .event-card img {
    height: 90px;
  }
}
/* 🎥 Poster zoom on hover */
.bottom-events .event-card img {
  transition: transform 0.4s ease;
}

.bottom-events .event-card:hover img {
  transform: scale(1.08);
}
/* ✨ Animated active border */
.bottom-events .event-card.active {
  position: relative;
  overflow: hidden;
}

.bottom-events .event-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    #ffd700,
    #ff2fa6,
    #ffd700
  );
  background-size: 300% 300%;
  animation: borderFlow 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
/* 🔄 Smooth feature transition */
#featureImg,
#featureTitle,
#featureDesc {
  transition: opacity 0.3s ease;
}
/* ===== FIX EVENTS HEADING VISIBILITY ===== */
#events .section-title {
  display: block;
  position: relative;
  z-index: 3;
  margin-bottom: 60px;
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 768px) {
  .event-list.bottom-events {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
  }
}

@media (max-width: 480px) {
  .event-list.bottom-events {
    grid-template-columns: 1fr; /* 1 per row on very small screens */
  }
}

/* ================= 2D SCROLL ANIMATION ================= */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Cards micro animation */
.event-card,
.workshop-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover,
.workshop-item:hover {
  transform: translateY(-6px);
}
/* ================= STAGGERED ANIMATION ================= */

.stagger {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* When active */
.stagger.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= WORKSHOPS – FINAL CLEAN ================= */

.workshops-section {
  padding: 100px 10%;
  text-align: center;
}

/* WORKSHOPS GRID (TOP 4 CARDS) */
.workshop-grid {
  max-width: 1200px;
  margin: 0 auto 90px;          /* perfect center */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

/* WORKSHOP CARD */
.workshop-card {
  height: 300px;                /* ⬆️ increased size */
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(10,10,20,0.85),
    rgba(40,0,60,0.95)
  );
  border: 1.5px solid rgba(255,215,0,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  color: #ffd700;
  text-align: center;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER */
.workshop-card:hover {
  transform: translateY(-14px) scale(1.07);
  box-shadow:
    0 0 40px rgba(255,215,0,0.85),
    0 0 70px rgba(255,47,166,0.45);
}

/* ================= FEATURED PROGRAM ================= */

.featured-program {
  max-width: 1200px;
  height: 520px;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 36px;
  border: 2px solid #ffd700;
  box-shadow:
    0 0 50px rgba(255,215,0,0.45),
    0 0 90px rgba(255,47,166,0.45);
  text-decoration: none;
}

/* IMAGE */
.featured-program img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.featured-program:hover img {
  transform: scale(1.06);
}

/* OVERLAY */
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(90,0,130,0.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
 text-align: left;
  font-family: 'Orbitron', sans-serif;
}

.featured-overlay .badge {
  color: #f919a7;
  font-size: 1.0rem;
  letter-spacing: 2px;
  margin-bottom: 9px;
   font-family: 'Orbitron', sans-serif;

  position: relative;
  top: -50px;   /* 🔼 move up (adjust value) */
}


/* ARTIST */
.artist-name {
  font-size: 3.4rem;
  color: #ffd700;
  margin-top: 8px;
   text-align: left;
  font-family: 'Orbitron', sans-serif;
}

/* LIVE CONCERT */
.live-text {
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin: 14px 0 26px;
  text-align: left;
  color: #ffd700;
     font-family: 'Orbitron', sans-serif;

  position: relative;
  top: -10px;   /* 🔼 move up (adjust value) */
}

/* CTA */
.cta {
  font-size: 1rem;
  color: #ffd700;
  text-align: left;
  text-decoration: underline;
}

/* ================= STAGGER ANIMATION ================= */

.stagger {
  opacity: 0;
  transform: translateY(50px);
  animation: workshopIn 0.8s ease forwards;
}

.stagger:nth-child(1) { animation-delay: 0.1s; }
.stagger:nth-child(2) { animation-delay: 0.25s; }
.stagger:nth-child(3) { animation-delay: 0.4s; }
.stagger:nth-child(4) { animation-delay: 0.55s; }

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-program {
    height: 420px;
  }

  .featured-overlay {
    padding: 40px;
  }

  .featured-overlay h3 {
    font-size: 2.4rem;
  }
}

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

  .featured-program {
    height: 360px;
  }
}
/* ===== TERMINAL STYLE EVENT FEATURE ===== */

.terminal-card {
  margin-top: 15px;
  background: linear-gradient(145deg, rgba(0,0,0,0.85), rgba(20,0,40,0.95));
  border: 1.5px solid rgba(255,215,0,0.4);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  font-family: 'Orbitron', sans-serif;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7df9ff;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.terminal-title {
  font-size: 1.6rem;
  color: #ffd700;
}

.terminal-status {
  opacity: 0.7;
}

.terminal-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cfdfff;
  min-height: 160px;
}

.terminal-tabs {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700;
  padding: 8px 14px;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #ffd700;
  color: #000;
}
/* ================= COMPETITIONS & EVENTS – MOBILE SAFETY ================= */
@media (max-width: 768px) {

  .terminal-card {
    width: 100%;
    padding: 22px 18px;
  }

  .terminal-tabs {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .terminal-tabs .tab-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .event-card {
    width: 100%;
  }
}

/* ================= EVENT POPUP ================= */

.event-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.event-modal.show {
  display: flex;
}

.event-modal-box {
  width: 90%;
  max-width: 900px;
  background: linear-gradient(
    145deg,
    rgba(10,10,20,0.95),
    rgba(40,0,60,0.95)
  );
  border-radius: 28px;
  border: 2px solid #ffd700;
  box-shadow:
    0 0 60px rgba(255,215,0,0.4),
    0 0 120px rgba(255,47,166,0.3);
  overflow: hidden;
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.event-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ffd700;
}



/* TABS */
.event-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  background: rgba(0,0,0,0.6);
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,215,0,0.4);
  background: transparent;
  color: #ffd700;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg,#ff2fa6,#7b005a);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,47,166,0.7);
}

/* CONTENT */
.event-tab-content {
  padding: 30px 40px;
  color: #eee;
  min-height: 220px;
}

.tab-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* TERMINAL POSTER */
.terminal-poster {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 0 25px rgba(255,215,0,0.6),
    0 0 40px rgba(255,47,166,0.4);
}
/* ================= TERMINAL EVENT CARD ================= */

.terminal-card {
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 30px;
  border: 2px solid #ffd700;
  background: radial-gradient(
    circle at top,
    rgba(120, 0, 180, 0.6),
    rgba(15, 0, 30, 0.95)
  );
  box-shadow:
    0 0 45px rgba(255,215,0,0.4),
    0 0 90px rgba(255,47,166,0.4);
  overflow: hidden;
}

/* HEADER */
.terminal-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
  border-bottom: 1px solid rgba(255,215,0,0.3);
}

.terminal-title {
  font-size: 1.6rem;
}

.terminal-status {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ================= TAB CONTENT AREA (FIX SIZE) ================= */

.terminal-body {
  height: 420px;                /* 🔥 SAME SIZE AS POSTER */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  position: relative;
}




/* ================= TABS ================= */

.terminal-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  border-top: 1px solid rgba(255,215,0,0.3);
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 20px;
  background: transparent;
  border: 1.5px solid rgba(255,215,0,0.4);
  color: #ffd700;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover {
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.tab-btn.active {
  background: linear-gradient(135deg, #ff2fa6, #7b005a);
  color: #fff;
  box-shadow: 0 0 25px rgba(255,47,166,0.8);
}
/* ================= REGISTER BUTTON ================= */

.register-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;

  background: linear-gradient(135deg,#ff2fa6,#7b005a);
  color: #fff;

  border: 1.5px solid rgba(255,215,0,0.6);
  box-shadow:
    0 0 18px rgba(255,47,166,0.7),
    0 0 30px rgba(255,215,0,0.4);

  transition: 0.3s ease;
}

.register-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 28px rgba(255,47,166,0.9),
    0 0 45px rgba(255,215,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .terminal-body {
    height: 320px;
    font-size: 1rem;
  }

  .event-poster h2 {
    font-size: 2rem;
  }
}


/* Text tabs content */
.terminal-body p {
  max-width: 900px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #eaeaea;
}

.featured-overlay {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(80,0,120,0.25)
  );
}



/* ================= PROGRAM SCHEDULE – OPTION 3 ================= */

#schedule-glow {
  position: relative;
}

/* WRAPPER */
.schedule-glow-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
}

/* DAY BLOCK */
.glow-day {
  padding: 35px;
  border-radius: 30px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,215,0,0.35);
  box-shadow:
    0 0 35px rgba(0,0,0,0.7),
    inset 0 0 25px rgba(255,47,166,0.2);
}

/* HEADER */
.glow-header {
  text-align: center;
  margin-bottom: 28px;
}

.glow-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: #ffd700;
}

.glow-header span {
  display: block;
  margin-top: 6px;
  color: #ff2fa6;
  letter-spacing: 1px;
}

/* DIVIDER */
.glow-divider {
  position: relative;
}

.glow-divider::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    #ffd700,
    #ff2fa6,
    #ffd700,
    transparent
  );
  box-shadow: 0 0 25px rgba(255,215,0,0.9);
}

/* LIST */
.glow-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.glow-item {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(0,0,0,0.65);
  transition: 0.35s ease;
}

.glow-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,215,0,0.6);
}

/* TIME */
.glow-time {
  min-width: 90px;
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
  font-size: 0.9rem;
}

/* TEXT */
.glow-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.glow-item p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .schedule-header {
    grid-template-columns: 1fr 24px;
  }

  .schedule-time {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .schedule-header h4 {
    font-size: 0.95rem;
  }
}

/* ================= CLICK TO EXPAND SCHEDULE ================= */

.schedule-item {
  background: rgba(0,0,0,0.65);
  border-radius: 20px;
  padding: 18px 22px;
  transition: 0.3s ease;
}

/* HEADER */
.schedule-header {
  display: grid;
  grid-template-columns: 90px 1fr 24px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

/* TIME */
.schedule-time {
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
  font-size: 0.9rem;
}

/* ICON */
.toggle-icon {
  font-size: 1.6rem;
  color: #ffd700;
  transition: transform 0.3s ease;
}

/* BODY (HIDDEN) */
.schedule-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 90px;
  transition: all 0.35s ease;
}

/* ACTIVE */
.schedule-item.active .schedule-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 14px;
}

.schedule-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .schedule-header {
    grid-template-columns: 1fr 24px;
  }

  .schedule-body {
    padding-left: 0;
  }

  .schedule-time {
    display: block;
    margin-bottom: 6px;
  }
}

/* ================= CLICK TO EXPAND SCHEDULE ================= */

.schedule-item {
  background: rgba(0,0,0,0.65);
  border-radius: 20px;
  padding: 18px 22px;
  transition: 0.3s ease;
}

/* HEADER */
.schedule-header {
  display: grid;
  grid-template-columns: 90px 1fr 24px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

/* TIME */
.schedule-time {
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
  font-size: 0.9rem;
}

/* ICON */
.toggle-icon {
  font-size: 1.6rem;
  color: #ffd700;
  transition: transform 0.3s ease;
}

/* BODY (HIDDEN) */
.schedule-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 90px;
  transition: all 0.35s ease;
}

/* ACTIVE */
.schedule-item.active .schedule-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 14px;
}

.schedule-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* ================= MOBILE PROGRAM SCHEDULE FIX ================= */
@media (max-width: 768px) {

  /* Stack Day 1 & Day 2 */
  .schedule-glow-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  /* Make day cards full width */
  .glow-day {
    width: 100%;
  }

  /* Hide vertical divider */
  .glow-divider {
    display: none;
  }

  /* Reduce card padding slightly */
  .glow-day {
    padding: 24px 20px;
  }

  /* Improve item spacing */
  .glow-item {
    padding: 14px 16px;
    gap: 14px;
  }

  /* Time alignment */
  .glow-time {
    min-width: 70px;
    font-size: 0.85rem;
  }
}

/* ===== RULES CONTENT REFINEMENT ===== */

/* Keep section title centered */
.terminal-body h3,
.terminal-body h2 {
  text-align: center;
  color: #ffd700;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

/* Rules list container */
.terminal-body ul {
  max-width: 720px;          /* prevents over-wide text */
  margin: 0 auto;            /* centers the block */
  padding-left: 0;
  list-style: none;
}

/* Individual rule */
.terminal-body ul li {
  text-align: left;          /* 🔥 KEY CHANGE */
  color: #eaeaea;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: 10px 0 10px 28px;
  position: relative;
}

/* Custom glowing bullet */
.terminal-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff2fa6;
  font-size: 1.8rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,47,166,0.8);
}

/* Subtle hover effect */
.terminal-body ul li:hover {
  color: #ffffff;
}
/* ===== EVENT TITLE GLOW ===== */
.terminal-title {
  color: #ffd700;
  text-shadow:
    0 0 12px rgba(255,215,0,0.6),
    0 0 28px rgba(255,47,166,0.4);
}
/* ===== SECTION SUB HEADING ===== */
.terminal-body strong {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #ff2fa6;
  text-shadow:
    0 0 10px rgba(255,47,166,0.6),
    0 0 20px rgba(255,215,0,0.3);
  margin-bottom: 16px;
}
/* ===== SOFT LIGHT BEAM ===== */
.terminal-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255,215,0,0.08),
      transparent 60%
    );
  pointer-events: none;
}
/* ===== MOVING LIGHT SWEEP ===== */
.terminal-body::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.04),
    transparent 60%
  );
  animation: lightSweep 8s linear infinite;
  pointer-events: none;
}

@keyframes lightSweep {
  from { transform: translateX(-30%); }
  to   { transform: translateX(30%); }
}
/* ===== LEFT ALIGN RULES / GUIDELINES LIST ===== */

.terminal-body ul {
  max-width: 720px;
  margin: 0 auto;          /* keep block centered */
  padding-left: 0;
  list-style: none;
}

.terminal-body ul li {
  text-align: left;        /* 🔥 THIS IS THE KEY */
  display: block;
  padding-left: 34px;      /* space for custom bullet */
  position: relative;
  color: #eaeaea;
}

/* Custom glowing bullet */
.terminal-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.6rem;
  color: #ff2fa6;
  text-shadow: 0 0 10px rgba(255,47,166,0.8);
}
.terminal-body ul {
  max-width: 760px;
}
/* FORCE LEFT ALIGN FOR RULES TEXT */
.terminal-body {
  text-align: left !important;
}

/* Keep heading centered */
.terminal-body strong {
  display: block;
  text-align: center;
}

/* Better spacing */
.terminal-body {
  max-width: 760px;
  margin: 0 auto;
}
/* ===== CASH PRIZE GLOW BLOCK ===== */

.cash-prize {
  text-align: center;
  margin-top: 35px;
}

/* Cash Prize heading */
.cash-prize .title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #ff2fa6;
  text-shadow:
    0 0 12px rgba(255,47,166,0.8),
    0 0 22px rgba(255,215,0,0.4);
  margin-bottom: 12px;
}

/* Amount */
.cash-prize .amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  color: #ffd700;
  text-shadow:
    0 0 16px rgba(255,215,0,0.9),
    0 0 36px rgba(255,47,166,0.6);
}

/* Subtle pulse */
.cash-prize {
  animation: prizePulse 3.5s ease-in-out infinite;
}

@keyframes prizePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
/* ================= CASH PRIZE DISPLAY ================= */

.cash-prize-box {
  width: 100%;
  margin-top: 35px;
  text-align: center; /* 🔥 force center */
}

/* Title */
.cash-prize-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: #ff2fa6;
  margin-bottom: 18px;
  text-shadow:
    0 0 12px rgba(255,47,166,0.9),
    0 0 24px rgba(255,215,0,0.4);
}

/* ================= CASH PRIZE ================= */

.cash-prize-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffd700;
  margin-top: 12px;
  letter-spacing: 2px;

  text-shadow:
    0 0 18px rgba(255,215,0,0.9),
    0 0 40px rgba(255,215,0,0.7),
    0 0 60px rgba(255,47,166,0.6);

  animation: prizeGlow 3s ease-in-out infinite;
}

.cash-prize-amount.second {
  font-size: 2.4rem;
  opacity: 0.85;
}

.cash-prize-sub {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #ccc;
}

/* Glow animation */
@keyframes prizeGlow {
  0%, 100% {
    text-shadow:
      0 0 14px rgba(255,215,0,0.6),
      0 0 30px rgba(255,47,166,0.4);
  }
  50% {
    text-shadow:
      0 0 22px rgba(255,215,0,1),
      0 0 50px rgba(255,47,166,0.7);
  }
}

/* ================= EVENT POSTER (FINAL FIX) ================= */

.event-poster {
  width: 100%;
  height: 420px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;

  /* fallback gradient */
  background: linear-gradient(
    135deg,
    #24003d,
    #4b0070,
    #24003d
  );
}

/* Poster image */
.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* ✅ NO FADE */
  opacity: 1 !important;

  /* ✅ Bright but natural */
  filter: brightness(1.12) contrast(1.05) saturate(1.1);
}

/* Soft cinematic overlay */
.event-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.18),
    rgba(90,0,130,0.15)
  );
  pointer-events: none;
}

/* ================= SEMINAR DETAILS ================= */

.seminar-details {
  margin-top: 15px;
  color: #ddd;
  font-size: 14.5px;
  line-height: 1.6;
}

.seminar-details p {
  margin-bottom: 6px;
}

.seminar-summary {
  margin-top: 8px;
  color: #ccc;
}
/* ================= SEMINARS SECTION ================= */

.seminars-section {
  padding: 100px 10%;
  text-align: center;
}

/* GRID */
.seminar-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* CARD */
.seminar-card {
  padding: 40px 32px;
  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(10,10,20,0.75),
    rgba(40,0,60,0.95)
  );

  border: 1.5px solid rgba(255,215,0,0.35);
  backdrop-filter: blur(12px);

  box-shadow:
    0 0 35px rgba(0,0,0,0.7),
    inset 0 0 25px rgba(255,47,166,0.2);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER */
.seminar-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 0 40px rgba(255,215,0,0.9),
    0 0 70px rgba(255,47,166,0.45);
}

/* TITLE */
.seminar-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  color: #ffd700;
  margin-bottom: 14px;
}

/* TEXT */
.seminar-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 20px;
}

/* META */
.seminar-meta {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #ff2fa6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .seminar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .seminar-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= WORKSHOP MODAL ================= */

.workshop-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.workshop-modal.show {
  display: flex;
}

/* BOX */
.workshop-modal-box {
  width: 90%;
  max-width: 1100px;
  border-radius: 32px;
  background: radial-gradient(
    circle at top,
    rgba(120,0,180,0.65),
    rgba(15,0,30,0.95)
  );
  border: 2px solid #ffd700;
  box-shadow:
    0 0 50px rgba(255,215,0,0.45),
    0 0 100px rgba(255,47,166,0.4);
  padding: 40px;
  animation: modalIn 0.45s ease;
  position: relative;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.workshop-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffd700;
}

/* CONTENT GRID */
.workshop-modal-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

/* SPEAKER */
.workshop-speaker img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow:
    0 0 25px rgba(255,215,0,0.5),
    0 0 45px rgba(255,47,166,0.4);
}

/* DETAILS */
.workshop-details h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.workshop-details h4 {
  font-size: 1.4rem;
  color: #ff2fa6;
  margin-bottom: 6px;
}

.designation {
  color: #ddd;
  margin-bottom: 18px;
  line-height: 1.5;
}

.workshop-info p {
  margin-bottom: 6px;
  color: #cfcfcf;
}

.workshop-desc {
  margin-top: 16px;
  line-height: 1.8;
  color: #eee;
}

/* MOBILE */
@media (max-width: 900px) {
  .workshop-modal-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ================= WORKSHOPS ================= */

.workshop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.workshop-card {
  padding: 36px 30px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(20,0,40,0.9),
    rgba(60,0,90,0.95)
  );
  border: 1.5px solid rgba(255,215,0,0.4);
  text-align: center;
  cursor: pointer;

  transition: 0.4s ease;
}

.workshop-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 14px;
}

.workshop-card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

.workshop-meta {
  display: block;
  margin-top: 16px;
  color: #ff2fa6;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.workshop-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 0 35px rgba(255,215,0,0.8),
    0 0 60px rgba(255,47,166,0.5);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-card {
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(135deg,#24003d,#0b0b20);
  border-radius: 28px;
  padding: 30px;
  border: 2px solid #ffd700;
  animation: popIn 0.45s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

.modal-left img {
  width: 100%;
  border-radius: 20px;
}

.modal-right h2 {
  color: #ffd700;
  font-family: Orbitron;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  font-size: 22px;
  color: #ffd700;
}
/* ================= WORKSHOP POPUP TEXT ================= */

.workshop-content {
  padding: 40px 50px;
  font-family: 'Inter', sans-serif;
  color: #eee;
  animation: slideFade 0.6s ease forwards;
}

/* TITLE */
.workshop-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  color: #ffd700;
  margin-bottom: 20px;
  letter-spacing: 1.5px;

  text-shadow:
    0 0 15px rgba(255,215,0,0.7),
    0 0 35px rgba(255,47,166,0.5);
}

/* SPEAKER BLOCK */
.speaker-block {
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid #ff2fa6;
}

.speaker-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff2fa6;
  margin-bottom: 2px;
}

.speaker-role {
  font-size: 0.95rem;
  color: #ccc;
  opacity: 0.9;
}

.speaker-company {
  font-size: 0.95rem;
  color: #aaa;
}

/* DESCRIPTION */
.workshop-desc {
  margin: 20px 0 26px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e6e6e6;
}

/* META LIST */
.workshop-meta {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workshop-meta li {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-size: 0.95rem;

  box-shadow:
    0 0 18px rgba(255,215,0,0.25);
}

.workshop-meta li span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #ffd700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ENTRY ANIMATION */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .workshop-meta {
    grid-template-columns: 1fr;
  }

  .workshop-title {
    font-size: 2.1rem;
  }
}


/* ================= SEMINAR POPUP CARD ================= */

.seminar-popup {
  width: 90%;
  max-width: 980px;
  background: radial-gradient(
    circle at top,
    rgba(120,0,180,0.65),
    rgba(20,0,40,0.95)
  );
  border-radius: 28px;
  border: 2px solid #ffd700;

  box-shadow:
    0 0 45px rgba(255,215,0,0.45),
    0 0 90px rgba(255,47,166,0.35);

  padding: 30px;
  position: relative;

  animation: seminarPop 0.45s ease forwards;
}

/* ENTRY ANIMATION */
@keyframes seminarPop {
  from {
    transform: scale(0.85) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.seminar-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  color: #ffd700;
  cursor: pointer;
  z-index: 5;
}

/* INNER GRID */
.seminar-popup-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* LEFT CONTENT */
.seminar-info {
  text-align: left;
  color: #eee;
}

/* TITLE */
.seminar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 12px;
}

.seminar-title span {
  color: #ff2fa6;
}

/* META */
.seminar-meta {
  color: #ff2fa6;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* SPEAKER TEXT */
.seminar-info strong {
  font-size: 1.1rem;
  color: #ffd700;
}

.seminar-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 8px;
  color: #ddd;
}

/* RIGHT IMAGE */
.seminar-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;

  box-shadow:
    0 0 25px rgba(255,215,0,0.6),
    0 0 40px rgba(255,47,166,0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .seminar-popup-inner {
    grid-template-columns: 1fr;
  }

  .seminar-title {
    font-size: 1.8rem;
  }
}
/* ================= SEMINAR MODAL – FINAL LOCK ================= */

.seminar-modal {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  display: none !important;   /* 🔴 HIDDEN BY DEFAULT */
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);

  z-index: 10000;
}

.seminar-modal.show {
  display: flex !important;   /* ✅ SHOW ONLY ON CLICK */
}
/* SEMINAR IMAGE FACE ALIGN FIX */
.seminar-image img {
  width: 100%;
  height: 420px;              /* keep your current size */
  object-fit: cover;          /* keep cover */
  object-position: center top; /* ⬅️ move image DOWN, show face */
}
/* ================= TEXT VISUAL UPGRADE ================= */

/* TITLE */
.seminar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #ffd700;
  margin-bottom: 18px;
}

.seminar-title .highlight {
  display: block;
  color: #ff2fa6;
  font-size: 2.2rem;
}

/* CHIPS */
.seminar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.chip {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700;
  backdrop-filter: blur(6px);
}

.chip.speaker {
  color: #000;
  background: linear-gradient(135deg,#ffd700,#ff2fa6);
  font-weight: 600;
}

/* SPEAKER CARD */
.speaker-card {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid #ff2fa6;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
}

.speaker-card .role {
  color: #ff2fa6;
  font-weight: 600;
  margin-bottom: 6px;
}

.speaker-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* DESCRIPTION BOX */
.seminar-desc-box {
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,47,166,0.15),
    rgba(120,0,180,0.15)
  );
  border: 1px solid rgba(255,215,0,0.35);
}

.seminar-desc-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #f1f1f1;
}

.seminar-desc-box strong {
  color: #ffd700;
}
/* ================= SEMINAR – ANTIDRONE STYLE ================= */

.seminar-style {
  color: #eaeaea;
  text-align: left;
}

/* BIG NEON TITLE */
.seminar-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
  color: #ffd700;
  text-shadow:
    0 0 12px rgba(255,215,0,0.6),
    0 0 28px rgba(255,47,166,0.4);
  margin-bottom: 26px;
}

.seminar-heading span {
  color: #ff2fa6;
}

/* SPEAKER BLOCK WITH LEFT LINE */
.seminar-speaker-block {
  border-left: 4px solid #ff2fa6;
  padding-left: 16px;
  margin-bottom: 22px;
}

.speaker-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff2fa6;
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* DESCRIPTION */
.seminar-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e6e6e6;
}

/* META CARDS (DATE / TIME / VENUE) */
.seminar-meta-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-card {
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1.5px solid rgba(255,215,0,0.5);
  background: rgba(0,0,0,0.35);
  text-align: center;
  color: #ffd700;
  font-size: 1rem;

  box-shadow:
    0 0 20px rgba(255,215,0,0.25);
}

.meta-card span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  color: #ff2fa6;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .seminar-heading {
    font-size: 2.2rem;
  }

  .seminar-meta-cards {
    gap: 14px;
  }
}
/* FORCE META CARDS IN ONE ROW */
.seminar-meta-cards {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;   /* one row */
  align-items: stretch;
}

.meta-card {
  flex: 1;             /* equal width */
  min-width: 0;
}
/* ================= GLOBAL MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  body {
    font-size: 14px;
  }

  .section {
    padding: 70px 6%;
    min-height: auto;
  }

  .section-title,
  .about-heading,
  .info-heading {
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
  }

  /* ---------- NAVBAR ---------- */
  .navbar {
    right: 50%;
    transform: translateX(50%);
    top: 12px;
  }

  .navbar ul {
    gap: 14px;
  }

  .navbar a {
    font-size: 0.7rem;
  } 

  /* ---------- HERO ---------- */
.hero {
  padding: 40px 20px;
  height: auto;
}

.tharang-logo {
  width: 240px;
  transform: translateY(0px); /* 👈 move logo down */
}

#textCanvas {
  height: 120px;
}

.scan-text {
  font-size: 1rem;
}

.ai-sub {
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* ---------- ABOUT ---------- */
.about-box {
  padding: 24px;
  border-radius: 18px;
}

.about-box p {
  font-size: 0.9rem;
  line-height: 1.7;
}

  /* ---------- EVENTS ---------- */
  .event-layout.vertical {
    gap: 40px;
  }

  .terminal-card {
    padding: 18px;
    border-radius: 18px;
  }

  .terminal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .terminal-title {
    font-size: 1.2rem;
  }

  .register-btn {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .terminal-body {
    font-size: 0.9rem;
    padding: 16px;
    height: auto;
  }

  .terminal-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-btn {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  /* ---------- EVENT CARDS GRID ---------- */
  .event-list.bottom-events {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bottom-events .event-card {
    width: 100%;
    padding: 10px;
    border-radius: 14px;
  }

  .bottom-events .event-card img {
    height: 85px;
  }

  .bottom-events .event-card span {
    font-size: 0.75rem;
  }

  .bottom-events .event-card.active {
    transform: scale(1.02);
  }

  /* Disable magnetic hover on mobile */
  .event-card:hover {
    transform: none;
  }

  /* ---------- WORKSHOPS ---------- */
  .seminar-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .seminar-card,
  .workshop-card {
    padding: 22px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  /* ---------- FEATURED PROGRAM ---------- */
  .featured-program {
    height: 320px;
    border-radius: 24px;
  }

  .featured-overlay {
    padding: 30px;
  }

  .artist-name {
    font-size: 2rem;
  }

  .live-text {
    font-size: 0.9rem;
  }

  /* ---------- INFO BOXES ---------- */
  .info-grid {
    gap: 20px;
  }

  .info-box {
    padding: 22px;
    border-radius: 18px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .info-box h3 {
    font-size: 0.9rem;
  }

  /* ---------- MAP ---------- */
  .map {
    height: 300px;
    border-radius: 16px;
  }

  /* ---------- MODALS ---------- */
  .modal-box,
  .modal-card,
  .seminar-popup {
    width: 92%;
    padding: 22px;
    border-radius: 20px;
  }

  .modal-box h2 {
    font-size: 1.3rem;
  }

  .qr-placeholder {
    width: 150px;
    height: 150px;
  }

}
/* ================= CURSOR TEXT – MOBILE FIX ================= */
@media (max-width: 768px) {
  #textCanvas {
    height: 90px;
    pointer-events: none; /* disable touch interaction */
  }
}
/* ================= WORKSHOPS 2 x 2 FIX ================= */

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

/* Mobile */
@media (max-width: 600px) {
  .workshop-grid-2x2 {
    grid-template-columns: 1fr;
  }
}
/* ================= MOBILE NAV CENTER LOGO + STACKED MENU ================= */
@media (max-width: 768px) {

  /* Header layout */
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center the IHRD logo */
  .ihrd-logo {
    position: static;          /* remove absolute/fixed */
    margin: 20px auto 10px;
    display: block;
  }

  /* Navbar full width */
  .navbar {
    width: 100%;
    justify-content: center;
  }

  /* Stack menu vertically under logo */
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }
}

/* ================= MOBILE NAV – FINAL (CLEAN & STABLE) ================= */
@media (max-width: 768px) {

  /* Header stack */
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* IHRD logo centered */
  .ihrd-logo {
    position: static !important;
    margin: 18px auto 10px;
    display: block;
  }

  /* Navbar below logo */
  .navbar {
    position: static !important;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Straight horizontal menu */
  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px;
    flex-wrap: wrap;
    padding: 6px 10px;
  }

  .nav-menu li {
    display: inline-block;
  }

  .nav-menu a {
    font-size: 0.7rem;
  }
}
/* ================= MOBILE HEADER – FINAL CLEAN ================= */
@media (max-width: 768px) {

  /* Header stack */
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center logo */
  .ihrd-logo {
    position: static !important;
    margin: 18px auto 10px;
    display: block;
  }

  /* Reset navbar desktop positioning */
  .navbar {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;

    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Straight menu under logo */
  .navbar ul,
  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 14px;
    padding: 6px 10px;
    margin: 0;

    list-style: none;
    flex-wrap: wrap; /* prevents side swipe */
  }

  .nav-menu li {
    display: inline-block;
  }

  .nav-menu a {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  /* Hero comes after menu */
  .hero {
    margin-top: 10px;
  }
}
/* ================= THARANG TEXT MODES ================= */

/* Hide mobile text by default (PC) */
.tharang-mobile {
  display: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-align: center;
  margin: 30px 0 10px;

  /* dotted LED look */
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255,255,255,0.4),
    0 0 14px rgba(255,47,166,0.4);
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

  /* ❌ Disable canvas completely */
  #textCanvas {
    display: none !important;
  }

  /* ✅ Show static THARANG */
  .tharang-mobile {
    display: block;
  }
}
/* ================= MOBILE: EVENTS STACK VERTICALLY ================= */
@media (max-width: 768px) {

  .event-list.bottom-events {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 18px;
  }

  .bottom-events .event-card {
    width: 100%;
    max-width: 320px;   /* nice mobile width */
  }

}
/* ================= MOBILE POSTER FIX ================= */
@media (max-width: 768px) {

  /* Poster container */
  .event-poster {
    height: auto;              /* 🔥 allow natural height */
    padding: 12px;
  }

  /* Poster image */
  .event-poster img {
    height: auto;              /* 🔥 no forced height */
    max-height: none;
    object-fit: contain;       /* 🔥 SHOW FULL POSTER */
    border-radius: 16px;
  }

}
/* ================= MOBILE EVENT CARD IMAGE FIX ================= */
@media (max-width: 768px) {

  /* Event card container */
  .bottom-events .event-card {
    height: auto;
  }

  /* Event card image – NO CROP */
  .bottom-events .event-card img {
    height: auto;
    max-height: none;
    object-fit: contain;   /* 🔥 KEY */
    background: transparent;
  }
}
/* ================= MOBILE EVENT POSTER UPGRADE ================= */
@media (max-width: 768px) {

  /* Poster wrapper (card feel) */
  .terminal-body .terminal-poster,
  .event-poster {
    border-radius: 22px;
    padding: 14px;
    background: linear-gradient(
      145deg,
      rgba(255,47,166,0.18),
      rgba(120,0,180,0.15)
    );
    box-shadow:
      0 0 35px rgba(255,47,166,0.45),
      0 0 70px rgba(255,215,0,0.25);
  }

  /* Poster image */
  .terminal-body img,
  .event-poster img {
    border-radius: 16px;
    animation: posterFloat 5s ease-in-out infinite;
  }

  /* Button area spacing */
  .terminal-tabs {
    margin-top: 26px;
  }
}

/* 🔥 subtle floating motion */
@keyframes posterFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@media (max-width: 768px) {

  /* Stack image & content */
  .modal-content {
    grid-template-columns: 1fr;   /* one column */
  }

  /* Image on top */
  .modal-left {
    order: 1;
    margin-bottom: 20px;
  }

  /* Content below */
  .workshop-content {
    order: 2;
    padding: 20px 18px;
    text-align: left;
  }

  /* Make image look clean */
  .modal-left img {
    max-height: none;
    object-fit: contain;   /* 🔥 full face visible */
  }
}
@media (max-width: 768px) {

  /* 🔥 REMOVE fixed height from image container */
  .modal-left {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* 🔥 FORCE full image visibility */
  .modal-left img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top;
    border-radius: 18px;
  }
}
.workshop-register {
  margin-top: 30px;
  text-align: center;
}

.workshop-register .register-btn {
  padding: 12px 34px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;

  background: linear-gradient(135deg,#ff2fa6,#7b005a);
  color: #fff;

  border: 1.5px solid #ffd700;
  cursor: pointer;

  box-shadow:
    0 0 18px rgba(255,47,166,0.7),
    0 0 30px rgba(255,215,0,0.4);

  transition: 0.3s ease;
}

/* ================= WORKSHOP MODAL ================= */

.workshop-modal {
  max-width: 720px;
  padding: 35px;
}

.workshop-modal h2 {
  color: #ffd700;
  margin-bottom: 10px;
}

.workshop-modal .note {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 25px;
}

/* Grid */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Card */
.workshop-card {
  display: block;
  padding: 22px;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(20,0,40,0.95),
    rgba(60,0,90,0.95)
  );

  border: 1.5px solid rgba(255,215,0,0.4);
  color: #fff;

  transition: 0.35s ease;
}

.workshop-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: #ffd700;
  margin-bottom: 6px;
}

.workshop-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.workshop-card span {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Hover */
.workshop-card:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 30px rgba(255,215,0,0.8),
    0 0 45px rgba(255,47,166,0.6);
}

/* Mobile */
@media (max-width: 600px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= COMPACT WORKSHOP POPUP CARDS ================= */

/* Popup width & padding */
#eventModal .workshop-modal-box {
  max-width: 820px;
  padding: 30px 26px;
}

/* Grid tighter */
#eventModal .workshop-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD – compact height */
#eventModal .workshop-card {
  padding: 22px 20px;
  border-radius: 20px;
  min-height: unset;
  height: auto;              /* 🔥 KEY FIX */
}

/* Remove forced big height (if any) */
#eventModal .workshop-card,
#eventModal .workshop-card * {
  max-height: none;
}

/* Title */
#eventModal .workshop-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* Text */
#eventModal .workshop-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* Sub text */
#eventModal .workshop-card span {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Hover – no over scale */
#eventModal .workshop-card:hover {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 600px) {
  #eventModal .workshop-grid {
    grid-template-columns: 1fr;
  }
}
.workshop-meta li:nth-child(2) {
  display: none;
}
/* ================= REGISTRATION LINKS ================= */

.registration-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.registration-links .register-btn {
  min-width: 280px;
  text-align: center;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .registration-links .register-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ================= FORCE SHOW WORKSHOP META (FINAL FIX) ================= */

.workshop-meta {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 20px;
  opacity: 1 !important;
  visibility: visible !important;
}

.workshop-meta li {
  display: block !important;
  color: #ffffff !important;
  font-size: 0.95rem;
  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 14px;
  padding: 12px 10px;

  opacity: 1 !important;
  visibility: visible !important;
}

.workshop-meta li span {
  display: block !important;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #ffd700 !important;
  margin-bottom: 6px;
  text-transform: uppercase;
}
/* ================= WEBINAR SPOTLIGHT ================= */

.spotlight-wrapper {
  display: grid;
  gap: 50px;
}

.webinar-mini-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-webinar {
  padding: 14px 26px;
  border-radius: 18px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #ccc;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.25);
  transition: 0.3s ease;
}

.mini-webinar:hover {
  color: #ffd700;
  transform: translateY(-4px);
}

.mini-webinar.active {
  background: rgba(255,215,0,0.15);
  color: #ffd700;
  box-shadow: 0 0 18px rgba(255,215,0,0.45);
}

/* Fade animation */
.spotlight-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.spotlight-card.fade {
  opacity: 0;
  transform: translateY(12px);
}

/* Mobile */
@media (max-width: 900px) {
  .webinar-mini-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
}

/* ================= WORKSHOP VIEW TEXT ================= */

.workshop-card {
  position: relative;
  padding-bottom: 46px; /* space for view text */
}

.workshop-view {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;

  color: #ff2fa6;
  opacity: 0.85;

  transition: all 0.3s ease;
}

/* Hover effect */
.workshop-card:hover .workshop-view {
  color: #ffd700;
  letter-spacing: 3px;
  opacity: 1;
}
/* ================= SEMINAR VIEW TEXT ================= */

.seminar-card {
  position: relative;
  padding-bottom: 46px; /* space for view text */
}

.seminar-view {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;

  color: #ff2fa6;
  opacity: 0.85;

  transition: all 0.3s ease;
}

/* Hover glow */
.seminar-card:hover .seminar-view {
  color: #ffd700;
  letter-spacing: 3px;
  opacity: 1;
}
/* ================= SEMINAR REGISTRATION CARD FIX ================= */

/* Target ONLY seminar registration modal cards */
#seminarRegisterModal .workshop-grid {
  align-items: stretch;
}

#seminarRegisterModal .workshop-card {
  padding: 22px 24px;          /* reduce padding */
  min-height: auto !important; /* remove forced height */
  height: auto !important;

  display: flex;
  flex-direction: column;
  justify-content: center;     /* center content vertically */
}

/* Tighten text spacing */
#seminarRegisterModal .workshop-card h3 {
  margin-bottom: 8px;
}

#seminarRegisterModal .workshop-card p {
  margin-bottom: 6px;
}

#seminarRegisterModal .workshop-card span {
  margin-top: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}
/* ================= SIMPLE SCHEDULE TEXT ================= */

.schedule-text {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(0,0,0,0.65);
  color: #eaeaea;
  line-height: 1.7;
  font-size: 0.95rem;
  transition: 0.35s ease;
}

.schedule-text strong {
  color: #ffd700;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.schedule-text em {
  color: #ff2fa6;
  font-style: normal;
  font-weight: 500;
}

.schedule-text:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(255,215,0,0.6);
}
  /* ================= SCHEDULE HIGHLIGHTS ================= */

/* Speaker name highlight */
.schedule-body p strong {
  color: #ffd700; /* gold */
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Time value highlight */
.schedule-body p:last-child {
  color: #ff2fa6; /* pink */
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Time label */
.schedule-body p:last-child strong {
  color: #ffd700;
}
.schedule-body p strong {
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.schedule-body p:last-child {
  text-shadow: 0 0 12px rgba(255,47,166,0.4);
}
/* Description text styling */
.schedule-body p:first-child {
  font-family: 'Inter', sans-serif; /* clean readable font */
  font-size: 0.95rem;
  line-height: 1.8;
  color: #dcdcdc;
  opacity: 0.95;
}
/* MAIN FOOTER TEXT */
.footer-main {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* DEVELOPER BLOCK */
.footer-dev {
  margin-top: 14px;
  text-align: center;
  opacity: 0;

  /* intro animation */
  transform: translateY(30px);
  transition: all 1.1s ease;
}

/* SHOW ON SCROLL */
.footer-dev.show {
  opacity: 1;
  transform: translateY(0);
}

/* TOP LINE */
.footer-credit {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-family: 'Oxanium', sans-serif;
  color: #cfcfcf;
  margin-bottom: 6px;
}

/* NAMES LINE */
.footer-names {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  color: #ffd700;

  text-shadow:
    0 0 8px rgba(255,215,0,0.6),
    0 0 18px rgba(255,47,166,0.45);
}

/* DIVIDER STAR */
.footer-names .divider {
  margin: 0 10px;
  color: #ff2fa6;
}

/* SOFT GLOW LOOP */
.footer-names {
  animation: devGlow 4s ease-in-out infinite;
}

@keyframes devGlow {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(255,215,0,0.5),
      0 0 16px rgba(255,47,166,0.35);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255,215,0,0.8),
      0 0 24px rgba(255,47,166,0.55);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-names {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
footer::before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0.6;
}
/* REMOVE EXTRA SPACE ABOVE FOOTER */
footer {
  margin-top: 0 !important;
  padding-top: 20px;
}

/* last section before footer */
section:last-of-type {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

/* if a wrapper is causing height */
.section {
  min-height: unset !important;
}
.site-footer {
  text-align: center;
  padding: 60px 20px 40px;
}

.footer-main {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 18px;
}

/* HIDDEN INIT */
.footer-dev {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* ACTIVE */
.footer-dev.active {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT STYLES */
.dev-line {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.dev-names {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: #ffd700;
  text-shadow:
    0 0 10px rgba(255,215,0,0.6),
    0 0 22px rgba(255,47,166,0.4);
}

.dev-dot {
  color: #ff2fa6;
  margin: 0 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .dev-names {
    font-size: 1.05rem;
  }
}
/* SPEAKER NAME HIGHLIGHT */
.speaker-highlight {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  color: #ffd700;
  letter-spacing: 1px;

  text-shadow:
    0 0 6px rgba(255,215,0,0.6),
    0 0 14px rgba(255,47,166,0.35);
}
/* ================= SMALLER WEBINAR CARD (CLEAN & PRO) ================= */

.webinar-card-small {
  max-width: 950px;          /* ⬅️ actual width reduction */
  padding: 28px 30px;        /* tighter spacing */
  gap: 30px;                 /* reduce image–content gap */
  margin-top: 40px;
}

/* Smaller title */
.webinar-card-small .webinar-title {
  font-size: 1.85rem;
  line-height: 1.3;
}

/* Speaker text */
.webinar-card-small .webinar-speaker {
  font-size: 1rem;
}

/* Description */
.webinar-card-small .webinar-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Smaller image */
.webinar-card-small .webinar-image img {
  max-height: 320px;
}

/* Smaller meta cards */
.webinar-card-small .meta-card {
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* MOBILE SAFE */
@media (max-width: 900px) {
  .webinar-card-small {
    max-width: 100%;
    padding: 24px;
  }

  .webinar-card-small .webinar-title {
    font-size: 1.6rem;
  }
}
/* FIX EXTRA SPACE BELOW WEBINAR TITLE */
.webinar-section .section-title {
  margin-bottom: 30px !important; /* reduce big gap */
  padding-bottom: 0 !important;
}

/* If reveal animation adds margin */
.webinar-section.reveal {
  padding-top: 60px;  /* optional: tighter top */
  padding-bottom: 60px;
}
/* ================= TREASURE REGISTER MODAL ================= */

.treasure-register-box {
  max-width: 420px;
  text-align: center;
}

.treasure-register-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 25px;
}

.treasure-btn {
  padding: 14px 18px;
  border-radius: 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.treasure-btn.school {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 20px rgba(0,114,255,0.5);
}

.treasure-btn.college {
  background: linear-gradient(135deg, #ff2fa6, #ffb347);
  box-shadow: 0 0 20px rgba(255,47,166,0.5);
}

.treasure-btn:hover {
  transform: translateY(-3px) scale(1.03);
}
/* ================= WEBINAR REGISTER ================= */

.webinar-register-wrap {
  margin-top: 50px;
  text-align: center;
}

.webinar-register-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}
/* ================= WEBINAR META – MOBILE FIX ================= */
@media (max-width: 600px) {

  .webinar-meta {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 per row */
    gap: 12px;
    justify-content: center;
  }

  .webinar-meta .meta-card {
    width: 100%;
    min-height: auto;
    padding: 14px 10px;
    text-align: center;
    border-radius: 16px;
  }

  .webinar-meta .meta-card span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .webinar-meta .meta-card {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}
.webinar-section {
  padding: 100px 8%;
}

.webinar-card {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at top, #6a0dad, #140022);
  border: 2px solid rgba(255,215,0,0.4);
}

.webinar-card-small {
  transform: scale(0.88);
  opacity: 0.95;
}

.webinar-image img {
  width: 100%;
  border-radius: 22px;
}

.webinar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: #ffd700;
}

.webinar-speaker {
  color: #ff2fa6;
  margin: 12px 0;
}

.speaker-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffd700;
}

.webinar-description {
  line-height: 1.7;
  opacity: 0.9;
}

.webinar-meta {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.meta-card {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,0.4);
  font-size: 0.9rem;
}

.register-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 2px solid #ffd700;
  color: #ffd700;
  text-decoration: none;
  transition: 0.3s;
}

.register-btn:hover {
  background: #ffd700;
  color: #000;
}
.webinar-section {
  padding: 100px 8%;
}

.webinar-card {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  padding: 40px;
  border-radius: 30px;
  background: radial-gradient(circle at top, #6a0dad, #140022);
  border: 2px solid rgba(255,215,0,0.4);
}

.webinar-card-small {
  transform: scale(0.88);
  opacity: 0.95;
}

.webinar-image img {
  width: 100%;
  border-radius: 22px;
}

.webinar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  color: #ffd700;
}

.webinar-speaker {
  color: #ff2fa6;
  margin: 12px 0;
}

.speaker-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffd700;
}

.webinar-description {
  line-height: 1.7;
  opacity: 0.9;
}

.webinar-meta {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.meta-card {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,0.4);
  font-size: 0.9rem;
}

.register-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  border-radius: 30px;
  border: 2px solid #ffd700;
  color: #ffd700;
  text-decoration: none;
  transition: 0.3s;
}

.register-btn:hover {
  background: #ffd700;
  color: #000;
}
/* ================= WEBINAR GRID ================= */

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Center card */
.webinar-center {
  grid-column: 1 / 3;
  justify-self: center;
  max-width: 950px;
}

/* Compact mobile */
@media (max-width: 900px) {
  .webinar-grid {
    grid-template-columns: 1fr;
  }
  .webinar-center {
    grid-column: auto;
    max-width: 100%;
  }
}

/* ================= REGISTER BUTTON INSIDE CARD ================= */

.register-btn.inside-card {
  margin-top: 18px;
  align-self: flex-start;
}

/* ================= MAGNETIC + GLOW ================= */

.webinar-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.webinar-card:hover {
  box-shadow:
    0 0 35px rgba(255,215,0,0.45),
    0 0 65px rgba(255,47,166,0.35);
}
/* ================= FIX WEBINAR CARD HEIGHT ================= */

.webinar-card {
  padding: 28px;              /* ↓ reduce from 40px */
  min-height: unset;         /* remove forced height */
  align-items: flex-start;   /* prevent stretch */
}

/* Image smaller */
.webinar-image img {
  max-height: 260px;         /* ↓ was ~420px */
  object-fit: cover;
}

/* Title tighter */
.webinar-title {
  font-size: 1.9rem;         /* ↓ slightly smaller */
  line-height: 1.25;
}

/* Description tighter */
.webinar-description {
  font-size: 1rem;
  line-height: 1.55;         /* ↓ from ~1.8 */
  margin-bottom: 18px;
}

/* Meta cards tighter */
.webinar-meta {
  gap: 12px;
}

.meta-card {
  padding: 10px 12px;
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .webinar-card {
    padding: 22px;
  }

  .webinar-image img {
    max-height: 220px;
  }

  .webinar-title {
    font-size: 1.6rem;
  }
}
/* ================= FIX WEBINAR HEADING ALIGNMENT ================= */

.webinar-section > h2,
.webinar-section .section-title,
.webinar-heading {
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
}
/* ================= WEBINAR IMAGE ADJUSTMENT ================= */

.webinar-image {
  margin-top: 12px;           /* move image slightly down */
}

.webinar-image img {
  transform: scale(1.08);     /* make image a little bigger */
  transform-origin: center;
  transition: transform 0.4s ease;

  /* optional: smoother premium look */
  border-radius: 26px;
}
/* ================= MOBILE WEBINAR LAYOUT ================= */
@media (max-width: 768px) {

  .webinar-card {
    grid-template-columns: 1fr;   /* stack vertically */
    text-align: left;
  }

  /* IMAGE GOES TO TOP */
  .webinar-image {
    order: -1;                    /* move image to top */
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 18px;
  }

  .webinar-image img {
    width: 78%;
    max-width: 260px;
    transform: scale(1.05);
    border-radius: 22px;
  }

  /* TITLE */
  .webinar-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  /* SPEAKER */
  .webinar-speaker {
    font-size: 0.95rem;
  }

  /* DESCRIPTION */
  .webinar-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* META CARDS CENTERED */
  .webinar-meta {
    justify-content: center;
    gap: 12px;
  }

  /* REGISTER BUTTON */
  .webinar-card .register-btn {
    align-self: center;
    margin-top: 18px;
  }
}
/* ================= WORKSHOP CARD – INTERACTIVE STYLE ================= */

.workshops-section .seminar-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 22px;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle animated glow */
.workshops-section .seminar-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(255,47,166,0.35),
    transparent 65%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.workshops-section .seminar-card:hover::before {
  opacity: 1;
}

/* Lift + glow on hover (MAIN motion only here) */
.workshops-section .seminar-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow:
    0 0 28px rgba(255,215,0,0.55),
    0 0 65px rgba(255,47,166,0.45);
}

/* ================= VIEW DETAILS CTA ================= */

.workshop-view {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 999px;

  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  line-height: 1;

  color: #ffd700;
  border: 1.5px solid rgba(255,215,0,0.6);

  background: rgba(0,0,0,0.25);
  box-shadow: inset 0 0 12px rgba(255,215,0,0.25);

  box-sizing: border-box;

  /* IMPORTANT: no transform transition */
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

/* CTA glow on hover – NO MOVEMENT */
.workshops-section .seminar-card:hover .workshop-view {
  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #1a001f;
  box-shadow:
    0 0 18px rgba(255,215,0,0.9),
    0 0 30px rgba(255,47,166,0.6);
}

/* Optional: press effect (click only, not hover) */
.workshops-section .seminar-card:active {
  transform: translateY(-5px) scale(1.015);
}

/* ================= MOBILE SAFE ================= */

@media (max-width: 768px) {
  .workshops-section .seminar-card:hover {
    transform: none;
    box-shadow: none;
  }
}
/* ================= WORKSHOP MODAL ACTIONS ================= */

/* CLOSE BUTTON – INSIDE CARD */
.modal-card .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.6);
  color: #ffd700;
  font-size: 1.1rem;

  border: 1.5px solid rgba(255,215,0,0.6);
  cursor: pointer;

  transition: all 0.3s ease;
}

.modal-card .modal-close:hover {
  background: #ffd700;
  color: #1a001f;
  box-shadow: 0 0 14px rgba(255,215,0,0.8);
}

/* REGISTER BUTTON – INSIDE CARD */
.workshop-register-btn {
  margin-top: 28px;
  align-self: flex-end;

  padding: 10px 26px;
  border-radius: 999px;

  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1.4px;

  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #1a001f;

  text-decoration: none;
  border: none;

  box-shadow:
    0 0 18px rgba(255,215,0,0.7),
    0 0 28px rgba(255,47,166,0.6);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workshop-register-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 26px rgba(255,215,0,1),
    0 0 42px rgba(255,47,166,0.8);
}

/* MOBILE SAFE */
@media (max-width: 768px) {
  .workshop-register-btn {
    align-self: center;
    width: fit-content;
  }
}
/* ================= FIX REGISTER BUTTON SPACING ================= */

.workshop-meta {
  margin-bottom: 26px; /* 👈 creates breathing space */
}

.workshop-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px; /* 👈 final push down */
  padding: 14px 34px;

  border-radius: 28px;
  font-weight: 700;
  letter-spacing: 1px;

  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #000;

  box-shadow:
    0 0 20px rgba(255,215,0,0.5),
    0 0 30px rgba(255,47,166,0.4);

  transition: 0.3s ease;
}

.workshop-register-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 30px rgba(255,215,0,0.8),
    0 0 40px rgba(255,47,166,0.6);
}
/* ================= FIX CLOSE BUTTON POSITION ================= */

.modal-card {
  position: relative; /* 🔥 VERY IMPORTANT */
}

/* Close button INSIDE the card */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.6);

  color: #ffd700;
  font-size: 18px;
  cursor: pointer;

  background: rgba(20, 0, 40, 0.8);
  box-shadow: 0 0 14px rgba(255,215,0,0.4);

  transition: 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #ffd700;
  color: #000;
}
/* ================= MOBILE VIEW DETAILS ATTENTION EFFECT ================= */

@media (max-width: 768px) {

  .workshop-view {
    display: inline-block;
    margin-top: 14px;

    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: #ffd700;

    animation: viewDetailsPulse 2.2s ease-in-out infinite;
  }

  @keyframes viewDetailsPulse {
    0% {
      text-shadow:
        0 0 6px rgba(255,215,0,0.4),
        0 0 12px rgba(255,47,166,0.25);
      transform: scale(1);
    }
    50% {
      text-shadow:
        0 0 12px rgba(255,215,0,0.9),
        0 0 24px rgba(255,47,166,0.6);
      transform: scale(1.06);
    }
    100% {
      text-shadow:
        0 0 6px rgba(255,215,0,0.4),
        0 0 12px rgba(255,47,166,0.25);
      transform: scale(1);
    }
  }
}
/* ================= MOBILE WORKSHOP MODAL COMPACT ================= */
@media (max-width: 768px) {

  .modal-overlay {
    padding: 14px;
  }

  .modal-card {
    max-width: 92vw;
    max-height: 90vh;
    padding: 14px;
    border-radius: 20px;
    overflow-y: auto;
  }

  .modal-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* IMAGE */
  .modal-left img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* TITLE */
  .workshop-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  /* SPEAKER BLOCK */
  .speaker-name {
    font-size: 1rem;
  }

  .speaker-role,
  .speaker-company {
    font-size: 0.8rem;
    opacity: 0.85;
  }

  /* DESCRIPTION */
  .workshop-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-top: 6px;
  }

  /* META LIST */
  .workshop-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
  }

  .workshop-meta li {
    font-size: 0.78rem;
    padding: 8px 10px;
    border-radius: 10px;
  }

  /* REGISTER BUTTON */
  .register-btn {
    margin-top: 14px;
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .modal-close {
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {

  /* FORCE META GRID */
  .workshop-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  /* NORMAL META CARDS */
  .workshop-meta li {
    font-size: 0.65rem;
    padding: 9px;
  }

  /* REGISTER WRAPPER */
  .workshop-meta .meta-register {
    grid-column: 2 / 3;   /* SECOND COLUMN */
    grid-row: 2 / 3;      /* SECOND ROW */
    align-self: center;
    justify-self: stretch;
  }

  /* REGISTER BUTTON ITSELF */
  .workshop-meta .meta-register .register-btn {
    width: 100%;          /* FIT GRID CELL */
    max-width: 100%;
    padding: 10px 0;
    font-size: 0.65rem;
    border-radius: 18px;

    box-shadow:
      0 0 14px rgba(255,47,166,0.6),
      0 0 26px rgba(255,215,0,0.5);
  }

}
@media (max-width: 768px) {

  /* FORCE META GRID */
  .workshop-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  /* NORMAL META CARDS */
  .workshop-meta li {
    font-size: 0.65rem;
    padding: 9px;
  }

  /* REGISTER WRAPPER */
  .workshop-meta .meta-register {
    grid-column: 2 / 3;   /* SECOND COLUMN */
    grid-row: 2 / 3;      /* SECOND ROW */
    align-self: center;
    justify-self: stretch;
  }

  /* REGISTER BUTTON ITSELF */
  .workshop-meta .meta-register .register-btn {
    width: 100%;          /* FIT GRID CELL */
    max-width: 100%;
    padding: 10px 0;
    font-size: 0.65rem;
    border-radius: 18px;

    box-shadow:
      0 0 14px rgba(255,47,166,0.6),
      0 0 26px rgba(255,215,0,0.5);
  }

}
/* ================= SEMINARS SECTION ================= */

.seminars-section {
  padding: 100px 8%;
}

.seminars-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* ================= SEMINAR GRID ================= */

.seminar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 40px;
  justify-content: center; /* perfectly centered */
}

/* ================= SEMINAR CARD ================= */

.seminar-card {
  position: relative;
  padding: 34px 30px;
  border-radius: 28px;
  cursor: pointer;

  background: radial-gradient(
    circle at top,
    rgba(120, 0, 180, 0.55),
    rgba(15, 0, 35, 0.95)
  );

  border: 2px solid rgba(255, 215, 0, 0.55);

  box-shadow:
    0 0 28px rgba(255, 215, 0, 0.35),
    0 0 60px rgba(255, 47, 166, 0.35);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift + glow (ONLY parent moves) */
.seminar-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 45px rgba(255, 215, 0, 0.6),
    0 0 90px rgba(255, 47, 166, 0.6);
}

/* ================= TEXT ================= */

.seminar-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 14px;
}

.seminar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.seminar-meta {
  display: block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #ff2fa6;
}

/* ================= VIEW DETAILS CTA ================= */

.seminar-view {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 22px;

  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;

  color: #ffd700;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 215, 0, 0.7);

  box-shadow:
    0 0 14px rgba(255, 215, 0, 0.6),
    0 0 26px rgba(255, 47, 166, 0.4);

  box-sizing: border-box;

  /* IMPORTANT: no transform here */
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

/* CTA glow on hover – NO MOVEMENT */
.seminar-card:hover .seminar-view {
  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #1a001f;
  box-shadow:
    0 0 26px rgba(255, 215, 0, 0.9),
    0 0 42px rgba(255, 47, 166, 0.7);
}

/* Optional: click feedback (press only) */
.seminar-card:active {
  transform: translateY(-5px) scale(1.015);
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

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

  .seminar-card {
    padding: 28px 24px;
  }

  /* Mobile attention pulse */
  .seminar-view {
    animation: seminarPulse 2.2s ease-in-out infinite;
  }

  @keyframes seminarPulse {
    0% {
      transform: scale(1);
      text-shadow: 0 0 8px rgba(255,215,0,0.4);
    }
    50% {
      transform: scale(1.08);
      text-shadow:
        0 0 14px rgba(255,215,0,0.9),
        0 0 26px rgba(255,47,166,0.6);
    }
    100% {
      transform: scale(1);
      text-shadow: 0 0 8px rgba(255,215,0,0.4);
    }
  }
}
/* ================= SEMINAR REGISTER BUTTON ================= */

.seminar-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 28px;
  padding: 14px 36px;

  border-radius: 999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;

  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #1a001f;
  text-decoration: none;

  box-shadow:
    0 0 22px rgba(255,215,0,0.7),
    0 0 40px rgba(255,47,166,0.6);

  transition: all 0.3s ease;
}

/* Hover glow */
.seminar-register-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 0 34px rgba(255,215,0,1),
    0 0 60px rgba(255,47,166,0.8);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .seminar-register-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px 0;
    font-size: 0.75rem;
  }
}
/* ================= HELP DESK – GLASS PREMIUM ================= */

.helpdesk-premium {
  padding: 90px 8%;
}

/* Grid Wrapper */
.helpdesk-wrapper {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Glass Card */
.helpdesk-glass-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );

  border-radius: 22px;
  padding: 24px 22px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,215,0,0.4);

  box-shadow:
    0 0 20px rgba(255,47,166,0.15),
    inset 0 0 12px rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}

/* Hover Effect */
.helpdesk-glass-card:hover {
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    0 0 35px rgba(255,47,166,0.35),
    0 0 55px rgba(255,215,0,0.25),
    inset 0 0 15px rgba(255,255,255,0.08);
}

/* Card Title */
.helpdesk-glass-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;

  color: #ffde59;
  margin-bottom: 14px;

  text-transform: uppercase;
}

/* Contact Text */
.helpdesk-glass-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #f2f2f2;
}

/* Phone Number */
.helpdesk-glass-card span {
  color: #ff2fa6;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

  .helpdesk-premium {
    padding: 70px 6%;
  }

  .helpdesk-glass-card {
    text-align: center;
  }

  .helpdesk-glass-card p {
    justify-content: center;
    gap: 8px;
  }
}
/* ===== HELP DESK CALL BUTTON ===== */

.helpdesk-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;

  font-size: 0.82rem;
  font-weight: 600;

  color: #ff2fa6;
  text-decoration: none;

  border: 1px solid rgba(255,47,166,0.4);
  border-radius: 14px;

  background: rgba(255,255,255,0.04);

  box-shadow: 0 0 6px rgba(255,47,166,0.2);

  transition: all 0.25s ease;
}

/* Hover / Tap Effect */
.helpdesk-call:hover {
  color: #ffd700;

  background: rgba(255,215,0,0.12);

  border-color: rgba(255,215,0,0.7);

  box-shadow:
    0 0 14px rgba(255,215,0,0.4),
    0 0 22px rgba(255,47,166,0.4);

  transform: scale(1.05);
}

/* Phone Icon */
.helpdesk-call i {
  font-size: 0.75rem;
}


/* ================================
   MOBILE – SEMINAR POPUP COMPACT
================================ */
@media (max-width: 768px) {

  .seminar-popup {
    width: 90%;
    max-width: 320px;
    padding: 10px;
    border-radius: 12px;
  }

  .seminar-popup-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Speaker image on top */
  .seminar-speaker-photo,
  .seminar-popup img {
    width: 100%;
    height: 110px;               /* SMALL */
    object-fit: cover;
    object-position: center top; /* HEAD TO CHEST */
    border-radius: 8px;
  }

  .seminar-heading {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .speaker-name {
    font-size: 0.8rem;
    font-weight: 500;
  }

  .seminar-popup p {
    font-size: 0.68rem;
    line-height: 1.3;
  }

}
@media (max-width: 768px) {
  .seminar-popup img {
    object-position: 50% 15%;
  }
}
/* ================================
   MOBILE – VIEW DETAILS ICON
================================ */
@media (max-width: 768px) {

  .seminar-card .view-details,
  .seminar-card .details-icon,
  .seminar-card i {
    font-size: 12px;
    width: 22px;
    height: 22px;
  }

  .seminar-card .view-details svg {
    width: 12px;
    height: 12px;
  }

}


/* program schdeule*/


/* DETAILS HIDDEN BY DEFAULT */
.glow-day .schedule-body {
  display: none;
}

/* SHOW ALL DETAILS WHEN DAY IS OPEN */
.glow-day.active .schedule-body {
  display: block;
}

/* Smooth appearance */
.glow-day.active .schedule-body {
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hide all event details by default */
.glow-day .schedule-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
}

/* When DAY is active → show ALL event details */
.glow-day.active .schedule-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}
.day-toggle-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ================= MOBILE SCHEDULE FIX ================= */
@media (max-width: 768px) {

  /* Center entire event card content */
  .schedule-item {
    text-align: center;
  }

  /* Header: stack time + title */
  .schedule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* Time styling */
  .schedule-time {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  /* Event title */
  .schedule-header h4 {
    text-align: center;
    font-size: 1rem;
  }

  /* Expanded body text */
  .schedule-body {
    padding-left: 0;
    text-align: center;
  }

  .schedule-body p {
    text-align: center;
  }
}
/* ================= MOBILE HAMBURGER ================= */

.mobile-nav {
  display: none;
}

/* HAMBURGER ICON */
.hamburger {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ffd700;
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.3s ease;
  box-shadow: 0 0 8px rgba(255,215,0,0.8);
}


/* MOBILE MENU */
/* ================= SIDE DRAWER MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 75%;
  max-width: 320px;

  background: linear-gradient(180deg, #3a0b5e, #120016);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  gap: 22px;

  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}


.mobile-menu.active {
  transform: translateX(0);
}

/* Menu links */
.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: #ffd700;
  letter-spacing: 2px;
  text-decoration: none;
}

/* Optional glow */
.mobile-menu a:hover {
  text-shadow: 0 0 12px rgba(255,215,0,0.9);
}

/* ACTIVE */
.mobile-menu.active {
  transform: translateY(0);
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px); 
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }

  .desktop-nav {
    display: none;
  }
}
.hamburger span {
  display: block;
  height: 3px;
  background: #ffd700;
  margin: 6px 0;
  transition: 0.3s;
}

/* X state */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
}
@media (max-width: 768px) {

  .seminar-modal,
  .popup-modal {
    padding: 0;
    align-items: flex-start;
  }

  .seminar-popup {
    width: 92vw;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 20px 16px 24px;
  }

}
@media (max-width: 768px) {

  .seminar-popup h2,
  .seminar-title {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .seminar-popup p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

}
@media (max-width: 768px) {

  .seminar-speaker-img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: 16px;
  }

}
@media (max-width: 768px) {

  .seminar-popup::before,
  .seminar-popup::after {
    display: none;
  }

  }
/* GLASS / BLUR MOBILE MENU */
.mobile-menu {
  background: rgba(60, 0, 90, 0.55); /* purple glass */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-left: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow:
    -10px 0 40px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(255, 47, 166, 0.2);

  transition: all 0.35s ease;
}
.mobile-menu a {
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 47, 166, 0.08),
    rgba(255, 215, 0, 0.05)
  );
  pointer-events: none;
}
/* ================= PROJECT EXPO RULES ================= */

.expo-rules-wrapper {
  margin-top: 40px;
}

/* TOGGLE */
.expo-rule-toggle {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 26px;
}

.rule-tab {
  padding: 10px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1.8px solid rgba(255,215,0,0.8);
  color: #ffd700;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;            /* ⬆ bigger */
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.rule-tab.active {
  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #1a001f;
  box-shadow:
    0 0 22px rgba(255,215,0,0.9),
    0 0 36px rgba(255,47,166,0.7);
}

/* SCROLL BOX – FILL GOLDEN LINES */
.expo-rules-box {
  max-height: 340px;             /* ⬆ taller */
  overflow-y: auto;
  padding: 20px 34px;            /* ⬆ wider */
  border-top: 1.5px solid rgba(255,215,0,0.7);
  border-bottom: 1.5px solid rgba(255,215,0,0.7);
}

/* CUSTOM SCROLLBAR */
.expo-rules-box::-webkit-scrollbar {
  width: 8px;
}
.expo-rules-box::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff2fa6, #ffd700);
  border-radius: 10px;
}

/* CONTENT */
.expo-rules-content {
  display: none;
  animation: fadeSlide 0.25s ease;
}

.expo-rules-content.active {
  display: block;
}

.expo-rules-content h4 {
  color: #ff2fa6;
  font-size: 1.05rem;            /* ⬆ heading size */
  margin: 18px 0 10px;
  letter-spacing: 1.2px;
}

.expo-rules-content ul {
  padding-left: 26px;
}

.expo-rules-content li,
.expo-rules-content p {
  font-size: 1rem;               /* ⬆ rule text */
  line-height: 1.8;              /* ⬆ breathing space */
  opacity: 0.95;
  margin-bottom: 12px;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE – STILL COMPACT BUT READABLE */
@media (max-width: 768px) {
  .expo-rules-box {
    max-height: 300px;
    padding: 18px 20px;
  }

  .rule-tab {
    font-size: 0.75rem;
    padding: 8px 20px;
  }

  .expo-rules-content li,
  .expo-rules-content p {
    font-size: 0.9rem;
  }
}
/* ===== ROBO WAR PREMIUM STYLING ===== */

.rw-section {
  line-height: 1.75;
}

.rw-section h3 {
  margin: 20px 0 10px;
  font-size: 1.05rem;
  color: #ffd700;
  font-family: "Orbitron", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rw-section p {
  opacity: 0.9;
}

/* Lists */
.rw-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.rw-section li {
  margin-bottom: 6px;
  opacity: 0.88;
}

/* Scrollable Rules Area */
.rw-scroll {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 12px;
}

/* Custom scrollbar */
.rw-scroll::-webkit-scrollbar {
  width: 6px;
}
.rw-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff2fa6, #ffd700);
  border-radius: 10px;
}

/* Contact Card */
.rw-contact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.rw-contact h4 {
  margin-top: 6px;
  color: #ff2fa6;
  font-weight: 600;
}

.rw-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

.rw-note {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 4px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .rw-scroll {
    max-height: 260px;
  }

  .rw-section h3 {
    font-size: 0.95rem;
  }
}
/* RULES & GUIDELINES SCROLL AREA */
#featureContent .rw-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding: 18px 22px;
  margin-top: 10px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 16px;
  border: 1px solid rgba(255, 47, 166, 0.35);
  box-shadow:
    0 0 25px rgba(255, 47, 166, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}
/* SECTION BLOCK */
#featureContent .rw-section {
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 3px solid #ff2fa6;
}

/* SECTION HEADINGS */
#featureContent .rw-section h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #ffde59;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON STYLE */
#featureContent .rw-section h3 i {
  color: #ff2fa6;
  font-size: 1.1rem;
}

/* TEXT */
#featureContent .rw-section p,
#featureContent .rw-section li {
  color: #f2f2f2;
  font-size: 0.92rem;
  line-height: 1.65;
}
#featureContent .rw-section ul {
  padding-left: 18px;
  margin-top: 8px;
}

#featureContent .rw-section li {
  margin-bottom: 8px;
  position: relative;
}

#featureContent .rw-section li::before {
  content: "•";
  position: absolute;
  left: -14px;
  color: #ff2fa6;
  font-size: 1.2rem;
}
/* CUSTOM SCROLLBAR */
#featureContent .rw-scroll::-webkit-scrollbar {
  width: 6px;
}

#featureContent .rw-scroll::-webkit-scrollbar-track {
  background: transparent;
}

#featureContent .rw-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff2fa6, #ffde59);
  border-radius: 6px;
}
@media (max-width: 768px) {
  #featureContent .rw-scroll {
    max-height: 300px;
    padding: 14px;
  }

  #featureContent .rw-section h3 {
    font-size: 0.95rem;
  }

  #featureContent .rw-section p,
  #featureContent .rw-section li {
    font-size: 0.85rem;
  }
}
/* ================= PREMIUM DESKTOP NAV ================= */
.desktop-nav {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 9999;

  display: flex;
  gap: 22px;
  padding: 14px 28px;

  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 150, 0.18),
    rgba(80, 0, 120, 0.55)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 12px 40px rgba(255, 0, 150, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.4s cubic-bezier(.4,0,.2,1),
    opacity 0.35s ease;

  will-change: transform, opacity;
}

/* ================= PREMIUM DESKTOP NAV ================= */
.desktop-nav {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 9999;

  display: flex;
  gap: 22px;
  padding: 14px 28px;

  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 150, 0.18),
    rgba(80, 0, 120, 0.55)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 12px 40px rgba(255, 0, 150, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.4s cubic-bezier(.4,0,.2,1),
    opacity 0.35s ease;

  will-change: transform, opacity;
}

/* LINKS */
.desktop-nav a {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;

  transition: all 0.25s ease;
}

.desktop-nav a:hover {
  color: #ff2fa6;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 47, 166, 0.6);
}

/* HIDE STATE */
.desktop-nav.nav-hidden {
  transform: translateY(-150%);
  opacity: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}
/* ================= GUIDELINES – PREMIUM TOGGLE ================= */

.expo-rules-wrapper {
  margin-top: 12px;
  font-family: "Inter", sans-serif;
}







/* ===== SCROLL BOX ===== */
.rules-box {
  max-height: 360px;
  overflow-y: auto;
  padding: 18px 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.25)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  border: 1px solid rgba(255, 47, 166, 0.35);

  box-shadow:
    0 0 25px rgba(255, 47, 166, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
}

/* ===== CONTENT SWITCH (IMPORTANT) ===== */
.rules-content {
  display: none;
}

.rules-content.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}

/* ===== HEADINGS ===== */
.rules-content h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #ffde59;
  margin: 18px 0 8px;
  border-left: 3px solid #ff2fa6;
  padding-left: 10px;
}

/* ===== LISTS ===== */
.rules-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.rules-content li {
  font-size: 0.88rem;
  color: #f2f2f2;
  line-height: 1.65;
  margin-bottom: 8px;
  position: relative;
}

.rules-content li::before {
  content: "•";
  position: absolute;
  left: -14px;
  color: #ff2fa6;
  font-size: 1.2rem;
}

/* ===== SCROLLBAR ===== */
.rules-box::-webkit-scrollbar {
  width: 6px;
}
.rules-box::-webkit-scrollbar-track {
  background: transparent;
}
.rules-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff2fa6, #ffd700);
  border-radius: 10px;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  

  

  .rules-box {
    max-height: 280px;
    padding: 14px 16px;
  }

  .rules-content h4 {
    font-size: 0.9rem;
  }

  .rules-content li {
    font-size: 0.82rem;
  }
}
/* ================= GLASS CONTACT CARD ================= */

.glass-contact-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 22px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(0,0,0,0.35)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  border: 1px solid rgba(255,215,0,0.35);

  box-shadow:
    0 0 30px rgba(255,47,166,0.25),
    inset 0 0 20px rgba(255,255,255,0.08);
}

/* PERSON ROW */
.glass-contact-person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.glass-contact-person:not(:last-child) {
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}

/* INFO */
.glass-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.glass-contact-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.glass-contact-number {
  font-size: 0.85rem;
  color: #ffd700;
  letter-spacing: 0.5px;
}

/* CALL BUTTON */
.glass-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  background: linear-gradient(135deg, #ff2fa6, #ffd700);
  color: #111;

  border-radius: 50%;
  text-decoration: none;

  box-shadow:
    0 0 14px rgba(255,215,0,0.7),
    0 0 24px rgba(255,47,166,0.6);

  transition: all 0.3s ease;
}

.glass-call-btn i {
  font-size: 1rem;
}

/* HOVER / TAP */
.glass-call-btn:hover {
  transform: scale(1.12) rotate(6deg);
  box-shadow:
    0 0 22px rgba(255,215,0,0.9),
    0 0 36px rgba(255,47,166,0.8);
}

/* MOBILE */
@media (max-width: 768px) {
  .glass-contact-card {
    padding: 18px;
  }

  .glass-contact-name {
    font-size: 0.9rem;
  }

  .glass-contact-number {
    font-size: 0.8rem;
  }

  .glass-call-btn {
    width: 40px;
    height: 40px;
  }
}
/* ================= EVENT META – GLASS STYLE ================= */

.event-meta-glass {
  max-width: 360px;
  padding: 16px 18px;
  margin-bottom: 16px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(0,0,0,0.35)
  );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 18px;
  border: 1px solid rgba(255,215,0,0.35);

  box-shadow:
    0 0 22px rgba(255,47,166,0.25),
    inset 0 0 16px rgba(255,255,255,0.08);
}

/* ROW */
.event-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.event-meta-row:not(:last-child) {
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}

/* ICON */
.event-meta-row i {
  color: #ff2fa6;
  font-size: 0.95rem;
  min-width: 18px;
}

/* TEXT */
.event-meta-row span {
  font-size: 0.9rem;
  color: #f2f2f2;
}

.event-meta-row b {
  color: #ffd700;
  font-weight: 600;
}
/* EVENT AREA */
@media (max-width: 768px) {

  /* Make meta card full width on mobile */
  .event-meta-glass {
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 14px 16px;
  }

  /* Make rows compact */
  .event-meta-row {
    padding: 6px 0;
  }

  .event-meta-row span {
    font-size: 0.85rem;
  }

  /* Prevent tall sidebar look */
  .event-details-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
/* ================= FORCE MOBILE EVENT LAYOUT ================= */
@media (max-width: 768px) {

  /* TARGET THE EVENT CONTENT AREA */
  .event-content,
  .event-details,
  .event-body,
  .event-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "meta"
      "prize";
    gap: 18px;
    justify-items: center;
  }

  /* DATE / TIME GLASS CARD */
  .event-meta-glass,
  .event-meta,
  .event-date-box {
    grid-area: meta;
    width: 92%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* PRIZE MONEY */
  .cash-prize-box {
    grid-area: prize;
    width: 100%;
    text-align: center;
  }

  /* PRIZE SIZE FIX FOR MOBILE */
  .cash-prize-amount {
    font-size: 2.1rem;
  }

  /* REMOVE SIDE FLOATS IF ANY */
  .event-meta-glass,
  .cash-prize-box {
    float: none !important;
    position: static !important;
  }
}
/* ================= GLOBAL MODAL FIX ================= */

/* When any modal is open */
body.modal-open {
  overflow: hidden;
}

/* Push navbar behind modal */
body.modal-open header,
body.modal-open .navbar,
body.modal-open .top-nav,
body.modal-open nav {
  z-index: 1 !important;
  pointer-events: none;
}

/* Workshop modal overlay */
.workshop-modal,
.workshop-popup,
.workshop-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999 !important;
}

/* Modal content */
.workshop-modal .modal-content,
.workshop-popup .modal-content {
  position: relative;
  z-index: 10000 !important;
}
/* ================= MOBILE FIX: STICKY REGISTER BUTTON ================= */
@media (max-width: 768px) {

  /* Workshop popup content scroll */
 .workshop-modal-content {
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 90px; /* space for fixed register button */
}

  /* Register button wrapper */
  .workshop-register,
  .popup-register,
  .modal-register {
    position: sticky;
    bottom: 16px;
    z-index: 10001;
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  /* Register button itself */
  .workshop-register button,
  .popup-register button,
  .modal-register button {
    width: 90%;
    max-width: 320px;
    font-size: 1rem;
    padding: 14px 0;
    box-shadow:
      0 0 25px rgba(255,47,166,0.45),
      0 0 45px rgba(255,215,0,0.35);
  }
}
@media (max-width: 768px) {

  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }

  .workshop-content {
    padding-bottom: 90px; /* space for sticky button */
  }

  .workshop-register-bar {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 14px 16px;

    background: linear-gradient(
      180deg,
      rgba(20, 0, 40, 0.4),
      rgba(20, 0, 40, 0.95)
    );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-top: 1px solid rgba(255, 215, 0, 0.35);
    z-index: 20;
  }

  .workshop-register-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 30px;
    font-size: 1rem;
  }
}
/* ================= OPEN DEBATE – PREMIUM ================= */

.open-debate-premium {
  padding: 90px 8%;
}

.open-debate-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* POSTER */
.open-debate-poster {
  position: relative;
}

.open-debate-poster img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 0 30px rgba(255,215,0,0.25),
    0 0 60px rgba(255,47,166,0.25);
}

/* SPOT TAG */
.spot-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  color: #000;
  background: linear-gradient(90deg, #ffd700, #ff2fa6);
}

/* RIGHT SIDE */
.open-debate-info {
  display: grid;
  gap: 28px;
}

/* GLASS CARD */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,215,0,0.4);
}

/* META */
.open-debate-meta p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* PRIZE */
.open-debate-prize h4 {
  font-family: "Orbitron", sans-serif;
  color: #ff2fa6;
  margin-bottom: 16px;
}

.prize-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.prize-amount.second {
  font-size: 2.1rem;
  margin-top: 10px;
}

/* ================= OPEN DEBATE – PREMIUM ================= */

.open-debate-premium {
  padding: 90px 8%;
}

.open-debate-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* POSTER */
.open-debate-poster {
  position: relative;
}

.open-debate-poster img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 0 30px rgba(255,215,0,0.25),
    0 0 60px rgba(255,47,166,0.25);
}

/* SPOT TAG */
.spot-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  color: #000;
  background: linear-gradient(90deg, #ffd700, #ff2fa6);
}

/* RIGHT SIDE */
.open-debate-info {
  display: grid;
  gap: 28px;
}

/* GLASS CARD */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,215,0,0.4);
}

/* META */
.open-debate-meta p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* PRIZE */
.open-debate-prize h4 {
  font-family: "Orbitron", sans-serif;
  color: #ff2fa6;
  margin-bottom: 16px;
}

.prize-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 25px rgba(255,215,0,0.7);
}

.prize-amount.second {
  font-size: 2.1rem;
  margin-top: 10px;
}

.prize-label {
  display: block;
  opacity: 0.85;
  margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 768px) {

  .open-debate-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* POSTER FIRST */
  .open-debate-poster {
    order: 1;
  }

  /* DETAILS BELOW POSTER */
  .open-debate-info {
    order: 2;
    width: 100%;
  }

  .open-debate-info .glass-card {
    text-align: center;
  }

  .open-debate-meta p {
    justify-content: center;
  }
}

/* ================= MEDIATOR CARD ================= */

.open-debate-mediator {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
}

/* Profile Image */
.mediator-profile img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;

  border: 2px solid rgba(255,215,0,0.7);
  box-shadow:
    0 0 18px rgba(255,215,0,0.35),
    0 0 30px rgba(255,47,166,0.25);
}

/* Text Area */
.mediator-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mediator-role {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #ffd700;
  text-transform: uppercase;
}

.mediator-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: #fff;
}
/* ================= TAGLINE STYLE ================= */

.section-tagline {
  margin-top: 8px;
  margin-bottom: 22px;

  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #ffd700;
  opacity: 0.9;

  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;

  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.35);

  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.25);
}
.section-tagline {
  animation: glowPulse 2.5s infinite alternate;
}

@keyframes glowPulse {
  from { box-shadow: 0 0 10px rgba(255,215,0,0.25); }
  to   { box-shadow: 0 0 22px rgba(255,215,0,0.45); }
}
/* ================= CULTURAL REGISTRATION ================= */

.cultural-register-section {
  margin: 60px auto;
  padding: 32px 24px;
  max-width: 520px;
  text-align: center;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(255,47,166,0.15),
    rgba(0,0,0,0.85)
  );

  border: 1.5px solid rgba(255,215,0,0.5);

  box-shadow:
    0 0 35px rgba(255,215,0,0.25),
    0 0 60px rgba(255,47,166,0.25);
}

.cultural-register-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.cultural-register-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 26px;
}

/* Button */
.cultural-register-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;

  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #1a001f;
  background: linear-gradient(135deg, #ff2fa6, #ffd700);

  box-shadow:
    0 0 18px rgba(255,215,0,0.9),
    0 0 35px rgba(255,47,166,0.6);

  transition: background 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.cultural-register-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 28px rgba(255,215,0,1),
    0 0 45px rgba(255,47,166,0.8);
}
.center-date-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  z-index: 5;
}

.center-date {
  padding: 16px 34px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 105, 180, 0.28),
    rgba(170, 60, 255, 0.28)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 150, 220, 0.45);
  box-shadow:
    0 0 35px rgba(255, 80, 180, 0.55),
    inset 0 0 22px rgba(255, 255, 255, 0.12);
  text-align: center;
  font-family: 'Orbitron', 'Poppins', sans-serif;
}

.center-date .month {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
}

.center-date .days {
  font-size: 32px;
  font-weight: 800;
  margin-top: 4px;
  background: linear-gradient(90deg, #ff9adf, #d18bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.simple-location {
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 20px;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255, 105, 180, 0.22),
    rgba(170, 80, 255, 0.22)
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 150, 220, 0.45);

  color: #ffe6f5;
  box-shadow:
    0 0 30px rgba(255, 90, 200, 0.5),
    inset 0 0 20px rgba(255,255,255,0.1);
}
/* ===== WORKSHOP POPUP – SIZE REDUCE ===== */

.modal-card {
  max-width: 720px;      /* was ~900 */
  border-radius: 22px;
}

/* Inner spacing */
.modal-content {
  padding: 20px 24px;    /* tighter padding */
}

/* Left image */
.modal-left img {
  width: 240px;          /* was larger */
  height: auto;
  border-radius: 18px;
}

/* Text block */
.workshop-content {
  padding: 0 10px;
}

/* Title */
.workshop-title {
  font-size: 1.6rem;     /* slightly smaller */
}

/* Description */
.workshop-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Meta list */
.workshop-meta li {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .modal-card {
    max-width: 92%;
  }

  .modal-left img {
    width: 180px;
  }

  .workshop-title {
    font-size: 1.35rem;
  }
}
/* ===== LAPTOP COMPULSORY GLASS ALERT ===== */

.laptop-glass-alert {
  margin: 18px auto 8px;
  width: fit-content;
  padding: 10px 22px;

  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  font-weight: 600;

  color: #ffde59;

  background: linear-gradient(
    135deg,
    rgba(255, 47, 166, 0.18),
    rgba(255, 215, 0, 0.12)
  );

  border: 1px solid rgba(255, 47, 166, 0.45);
  border-radius: 30px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 15px rgba(255, 47, 166, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.08);

  animation: laptopGlow 2.5s ease-in-out infinite alternate;
}

/* Icon color */
.laptop-glass-alert i {
  color: #ff2fa6;
  font-size: 1rem;
}

/* Soft glow animation */
@keyframes laptopGlow {
  from {
    box-shadow:
      0 0 12px rgba(255, 47, 166, 0.2),
      inset 0 0 8px rgba(255, 255, 255, 0.05);
    transform: scale(1);
  }
  to {
    box-shadow:
      0 0 22px rgba(255, 47, 166, 0.45),
      inset 0 0 14px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }
}
html {
  scroll-behavior: smooth;
}

/* ================= MINI FEATURED PROGRAM ================= */

.mini-featured-program {
  max-width: 900px;   /* smaller than FEJO */
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
}

/* Smaller text */

.mini-text {
  transform: scale(0.85);
  transform-origin: left bottom;
}

.mini-badge {
  font-size: 0.65rem;
  padding: 4px 10px;
}

.mini-artist {
  font-size: 2.2rem;
}

.mini-live {
  font-size: 1rem;
}

.mini-time {
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.mini-cta {
  font-size: 0.8rem;
}

/* Mobile */

@media (max-width: 768px) {

  .mini-featured-program {
    max-width: 95%;
  }

  .mini-text {
    transform: scale(0.75);
  }

}

  
