:root {
  --bg-page: #f7f8fa;
  --bg-white: #ffffff;
  --bg-soft: #f0f4f8;
  --bg-softer: #e8eef4;
  --accent-gold: #e8a800;
  --accent-gold-lt: #fff3c4;
  --accent-gold-md: #ffd84d;
  --accent-teal: #0da98e;
  --accent-teal-lt: #d4f5ee;
  --accent-pink: #e05474;
  --accent-pink-lt: #fdeaee;
  --accent-purple: #7c52d4;
  --accent-purple-lt: #ede8fb;
  --text-primary: #0f1c2e;
  --text-secondary: #4a6178;
  --text-muted: #8dafc8;
  --border: #dce6ee;
  --border-focus: #e8a800;
  --shadow-sm: 0 2px 8px rgba(15, 28, 46, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 28, 46, 0.09);
  --shadow-lg: 0 20px 60px rgba(15, 28, 46, 0.12);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Nunito Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Navbar */
.headertop {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Countdown */
.countdown-strip {
  background: linear-gradient(90deg, #0f1c2e 0%, #1a3350 100%);
  padding: 10px 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.02em;
}

.cd-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2px 10px;
  min-width: 50px;
  margin: 0 4px;
}

.cd-unit .cd-num {
  font-size: 20px;
  line-height: 1.1;
  color: var(--accent-gold-md);
}

.cd-unit .cd-label {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* IMDA Hero Banner */
.imda-hero-banner {
  background: linear-gradient(135deg, #7c52d4 0%, #4a2fa0 40%, #2a1a6e 100%);
  border-radius: var(--radius-xl);
  padding: 22px 30px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(124, 82, 212, 0.35);
  position: relative;
  overflow: hidden;
}

.imda-hero-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.imda-hero-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.imda-gift-icon {
  font-size: 42px;
  line-height: 1;
}

.imda-hero-text h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.imda-hero-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.imda-hero-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.imda-pct-badge {
  background: var(--accent-gold-md);
  color: #0f1c2e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  padding: 8px 22px;
  border-radius: var(--radius-md);
  line-height: 1;
  letter-spacing: -1px;
}

.imda-approved-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 100px;
  text-align: center;
  line-height: 1.4;
}

/* Hero */
.event-hero-v2 {
  background: transparent;
  padding-top: 0 !important;
  position: relative;
  overflow: hidden;
}

.event-hero-v2::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold-lt);
  border: 1px solid rgba(232, 168, 0, 0.35);
  color: var(--accent-gold);
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.15;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #c97e00 0%, #e8a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grant-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    #5d35d8 0%,
    #7b46f2 35%,
    #ff8c2f 75%,
    #ffb11f 100%
  );
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}

.grant-text {
  font-size: 14px !important;
  line-height: 1;
  white-space: nowrap;
}

.grant-percent {
  font-size: 26px;
  font-weight: 800;
  color: #ffd83d;
  line-height: 1;
}

@media (max-width: 768px) {
  .grant-banner {
    padding: 10px 16px;
    gap: 6px;
    border-radius: 40px;
  }

  .grant-text {
    font-size: 13px;
  }

  .grant-percent {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .grant-banner {
    padding: 8px 14px;
    gap: 5px;
  }

  .grant-text {
    font-size: 11px;
  }

  .grant-percent {
    font-size: 24px;
  }
}
.hero-subline {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 12px;
}

/* Offline event badge */
.offline-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e05474 0%, #c0374f 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(224, 84, 116, 0.4);
}

.event-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
}

.meta-pill.free-pill {
  background: var(--accent-teal-lt);
  border-color: rgba(13, 169, 142, 0.3);
  color: var(--accent-teal);
}

.meta-pill.offline-pill {
  background: var(--accent-pink-lt);
  border-color: rgba(224, 84, 116, 0.3);
  color: var(--accent-pink);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8a800 0%, #c97e00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232, 168, 0, 0.35);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 168, 0, 0.45);
  color: #fff;
}

.btn-agenda {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-agenda:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.hero-event-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-event-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.event-card-overlay {
  padding: 20px 22px 22px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.event-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.event-card-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.seats-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 100px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.avatar-stack {
  display: flex;
}

.avatar-stack .av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  background: var(--accent-gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-left: -7px;
}

.avatar-stack .av:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.social-proof-text strong {
  color: var(--text-primary);
}

/* Sections */
.section-v2 {
  padding: 84px 0;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Learn bento */
.learn-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bento-grid {
  display: grid;
  gap: 18px;
}

.bento-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.bc-1 {
  grid-column: span 3;
}

.bc-2 {
  grid-column: span 3;
}

.bc-3 {
  grid-column: span 2;
}

.bc-4 {
  grid-column: span 2;
}

.bc-5 {
  grid-column: span 2;
}

.bc-6 {
  grid-column: span 3;
}

.bc-7 {
  grid-column: span 3;
}

@media (max-width: 991px) {
  .bc-1,
  .bc-2,
  .bc-3,
  .bc-4,
  .bc-5,
  .bc-6,
  .bc-7 {
    grid-column: span 6;
  }
}

.bento-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  transition: all 0.3s;
}

.bento-card:hover {
  border-color: rgba(232, 168, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card .card-num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.bento-card .card-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.bento-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.bento-card.accent {
  background: linear-gradient(135deg, #fff9e0 0%, #fffaed 100%);
  border-color: rgba(232, 168, 0, 0.25);
}

.bento-card.teal {
  background: linear-gradient(135deg, #edfaf7 0%, #f4fdfa 100%);
  border-color: rgba(13, 169, 142, 0.22);
}

.bento-card.purple {
  background: linear-gradient(135deg, #f0ecfd 0%, #f8f5ff 100%);
  border-color: rgba(124, 82, 212, 0.22);
}

/* Agenda */
.agenda-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.agenda-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.agenda-timeline::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border) 10%,
    var(--border) 90%,
    transparent
  );
}

.agenda-item {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  position: relative;
}

.agenda-time {
  min-width: 58px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-gold);
  text-align: right;
  padding-top: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.agenda-dot {
  width: 13px;
  height: 13px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 22px;
  z-index: 1;
  transition: all 0.3s;
}

.agenda-item.featured .agenda-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(232, 168, 0, 0.15);
}

.agenda-body {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: all 0.25s;
}

.agenda-item:hover .agenda-body {
  border-color: rgba(232, 168, 0, 0.2);
  box-shadow: var(--shadow-sm);
}

.agenda-item.featured .agenda-body {
  background: linear-gradient(135deg, #fff9e0, #fffaed);
  border-color: rgba(232, 168, 0, 0.3);
}

.agenda-body .ag-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.agenda-body .ag-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.agenda-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 8px;
}

.tag-workshop {
  background: var(--accent-purple-lt);
  color: var(--accent-purple);
}

.tag-live {
  background: var(--accent-teal-lt);
  color: var(--accent-teal);
}

.tag-networking {
  background: var(--accent-gold-lt);
  color: var(--accent-gold);
}

.tag-imda {
  background: linear-gradient(135deg, #f0ecfd, #ede8fb);
  color: var(--accent-purple);
}

/* Register */
.register-section {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.register-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  box-shadow: var(--shadow-lg);
}
.register-card h4{
    font-size: 18px !important;
    font-weight: 700;
}
.register-card p{
    font-size: 14px !important;
    color: #374151 !important;
}
@media (max-width: 576px) {
  .register-card {
    padding: 28px 18px;
  }
}

.register-card .form-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.register-card .form-control {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.22s;
}

.register-card .form-control:focus {
  background: var(--bg-white);
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(232, 168, 0, 0.12);
  color: var(--text-primary);
  outline: none;
}

.register-card .form-control::placeholder {
  color: var(--text-muted);
}

.register-card .form-control.is-invalid {
  border-color: var(--accent-pink);
  background: var(--accent-pink-lt);
}

label.error {
  font-size: 12px;
  color: var(--accent-pink);
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 5px;
  display: block;
}

.btn-submit-reg {
  width: 100%;
  background: linear-gradient(135deg, #e8a800 0%, #c97e00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  padding: 15px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(232, 168, 0, 0.3);
  margin-top: 22px;
}

.btn-submit-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 168, 0, 0.4);
}

.btn-submit-reg:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.reg-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.reg-info-card .info-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 14px;
}

.reg-info-card .info-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 26px;
}

.event-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.event-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.event-detail-list li:last-child {
  border-bottom: none;
}

.event-detail-list li .detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 14px;
  flex-shrink: 0;
}

.event-detail-list li .detail-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.event-detail-list li .detail-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pi-chip {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* CTA */
.cta-strip {
  background: linear-gradient(135deg, #0f1c2e 0%, #1a3350 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 168, 0, 0.08) 0%,
    transparent 70%
  );
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-strip p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 30px;
}

/* Toast */
#toastContainer {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast-v2 {
  min-width: 310px;
  max-width: 380px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideInToast 0.3s ease;
}

.toast-v2.success {
  border-left: 4px solid var(--accent-teal);
}

.toast-v2.error {
  border-left: 4px solid var(--accent-pink);
}

.toast-v2 .ti-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.toast-v2.success .ti-icon {
  color: var(--accent-teal);
}

.toast-v2.error .ti-icon {
  color: var(--accent-pink);
}

.toast-v2 .ti-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.toast-v2 .ti-msg {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutToast {
  to {
    opacity: 0;
    transform: translateX(24px);
  }
}

/* Spinner */
.spinner-sm {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
footer {
  background: #0f1c2e;
  padding: 60px 0 30px;
}

footer .link_head {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  margin-top: 0;
}

footer a.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

footer a.footer-link:hover {
  color: var(--accent-gold-md);
}

footer .footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

footer .footer-brand a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-brand a:hover {
  color: var(--accent-gold-md);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  margin-top: 40px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent-gold-md);
}

/* Venue card */
.venue-card {
  background: linear-gradient(135deg, #f0ecfd 0%, #f8f5ff 100%);
  border: 1px solid rgba(124, 82, 212, 0.2);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
  margin-bottom: 18px;
}

.venue-card h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-purple);
  margin-bottom: 10px;
}

.venue-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Hero IMDA highlight strip */
.hero-imda-strip {
  background: linear-gradient(135deg, #7c52d4 0%, #4a2fa0 100%);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-imda-strip .strip-gift {
  font-size: 28px;
  flex-shrink: 0;
}

.hero-imda-strip .strip-text {
  flex: 1;
}

.hero-imda-strip .strip-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-gold-md);
  margin-bottom: 2px;
  line-height: 1.2;
}

.hero-imda-strip .strip-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero-imda-strip .strip-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .event-hero-v2 {
    padding: 60px 0 70px;
  }

  .register-card {
    padding: 26px 16px;
  }

  .reg-info-card {
    padding: 24px 16px;
  }

  .agenda-timeline::before {
    left: 46px;
  }

  .agenda-time {
    min-width: 46px;
    font-size: 11px;
  }

  .imda-hero-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .imda-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 18px;
  border: 2px solid #ffcccc;
  border-radius: 50px;
  background: #fff;
  color: #f02b2b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fa3939;
  position: relative;
}

.badge-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .workshop-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
}
.ai-power {
  color: #4a2fa0;
}
.recommendation-section {
  padding: 60px 0;
  background: #f7f8fc;
}

.recommendation-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Top Recommendation */

.recommendation-top {
  border: 1px solid #ece8ff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background-color: #f6f3fd;
}

.icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #f5f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #6d4df5;
  font-size: 20px;
}

.recommendation-title {
  color: #5a3df2;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.recommendation-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Event Details */

.event-details {
  border: 1px solid #ece8ff;
  border-radius: 14px;
  padding: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-item i {
  color: #6d4df5;
  font-size: 24px;
  margin-top: 4px;
}

.detail-item span {
  display: block;
  color: #999;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.detail-item h6 {
  margin: 0;
  font-size: 12px !important;
  color: #222;
  line-height: 1.6;
  font-weight: 600;
}

/* Buttons */

.button-area {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.reserve-btn {
  background: #d88a00;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
}

.reserve-btn:hover {
  background: #bf7800;
  color: #fff;
}

.agenda-btn {
  background: #fff;
  border: 1px solid #dcdcdc;
  color: #444;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.agenda-btn:hover {
  background: #f5f5f5;
}

/* Bottom Note */

.bottom-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.bottom-note i {
  color: #22c55e;
}

/* Responsive */

@media (max-width: 991px) {
  .detail-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .recommendation-card {
    padding: 18px;
  }

  .recommendation-top {
    padding: 16px;
  }

  .button-area {
    flex-direction: column;
  }

  .reserve-btn,
  .agenda-btn {
    width: 100%;
    text-align: center;
  }

  .detail-item {
    margin-bottom: 18px;
  }

  .bottom-note {
    font-size: 13px;
  }
}

.feature-box i {
  color: #6c4eff;
  font-size: 15px;
}

.feature-box span {
  font-size: 11px;
  font-weight: 600;
  color: #444;
}

@media (max-width: 767px) {
  .feature-box {
    justify-content: flex-start;
  }

  .feature-box span {
    font-size: 13px;
  }
}
.btn-register1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8a800 0%, #c97e00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 8px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232, 168, 0, 0.35);
}

.btn-register1:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232, 168, 0, 0.45);
  color: #fff;
}

.btn-agenda1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn-agenda1:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
/*==============================
 CLIENT FACE SECTION
==============================*/

.clientface-section-tag {
  display: inline-block;
  color: #f4a51c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.clientface-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.clientface-section-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 35px;
}

/*==============================
 CARD
==============================*/

.clientface-feature-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.clientface-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/*==============================
 ICON
==============================*/

.clientface-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.clientface-feature-icon i {
  font-size: 22px;
}

/*==============================
 ICON COLORS
==============================*/

.clientface-purple {
  background: #f3eeff;
  color: #7c3aed;
}

.clientface-orange {
  background: #fff3eb;
  color: #ff6b35;
}

.clientface-yellow {
  background: #fff8e6;
  color: #f4b400;
}

.clientface-green {
  background: #ecfff4;
  color: #22c55e;
}

.clientface-blue {
  background: #eef5ff;
  color: #3b82f6;
}

.clientface-violet {
  background: #f4f0ff;
  color: #7c3aed;
}

.clientface-sky {
  background: #edf9ff;
  color: #38bdf8;
}

.clientface-red {
  background: #fff1f1;
  color: #ef4444;
}

/*==============================
 TEXT
==============================*/

.clientface-feature-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.45;
  margin-bottom: 12px;
  min-height: 26px;
}

.clientface-feature-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/*==============================
 RESPONSIVE
==============================*/

@media (max-width: 1200px) {
  .clientface-section-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .clientface-section-title {
    font-size: 28px;
  }

  .clientface-feature-card {
    padding: 24px 18px;
  }
}

@media (max-width: 768px) {
  .clientface-section-title {
    font-size: 24px;
  }

  .clientface-section-subtitle {
    font-size: 15px;
  }

  .clientface-feature-card {
    padding: 22px 16px;
  }

  .clientface-feature-icon {
    width: 58px;
    height: 58px;
  }

  .clientface-feature-icon i {
    font-size: 22px;
  }

  .clientface-feature-card h5 {
    font-size: 17px;
  }

  .clientface-feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .clientface-section-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .clientface-section-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .clientface-feature-card {
    padding: 20px 15px;
  }

  .clientface-feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .clientface-feature-icon i {
    font-size: 20px;
  }

  .clientface-feature-card h5 {
    font-size: 16px;
  }

  .clientface-feature-card p {
    font-size: 13px;
    line-height: 1.6;
  }
}
/*==================================
 EVENT AGENDA
==================================*/

.eventagenda-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #f5a623;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eventagenda-title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 55px;
}

/*==================================
 EVENT AGENDA TIMELINE
==================================*/

.eventagenda-timeline {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}

.eventagenda-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 29px;
  height: 2px;
  background: #5b4ef7;
}

.eventagenda-item {
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.eventagenda-time {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #5b4ef7;
  margin-bottom: 2px;
}

.eventagenda-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #5b4ef7;
  margin: 0 auto 28px;
  position: relative;
  z-index: 5;
}

.eventagenda-content h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #1f2937;
  min-height: 44px;
  margin-bottom: 10px;
}

.eventagenda-content p {
  max-width: 165px;
  margin: auto;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

/*==================================
 RESPONSIVE
==================================*/

@media (max-width: 991px) {
  .eventagenda-title {
    font-size: 28px;
  }

  .eventagenda-timeline {
    display: block;
    position: relative;
  }

  .eventagenda-timeline::before {
    content: "";
    position: absolute;
    left: 105px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: #5b4ef7;
  }

  .eventagenda-timeline > .col-lg-2,
  .eventagenda-timeline > .col-md-4,
  .eventagenda-timeline > .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .eventagenda-item {
    display: grid;
    grid-template-columns: 90px 30px 1fr;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 35px;
  }

  .eventagenda-time {
    grid-column: 1;
    margin-top: 2px;
    font-size: 14px;
    white-space: nowrap;
  }

  .eventagenda-dot {
    grid-column: 2;
    margin: 0;
    width: 16px;
    height: 16px;
  }

  .eventagenda-content {
    grid-column: 3;
  }

  .eventagenda-content h5 {
    margin: 0 0 8px;
    min-height: auto;
    font-size: 18px;
  }

  .eventagenda-content p {
    margin: 0;
    max-width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 999px) {
  .eventagenda-title {
    font-size: 24px;
  }

  .eventagenda-timeline::before {
    left: 92px;
  }

  .eventagenda-item {
    grid-template-columns: 58px 26px 1fr;
    gap: 15px;
  }

  .eventagenda-content h5 {
    font-size: 16px;
  }

  .eventagenda-content p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .eventagenda-title {
    font-size: 24px;
  }

  .eventagenda-timeline::before {
    left: 92px;
  }

  .eventagenda-item {
    grid-template-columns: 58px 26px 1fr;
    gap: 15px;
  }

  .eventagenda-content h5 {
    font-size: 16px;
  }

  .eventagenda-content p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .eventagenda-title {
    font-size: 22px;
  }

  .eventagenda-tag {
    font-size: 10px;
  }

  .eventagenda-timeline::before {
    left: 84px;
  }

  .eventagenda-item {
    grid-template-columns: 53px 24px 1fr;
    gap: 12px;
  }

  .eventagenda-time {
    font-size: 12px;
  }

  .eventagenda-dot {
    width: 14px;
    height: 14px;
  }

  .eventagenda-content h5 {
    font-size: 15px;
  }

  .eventagenda-content p {
    font-size: 13px;
  }
}
/*======================================
    LEFT GRADIENT CARD
======================================*/

.eventinfo-card {
  background: linear-gradient(135deg, #2d2aa7 0%, #4636d8 45%, #5a46f0 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(71, 55, 218, 0.25);
}

.eventinfo-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.eventinfo-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

/*======================================
    HIGHLIGHT BOX
======================================*/

.eventinfo-highlight {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.eventinfo-highlight-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventinfo-highlight-icon i {
  font-size: 22px;
  color: #ffd54a;
}

.eventinfo-highlight h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffd54a;
  margin-bottom: 8px;
}

.eventinfo-highlight p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

/*======================================
    DETAILS
======================================*/

.eventinfo-detail {
  margin-top: 10px;
}
.eventinfo-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.eventinfo-detail i {
  color: #ffd54a;
  margin-right: 6px;
}

.eventinfo-head i {
  color: #ffd54a;
  font-size: 16px;
  flex-shrink: 0;
}

.eventinfo-head span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.eventinfo-detail p {
  margin: 0;
  padding-left: 24px;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .eventinfo-detail {
    margin-bottom: 18px;
  }

  .eventinfo-head i {
    font-size: 15px;
  }

  .eventinfo-head span {
    font-size: 10px;
  }

  .eventinfo-detail p {
    font-size: 12px;
    padding-left: 24px;
  }
}
/*======================================
    BADGES
======================================*/

.eventinfo-solutions {
  margin-top: 30px;
}

.eventinfo-solutions h6 {
  font-size: 13px;
  color: #ffd54a;
  margin-bottom: 15px;
  font-weight: 700;
}

.eventinfo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eventinfo-badges span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
}
.eventinfo-badges span:hover {
background: white;
  color: #020202;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
}


/*======================================
    FORM CARD
======================================*/

.eventform-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #ececec;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.eventform-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.eventform-card p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 25px;
}

.eventform-card label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.eventform-card .form-control {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  box-shadow: none;
}

.eventform-card .form-control:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 0.15rem rgba(79, 70, 229, 0.15);
}

/*======================================
    BUTTON
======================================*/

.eventform-btn {
  background: linear-gradient(90deg, #f6a623, #e78b06);
  border: none;
  border-radius: 40px;
  height: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}

.eventform-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #e78b06, #d97a00);
}

/*======================================
    NOTE
======================================*/

.eventform-note {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: #8b8b8b;
}

.eventform-note i {
  color: #f59e0b;
  margin-right: 6px;
}

/*======================================
    RESPONSIVE
======================================*/

@media (max-width: 991px) {
  .eventinfo-card,
  .eventform-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .eventinfo-card,
  .eventform-card {
    padding: 22px;
  }

  .eventinfo-card h3 {
    font-size: 22px;
  }

  .eventform-card h4 {
    font-size: 22px;
  }

  .eventinfo-highlight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .eventinfo-detail {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .eventinfo-card h3 {
    font-size: 20px;
  }

  .eventform-card h4 {
    font-size: 20px;
  }

  .eventinfo-badges {
    justify-content: center;
  }

  .eventform-btn {
    width: 100%;
  }
}
.register-card form label{
    font-size: 13px !important;
}
.form-label1{
    font-size: 13px !important;
    color: #020202 !important;
    font-weight: 600;
}