/* ==========================
   HEADER
========================== */

.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.navbar {
  min-height: 112px;
  padding: 0;
}

.container {
  max-width: 1400px;
}

/* ==========================
   LOGO
========================== */


.logo {
  height: 76px;
  width: 168%;
  object-fit: cover;
}

/* ==========================
   NAVIGATION
========================== */

.navbar-nav {
  gap: 45px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #0d2d62 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0 !important;
  transition: all .35s ease;
}

/* Hover Text Gradient */
.nav-link:hover {
  background: linear-gradient(90deg,
      #0f4ca8,
      #2f6de1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Underline Animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg,
      #8bc34a,
      #65b32e);
  border-radius: 50px;
  transform: translateX(-50%);
  transition: width .4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 22px;
}

/* Active Link */
.nav-link.active {
  color: #0d2d62 !important;
}

/* ==========================
   REGISTER BUTTON
========================== */

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 52px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;

  background: linear-gradient(90deg,
      #ff7a18,
      #ff4d2d,
      #e61e24);

  box-shadow:
    0 8px 20px rgba(255, 87, 34, .25);

  transition: all .35s ease;
}

.register-btn:hover {
  transform: translateY(-3px);
  color: #fff;

  background: linear-gradient(90deg,
      #ff8f2f,
      #ff633e,
      #ff2f36);

  box-shadow:
    0 12px 25px rgba(255, 87, 34, .35);
}

.hero {
  overflow: hidden;
}

.hero-bg {
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
  animation: fadeIn .8s ease;
}

.hero-left {
  animation: slideLeft 1s ease forwards;
}

.hero-left-image {
  width: 100%;
  max-width: 520px;
  animation: floatLogo 4s ease-in-out infinite;
}

.hero-right {
  animation: slideRight 1.2s ease forwards;
}

.q-mark {
  animation: fadeDown .8s ease .3s both;
}

.q-body {
  animation: fadeUp .8s ease .5s both;
}

.q-name,
.q-role {
  animation: fadeUp .8s ease .7s both;
}

.port-label {
  animation: fadeUp .8s ease 1s both;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {

  .navbar {
    min-height: auto;
    padding: 15px 0;
  }

  .logo {
    height: 60px;
  }

  .navbar-collapse {
    padding-top: 20px;
  }

  .navbar-nav {
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
  }

  .register-btn {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f6fb;
  color: #0d2d62;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════
   HERO BANNER
══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 780px;
  overflow: hidden;
  margin: 0 auto;
  background: #f8fbff;
}

/* Background city+port image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  z-index: 1;
}

/* Left gradient overlay — keeps text legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.74) 32%,
      rgba(255, 255, 255, 0.28) 62%,
      rgba(255, 255, 255, 0.0) 82%);
  z-index: 2;
}

/* CM photo — bottom-anchored, center-stage */
.hero-person {
  position: absolute;
  bottom: -6px;
  left: 55%;
  transform: translateX(-50%);
  max-height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 4;
  pointer-events: none;
}

/* ── LEFT block ── */
.hero-left {
  position: absolute;
  top: 40px;
  left: 19px;
  width: 46%;
  height: calc(100% - 56px);
  padding: 36px 28px 30px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 6;
}

.org-label {
  font-size: 14px;
  font-weight: 800;
  color: #0d2d62;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.brand-business {
  font-size: 84px;
  font-weight: 900;
  color: #0d2d62;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

/* EXPO + pipe + year on same row */
.expo-year-row {
  display: flex;
  align-items: center;
  margin-top: -12px;
  gap: 12px;
}

.expo-letters {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 6px;
}

.e-letter,
.x-letter,
.p-letter {
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.e-letter {
  color: #0d2d62;
}

.x-letter {
  color: #d62b20;
}

.p-letter {
  color: #2e8b22;
}

/* O = circle with plant */
.o-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #0d2d62;
  border: 3px solid #4a7fd4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 4px;
}

.o-circle svg {
  width: 42px;
  height: 42px;
}

/* Vertical pipe */
.v-pipe {
  width: 3px;
  height: 108px;
  background: linear-gradient(to bottom, transparent 0%, #2a5fa5 18%, #2a5fa5 82%, transparent 100%);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Year + city */
.year-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.year-num {
  font-size: 70px;
  font-weight: 900;
  color: #1a5fb8;
  line-height: 1;
  letter-spacing: -2px;
}

.city-name {
  font-size: 20px;
  font-weight: 800;
  color: #1a5fb8;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Tagline */
.tagline {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  margin-top: 18px;
  color: #0d2d62;
  max-width: 340px;
  line-height: 1.2;
}

.tagline span {
  display: inline-block;
}

.t-invest {
  color: #0d2d62;
}

.t-innov {
  color: #2e8b22;
}

.t-impact {
  color: #d62b20;
}

/* Subtitle */
.hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: #0d2d62;
  line-height: 1.45;
  font-family: 'Open Sans', sans-serif;
  max-width: 420px;
  margin-top: 14px;
}

/* ── RIGHT quote ── */
.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 26%;
  height: 64%;
  padding: 52px 30px 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 6;
}

.q-mark {
  font-size: 92px;
  font-weight: 900;
  color: #0d2d62;
  line-height: 0.55;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  opacity: 0.9;
}

.q-body {
  font-size: 20px;
  font-weight: 700;
  color: #0d2d62;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 100%;
}

.q-name {
  font-size: 12px;
  font-weight: 800;
  color: #0d2d62;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.q-role {
  font-size: 13px;
  font-weight: 400;
  color: #1a3a5c;
  line-height: 1.45;
  font-family: 'Open Sans', sans-serif;
}

/* Port label */
.port-label {
  position: absolute;
  bottom: 18px;
  right: 26px;
  text-align: right;
  z-index: 7;
}

.port-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #ffe066;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  margin-bottom: 4px;
}

.port-sub {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

/* dark bottom strip for port label area */
.port-strip {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 380px;
  height: 62px;
  background: linear-gradient(to top, rgba(10, 25, 60, 0.78), transparent);
  z-index: 5;
}

@media (max-width: 1199px) {
  .hero-left {
    width: 48%;
    padding: 32px 24px 28px 32px;
  }

  .hero-right {
    width: 30%;
  }

  .hero-person {
    left: 60%;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: 900px;
  }

  .hero-left,
  .hero-right {
    position: relative;
    width: 100%;
    height: auto;
    padding: 24px;
  }

  .hero-right {
    margin-top: 22px;
  }

  .hero-person {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translateX(-50%);
    max-width: 520px;
    max-height: 420px;
  }

  .expo-row,
  .year-block,
  .hero-right {
    width: 100%;
  }

  .hero-sub {
    font-size: 16px;
  }

  .q-body {
    font-size: 18px;
  }

  .port-label {
    right: 20px;
    bottom: 16px;
    text-align: left;
  }

  .port-strip {
    width: 100%;
    height: 58px;
  }
}


.event-stats-section {
  background: #032a5a;
  padding: 20px 15px;
  width: 100%;
}

.event-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 70px;
}

.event-item:last-child {
  border-right: none;
}

.event-icon {
  font-size: 38px;
  color: #ffffff;
  min-width: 45px;
  text-align: center;
}

.event-icon.red {
  color: #ff3d3d;
}

.event-icon.green {
  color: #7ed321;
}

.event-icon.yellow {
  color: #ffc107;
}

.event-icon.cyan {
  color: #00d9ff;
}

.event-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.event-content p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .event-container {
    justify-content: center;
    gap: 20px;
  }

  .event-item {
    border-right: none;
    width: calc(50% - 20px);
  }
}

.event-stats-section {
  background: #032a5a;
  padding: 15px 10px;
  width: 100%;
  /* overflow-x: auto; */
}

.event-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* Important */
  min-width: max-content;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  /* Prevent text wrapping */
}

.event-item:last-child {
  border-right: none;
}

.event-icon {
  font-size: 34px;
  color: #fff;
}

.event-icon.red {
  color: #ff3b30;
}

.event-icon.green {
  color: #7ed321;
}

.event-icon.yellow {
  color: #ffc107;
}

.event-icon.cyan {
  color: #00d4ff;
}

.event-content h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.event-content p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  /* Keep INDUSTRY SECTORS in one line */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f8f8;
}

.pavilions-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-title span {
  flex: 1;
  height: 2px;
  background: #dcdcdc;
}

.section-title h2 {
  color: #123a83;
  font-size: 38px;
  font-weight: 700;
}

.pavilions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pavilion-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  transition: .3s;
}

.pavilion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.pavilion-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.pavilion-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.pavilion-card ul {
  padding-left: 20px;
  margin-bottom: 25px;
  flex: 1;
}

.pavilion-card ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}

.card-btn {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* Color Themes */

.green h3 {
  color: #4f8d1f;
}

.green .card-btn {
  background: #4f8d1f;
}

.blue h3 {
  color: #0f3c8e;
}

.blue .card-btn {
  background: #0f3c8e;
}

.orange h3 {
  color: #f36d08;
}

.orange .card-btn {
  background: #f36d08;
}

.teal h3 {
  color: #0f8c83;
}

.teal .card-btn {
  background: #0f8c83;
}

.purple h3 {
  color: #6d2ea8;
}

.purple .card-btn {
  background: #6d2ea8;
}

.brown h3 {
  color: #8a5315;
}

.brown .card-btn {
  background: #8a5315;
}

.pink h3 {
  color: #e61b68;
}

.pink .card-btn {
  background: #e61b68;
}

.cyan h3 {
  color: #0b8a8a;
}

.cyan .card-btn {
  background: #0b8a8a;
}

/* Responsive */

@media(max-width:768px) {

  .section-title h2 {
    font-size: 28px;
  }

  .pavilion-card {
    min-height: auto;
  }
}

.expo-section {
  background: linear-gradient(rgba(3, 35, 80, 0.95),
      rgba(3, 35, 80, 0.95)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');
  background-size: cover;
  background-position: center;
  padding: 25px 40px;
  color: #fff;
}

.expo-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.expo-left {
  flex: 2;
}

.expo-right {
  flex: 1;
}

.expo-left h2,
.expo-right h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.highlights-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.highlight-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, .25);
  min-height: 95px;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item i {
  display: block;
  font-size: 42px;
  margin-bottom: 10px;
}

.highlight-item span {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.orange {
  color: #f9a825;
}

.cyan {
  color: #26c6da;
}

.green {
  color: #7ed321;
}

.purple {
  color: #ba68c8;
}

.red {
  color: #ff3d3d;
}

.btn-wrap {
  text-align: center;
  margin-top: 25px;
}

.highlight-btn {
  display: inline-block;
  min-width: 280px;
  padding: 14px 35px;
  border: 2px solid #8ca5d4;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
}

.highlight-btn:hover {
  background: #ffffff;
  color: #032350;
}

.vertical-divider {
  width: 1px;
  background: rgba(255, 255, 255, .3);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 500;
}

.benefits-list i {
  color: #6cc04a;
  font-size: 22px;
}

@media (max-width: 991px) {
  .expo-container {
    flex-direction: column;
  }

  .vertical-divider {
    display: none;
  }

  .highlights-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .highlight-item {
    flex: 0 0 calc(33.33% - 20px);
    border-right: none;
  }
}

@media (max-width: 576px) {
  .highlight-item {
    flex: 0 0 calc(50% - 15px);
  }

  .expo-left h2,
  .expo-right h2 {
    font-size: 26px;
  }

  .benefits-list li {
    font-size: 16px;
  }
}

.trade-expo-area {
  background: #032a5a;
  padding: 25px 40px;
  color: #fff;
}

.trade-expo-wrapper {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: auto;
}

.trade-expo-highlights {
  width: 65%;
}

.trade-exhibit-area {
  width: 35%;
  padding-left: 40px;
}

.trade-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.trade-highlight-row {
  display: flex;
  align-items: flex-start;
}

.trade-highlight-box {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, .25);
  min-height: 95px;
}

.trade-highlight-box:last-child {
  border-right: none;
}

.trade-highlight-box i {
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}

.trade-highlight-box span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}

.trade-orange {
  color: #f5a623;
}

.trade-cyan {
  color: #18d4e0;
}

.trade-green {
  color: #7dd321;
}

.trade-purple {
  color: #c46cff;
}

.trade-red {
  color: #ff4040;
}

.trade-btn-area {
  text-align: center;
  margin-top: 25px;
}

.trade-view-btn {
  display: inline-block;
  min-width: 260px;
  padding: 12px 25px;
  border: 2px solid #8da6d6;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: .3s;
}

.trade-view-btn:hover {
  background: #fff;
  color: #032a5a;
}

.trade-divider {
  width: 1px;
  background: rgba(255, 255, 255, .25);
  margin: 0 40px;
}

.trade-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trade-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 18px;
}

.trade-benefits-list i {
  color: #69c242;
  font-size: 20px;
}

@media(max-width:991px) {

  .trade-expo-wrapper {
    flex-direction: column;
  }

  .trade-expo-highlights,
  .trade-exhibit-area {
    width: 100%;
  }

  .trade-divider {
    display: none;
  }

  .trade-exhibit-area {
    padding-left: 0;
    margin-top: 30px;
  }

  .trade-highlight-row {
    flex-wrap: wrap;
  }

  .trade-highlight-box {
    flex: 0 0 33.33%;
    border: none;
    margin-bottom: 20px;
  }
}

@media(max-width:576px) {

  .trade-highlight-box {
    flex: 0 0 50%;
  }

  .trade-heading {
    font-size: 24px;
  }
}

/* ======================
   Statistics Section
====================== */

.expo-stats {
  background: #fff;
  padding: 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

.stats-container {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-card {
  text-align: center;
  padding: 20px 15px;
  border-right: 1px solid #ececec;
  background: #fff;

  transition: all .3s ease;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-card h2 {
  color: #072c6a;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-card p {
  color: #072c6a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Icon Colors */

.blue {
  color: #0c3f91;
}

.red {
  color: #ff3a2f;
}

.green {
  color: #0a7d35;
}

.orange {
  color: #ff8a00;
}

.sky {
  color: #2f7de1;
}

/* Tablet */

@media(max-width:992px) {

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-card {
    border-bottom: 1px solid #ececec;
  }
}

/* Mobile */

@media(max-width:576px) {

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .stat-card h2 {
    font-size: 34px;
  }

  .stat-card p {
    font-size: 14px;
  }
}

/* ===========================
   CTA COUNTDOWN SECTION
=========================== */

.expo-cta {
  padding: 40px 20px;
  background: #ffffff;
}

.expo-cta-container {
  max-width: 1400px;
  margin: auto;

  background: linear-gradient(90deg,
      #062b67 0%,
      #003a84 100%);

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 35px 45px;
  gap: 40px;
}

/* LEFT CONTENT */

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-content p {
  color: #d7e1ef;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 650px;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-exhibitor,
.btn-visitor {
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: .3s;
}

.btn-exhibitor {
  background: #ff641f;
  color: #fff;
}

.btn-exhibitor:hover {
  background: #f0550d;
}

.btn-visitor {
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.btn-visitor:hover {
  background: rgba(255, 255, 255, .08);
}

/* DIVIDER */

.cta-divider {
  width: 2px;
  height: 140px;
  background: rgba(255, 255, 255, .18);
}

/* COUNTDOWN */

.countdown-section {
  min-width: 520px;
  text-align: center;
}

.countdown-section h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.countdown-grid {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.time-box {
  width: 110px;
  height: 110px;

  background: #fff;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.number {
  font-size: 44px;
  font-weight: 800;
  color: #062b67;
  line-height: 1;
}

.label {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #062b67;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:1024px) {

  .expo-cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-divider {
    width: 100%;
    height: 2px;
  }

  .countdown-section {
    min-width: auto;
  }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px) {

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-exhibitor,
  .btn-visitor {
    width: 100%;
    text-align: center;
  }

  .countdown-grid {
    flex-wrap: wrap;
  }

  .time-box {
    width: 90px;
    height: 90px;
  }

  .number {
    font-size: 32px;
  }
}

/*========================
    PARTNERS SECTION
=========================*/

.partners-section {
  padding: 60px 0;
  background: #fff;
}

.container {
  width: 92%;
  max-width: 1600px;
  margin: auto;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  gap: 18px;
}

.section-title span {
  width: 65px;
  height: 2px;
  background: #6ab04c;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #17366d;
  letter-spacing: 1px;
  margin: 0;
}

.partners-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Navigation */

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #6ab04c;
  font-size: 34px;
  cursor: pointer;
  transition: .3s;
}

.nav-btn:hover {
  transform: scale(1.15);
}

/* Cards */

.partners-grid {
  display: flex;
  gap: 22px;
  flex: 1;
}

.partner-card {
  flex: 1;
  min-width: 220px;
  height: 320px;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  transition: .3s;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.logo-box {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 170px;
  max-height: 100px;
  object-fit: contain;
}

/* Buttons */

.visit-btn {
  width: 100%;
  height: 54px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: .3s;
  background: #fff;
}

.red {
  color: #e53935;

}

.red:hover {
  background: #e53935;
  color: #fff;
}

.blue {
  color: #1565c0;

}



.navy {
  color: #1a237e;

}

.navy:hover {
  background: #1a237e;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   ANIMATION KEYFRAMES
══════════════════════════════════════════════════════════ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 122, 24, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 122, 24, 0.8);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-slide-up {
  animation: slideInUp 0.8s ease-out;
}

.animate-slide-down {
  animation: slideInDown 0.8s ease-out;
}

.animate-scale {
  animation: scaleIn 0.8s ease-out;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-rotate {
  animation: rotateIn 0.8s ease-out;
}

.animate-zoom {
  animation: zoomIn 0.8s ease-out;
}

/* Animation delays */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* ══════════════════════════════════════════════════════════
   ENHANCED MOBILE RESPONSIVENESS
══════════════════════════════════════════════════════════ */

/* Extra small devices (phones < 400px) */
@media (max-width: 400px) {
  .brand-business {
    font-size: 64px;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 70px;
  }

  .o-circle {
    width: 70px;
    height: 70px;
  }

  .year-num {
    font-size: 56px;
  }

  .expo-year-row {
    gap: 8px;
  }

  .hero-left,
  .hero-right {
    padding: 16px 12px;
  }

  .tagline {
    font-size: 14px;
    max-width: 280px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .q-body {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .pavilion-card {
    padding: 16px;
    min-height: 380px;
  }

  .pavilion-card h3 {
    font-size: 18px;
  }

  .pavilion-card ul li {
    font-size: 14px;
  }

  .event-content h3 {
    font-size: 18px;
  }

  .event-icon {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .time-box {
    width: 75px;
    height: 75px;
  }

  .number {
    font-size: 26px;
  }

  .label {
    font-size: 12px;
  }
}

/* Small devices (phones 400px - 576px) */
@media (max-width: 576px) {
  * {
    scroll-behavior: smooth;
  }

  .brand-business {
    font-size: 72px;
    margin-bottom: 4px;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 80px;
  }

  .o-circle {
    width: 78px;
    height: 78px;
  }

  .o-circle svg {
    width: 38px;
    height: 38px;
  }

  .year-num {
    font-size: 62px;
    letter-spacing: -1px;
  }

  .city-name {
    font-size: 16px;
  }

  .v-pipe {
    height: 95px;
    margin: 0 12px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-left,
  .hero-right {
    position: relative;
    width: 100%;
    padding: 18px;
    margin-top: 0;
  }

  .hero-right {
    margin-top: 12px;
  }

  .tagline {
    font-size: 15px;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 15px;
    margin-top: 10px;
  }

  .q-mark {
    font-size: 72px;
    margin-bottom: 12px;
  }

  .q-body {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .event-container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .event-item {
    width: 100%;
    padding: 0 15px;
    border-right: none;
    min-height: 60px;
    gap: 8px;
  }

  .event-content h3 {
    font-size: 20px;
  }

  .event-content p {
    font-size: 11px;
  }

  .event-icon {
    font-size: 30px;
    min-width: 40px;
  }

  .pavilions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pavilion-card {
    padding: 18px;
    min-height: auto;
  }

  .pavilion-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .pavilion-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .pavilion-card ul {
    padding-left: 16px;
    margin-bottom: 16px;
  }

  .pavilion-card ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-title span {
    flex: 0 0 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .expo-hero {
    padding: 20px 15px;
  }

  .expo-container {
    flex-direction: column;
    gap: 20px;
  }

  .expo-video {
    min-height: 160px;
  }

  .expo-content h1 {
    font-size: 28px;
  }

  .expo-content p {
    font-size: 14px;
  }

  .expo-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }

  .trade-expo-area {
    padding: 20px 15px;
  }

  .trade-expo-wrapper {
    flex-direction: column;
  }

  .trade-expo-highlights,
  .trade-exhibit-area {
    width: 100%;
    padding: 0;
  }

  .trade-divider {
    display: none;
  }

  .trade-exhibit-area {
    margin-top: 20px;
  }

  .trade-heading {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .trade-highlight-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trade-highlight-box {
    flex: 0 0 calc(50% - 8px);
    border: none;
    padding: 12px;
    min-height: auto;
    margin-bottom: 0;
  }

  .trade-highlight-box i {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .trade-highlight-box span {
    font-size: 12px;
  }

  .trade-benefits-list li {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-card {
    padding: 16px 12px;
    border-right: none;
    border-bottom: 1px solid #ececec;
  }

  .stat-card h2 {
    font-size: 36px;
    margin-bottom: 4px;
  }

  .stat-card p {
    font-size: 13px;
  }

  .stat-icon {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .expo-cta {
    padding: 20px 12px;
  }

  .expo-cta-container {
    padding: 24px 16px;
    gap: 20px;
    flex-direction: column;
    border-radius: 8px;
  }

  .cta-content h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .cta-content p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-exhibitor,
  .btn-visitor {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .cta-divider {
    display: none;
  }

  .countdown-section {
    width: 100%;
    min-width: auto;
    margin-top: 12px;
  }

  .countdown-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .countdown-grid {
    gap: 10px;
  }

  .time-box {
    width: 80px;
    height: 80px;
  }

  .number {
    font-size: 30px;
  }

  .label {
    font-size: 12px;
    margin-top: 4px;
  }

  .partners-section {
    padding: 40px 15px;
  }

  .partners-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .partners-grid {
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
  }

  .partner-card {
    min-width: calc(50% - 8px);
    height: 280px;
    padding: 16px;
  }

  .logo-box {
    height: 120px;
  }

  .logo-box img {
    max-width: 140px;
    max-height: 80px;
  }

  .visit-btn {
    height: 44px;
    font-size: 14px;
  }

  .container {
    width: 96%;
  }
}

/* Medium devices (tablets 577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .brand-business {
    font-size: 76px;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 85px;
  }

  .o-circle {
    width: 80px;
    height: 80px;
  }

  .year-num {
    font-size: 64px;
  }

  .hero-left {
    width: 100%;
    padding: 24px;
  }

  .hero-right {
    width: 100%;
    padding: 20px 24px;
    margin-top: 12px;
  }

  .q-body {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .pavilion-card {
    min-height: auto;
  }

  .pavilion-card h3 {
    font-size: 22px;
  }

  .pavilion-card ul li {
    font-size: 15px;
  }

  .expo-container {
    flex-direction: column;
    gap: 24px;
  }

  .expo-video {
    min-height: 300px;
  }

  .trade-highlight-box {
    flex: 0 0 calc(33.33% - 14px);
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .time-box {
    width: 95px;
    height: 95px;
  }

  .number {
    font-size: 36px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops 769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .brand-business {
    font-size: 78px;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 88px;
  }

  .pavilion-card {
    min-height: 420px;
  }

  .trade-highlight-box {
    flex: 0 0 calc(33.33% - 10px);
    padding: 0 8px;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .time-box {
    width: 100px;
    height: 100px;
  }
}

/* Extra large devices (desktops > 1200px) */
@media (min-width: 992px) {
  .navbar {
    transition: all 0.3s ease;
  }

  .navbar:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .pavilion-card,
  .partner-card,
  .stat-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .pavilion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: #f5f5f5;
  }
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {

  button,
  a {
    min-height: 44px;
    min-width: 44px;
  }

  .btn-primary,
  .btn-outline,
  .btn-exhibitor,
  .btn-visitor,
  .register-btn {
    padding: 16px 24px;
  }

  .nav-link {
    padding: 12px 0;
  }
}

/* Print styles */
@media print {

  .header,
  .navbar-toggler,
  .register-btn,
  .cta-buttons,
  .nav-btn {
    display: none;
  }
}

.orange {
  color: #ef6c00;

}



/* Responsive */

@media (max-width:1200px) {

  .partners-grid {
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .partner-card {
    min-width: 250px;
  }
}

@media (max-width:768px) {

  .section-title h2 {
    font-size: 26px;
  }

  .partner-card {
    min-width: 220px;
    height: 290px;
  }

  .logo-box {
    height: 120px;
  }

  .visit-btn {
    height: 48px;
    font-size: 18px;
  }
}

.partners-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.partners-grid::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

.footer {
  background: #062b61;
  color: #fff;
  padding: 35px 0 15px;
  font-family: Arial, sans-serif;
}

.footer .container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.footer-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 35px;
  align-items: flex-start;
}

.footer-col {
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, .20);
  min-height: 170px;
}

.footer-col:last-child {
  border-right: none;
}

.company {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  width: 400px;
  height: auto;
  object-fit: contain;
}

.company-text h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.company-text p {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  transition: .3s;
}

.footer ul li a:hover {
  color: #42c5ff;
}

.contact p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: #42c5ff;
}

@media(max-width:992px) {

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding-bottom: 25px;
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .company {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.expo-hero {
  padding: 60px 20px;
  background: #ffffff;
}

.expo-container {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.expo-video {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.expo-video img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 80px;
  height: 80px;
  border-radius: 50%;

  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.play-btn i {
  color: #0d2e68;
  font-size: 30px;
  margin-left: 5px;
}

.welcome-text {
  color: #4c8c1a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.expo-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 10px 0 20px;
  color: #082b69;
  font-weight: 800;
}

.expo-content h1 span {
  color: #4c8c1a;
}

.expo-content p {
  color: #555;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.expo-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  text-decoration: none;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 8px;
  transition: .3s;
}

.btn-primary {
  background: #5a9d22;
  color: #fff;
}

.btn-primary:hover {
  background: #4b841b;
}

.btn-outline {
  border: 2px solid #bfc7d3;
  color: #0d2e68;
  background: #fff;
}

.btn-outline:hover {
  border-color: #0d2e68;
}

/* Responsive */

@media(max-width:992px) {

  .expo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expo-content h1 {
    font-size: 40px;
  }

  .expo-content p {
    font-size: 18px;
  }
}

@media(max-width:576px) {

  .expo-content h1 {
    font-size: 30px;
  }

  .expo-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   IMPROVED MOBILE RESPONSIVENESS & ANIMATIONS
   Added enhancements – append to existing styles.css
══════════════════════════════════════════════════════════ */

/* ── Smooth scroll for the whole page ── */
html {
  scroll-behavior: smooth;
}

/* ── AOS animation init (ensure it fires on mobile) ── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════ */

/* Fade up – used by hero text & cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide in from left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale-in for logo / icons */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Subtle pulse for the register button */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(255, 87, 34, .25);
  }

  50% {
    box-shadow: 0 12px 30px rgba(255, 87, 34, .45);
  }
}

/* Floating animation for hero person image */
@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Countdown number flip */
@keyframes numFlip {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(-90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

/* Shimmer loading skeleton */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ══════════════════════════════════════
   APPLY ANIMATIONS
══════════════════════════════════════ */

/* Hero left block – slide from left */
.hero-left {
  animation: slideInLeft 0.8s ease both;
}

/* Hero right block – slide from right */
.hero-right {
  animation: slideInRight 0.9s ease 0.2s both;
}

/* Logo scale-in */
.logo {
  animation: scaleIn 0.6s ease both;
}

/* Register button pulse */
.register-btn {
  animation: pulse 3s ease-in-out infinite;
}

/* Pavilion cards fade-up on load */
.pavilion-card {
  animation: fadeInUp 0.6s ease both;
}

.pavilion-card:nth-child(1) {
  animation-delay: 0.05s;
}

.pavilion-card:nth-child(2) {
  animation-delay: 0.12s;
}

.pavilion-card:nth-child(3) {
  animation-delay: 0.19s;
}

.pavilion-card:nth-child(4) {
  animation-delay: 0.26s;
}

.pavilion-card:nth-child(5) {
  animation-delay: 0.33s;
}

.pavilion-card:nth-child(6) {
  animation-delay: 0.40s;
}

.pavilion-card:nth-child(7) {
  animation-delay: 0.47s;
}

.pavilion-card:nth-child(8) {
  animation-delay: 0.54s;
}

/* Partner cards */
.partner-card {
  animation: fadeInUp 0.5s ease both;
}

/* Stat cards */
.stat-card {
  animation: fadeInUp 0.5s ease both;
}

/* Section titles */
.section-title h2 {
  animation: fadeInUp 0.6s ease both;
}

/* Countdown boxes */
.time-box {
  animation: scaleIn 0.5s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-box:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Hero person floating */
.hero-person {
  animation: float 5s ease-in-out infinite;
}

/* Nav link transition upgrade */
.nav-link {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CTA section */
.cta-section {
  animation: fadeInUp 0.7s ease both;
}

/* Event stats items */
.event-item {
  transition: transform 0.3s ease, background 0.3s ease;
}

.event-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

/* Play button pulse */
.play-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Card-btn hover lift */
.card-btn {
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Visit btn in partners */
.visit-btn {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.visit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVENESS IMPROVEMENTS
══════════════════════════════════════ */

/* ── Very small phones (< 360px) ── */
@media (max-width: 359px) {
  .brand-business {
    font-size: 52px !important;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 58px !important;
  }

  .year-num {
    font-size: 46px !important;
  }

  .city-name {
    font-size: 14px !important;
    letter-spacing: 1.5px !important;
  }

  .section-title h2 {
    font-size: 20px !important;
  }

  .expo-content h1 {
    font-size: 26px !important;
  }

  .time-box {
    width: 64px !important;
    height: 64px !important;
  }

  .time-box .number {
    font-size: 22px !important;
  }

  .cta-content h2 {
    font-size: 22px !important;
  }
}

/* ── Small phones (360px – 575px) ── */
@media (max-width: 575px) {

  /* HERO adjustments */
  .hero {
    min-height: auto !important;
  }

  .hero-left {
    padding: 20px 16px 16px !important;
    width: 100% !important;
    position: relative !important;
    height: auto !important;
    /* disable float on mobile */
    animation: fadeInUp 0.7s ease both;
  }

  .hero-right {
    padding: 16px !important;
    width: 100% !important;
    position: relative !important;
    height: auto !important;
    animation: fadeInUp 0.7s ease 0.15s both;
  }

  .hero-person {
    display: none !important;
  }

  .brand-business {
    font-size: 60px !important;
    line-height: 0.92 !important;
  }

  .e-letter,
  .x-letter,
  .p-letter {
    font-size: 64px !important;
  }

  .o-circle {
    width: 58px !important;
    height: 58px !important;
  }

  .o-circle svg {
    width: 30px !important;
    height: 30px !important;
  }

  .year-num {
    font-size: 50px !important;
  }

  .city-name {
    font-size: 15px !important;
    letter-spacing: 2px !important;
  }

  .v-pipe {
    height: 80px !important;
    margin: 0 12px !important;
  }

  .tagline {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    max-width: 100% !important;
  }

  .hero-sub {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  .q-body {
    font-size: 16px !important;
  }

  .q-mark {
    font-size: 64px !important;
  }

  /* Event stats – single column on tiny screens */
  .event-stats-section {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .event-container {
    min-width: unset !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 10px 0;
  }

  .event-item {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 12px !important;
  }

  .event-item:last-child {
    border-bottom: none;
  }

  /* About / expo section */
  .expo-container {
    gap: 24px !important;
  }

  .expo-content h1 {
    font-size: 28px !important;
  }

  .expo-content p {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .btn-primary,
  .btn-outline {
    padding: 13px 20px !important;
    font-size: 14px !important;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 22px !important;
  }

  /* Pavilions */
  .pavilions-section {
    padding: 36px 14px !important;
  }

  .pavilions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .pavilion-card {
    min-height: auto !important;
    padding: 18px !important;
  }

  .pavilion-card h3 {
    font-size: 19px !important;
  }

  .pavilion-card ul li {
    font-size: 14px !important;
  }

  /* Trade / highlights */
  .trade-highlight-box {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Stats */
  .stats-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .stat-card {
    padding: 18px 10px !important;
  }

  .stat-number {
    font-size: 28px !important;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 24px !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .btn-exhibitor,
  .btn-visitor {
    width: 100% !important;
    text-align: center !important;
  }

  /* Countdown */
  .countdown-container {
    gap: 10px !important;
  }

  .time-box {
    width: 72px !important;
    height: 72px !important;
  }

  .time-box .number {
    font-size: 26px !important;
  }

  .time-box .label {
    font-size: 9px !important;
  }

  /* Partners */
  .partners-section {
    padding: 36px 12px !important;
  }

  .partner-card {
    min-width: 200px !important;
  }

  /* Footer */
  .footer {
    padding: 28px 0 12px !important;
  }

  .footer-logo {
    width: 220px !important;
  }

  .footer h4 {
    font-size: 18px !important;
  }

  .footer ul li a {
    font-size: 15px !important;
  }

  .contact p {
    font-size: 14px !important;
  }

  .footer-bottom {
    font-size: 12px !important;
  }

  .footer-links a {
    font-size: 12px !important;
  }

  /* Hamburger toggler area */
  .navbar {
    padding: 10px 0 !important;
  }

  .logo {
    height: 48px !important;
  }

  .register-btn {
    margin-top: 10px;
    width: 100%;
  }
}

/* ── Medium phones (576px – 767px) ── */
@media (min-width: 576px) and (max-width: 767px) {

  .hero-left {
    width: 100% !important;
    padding: 28px 24px !important;
  }

  .hero-right {
    width: 100% !important;
    padding: 20px 24px !important;
  }

  .hero-person {
    display: none !important;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pavilions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cta-content h2 {
    font-size: 28px !important;
  }
}

/* ── Tablets (768px – 991px) ── */
@media (min-width: 768px) and (max-width: 991px) {

  .hero-person {
    max-height: 400px;
  }

  .pavilions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .expo-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .expo-content h1 {
    font-size: 36px !important;
  }

  .trade-highlight-box {
    flex: 0 0 calc(50% - 12px) !important;
  }

  .time-box {
    width: 88px !important;
    height: 88px !important;
  }
}

/* ── Reduce motion preference ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════
   MOBILE NAVBAR ENHANCEMENTS
══════════════════════════════════════ */

/* Smooth collapse */
.navbar-collapse {
  transition: all 0.35s ease;
}

/* Mobile menu overlay background */
@media (max-width: 991px) {
  .navbar-collapse.show {
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 16px 20px 20px;
  }

  .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(13, 45, 98, 0.08);
    display: block;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  /* Slide each nav item in */
  .navbar-nav .nav-item {
    animation: slideInLeft 0.3s ease both;
  }

  .navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.05s;
  }

  .navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.10s;
  }

  .navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.15s;
  }

  .navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.20s;
  }

  .navbar-nav .nav-item:nth-child(5) {
    animation-delay: 0.25s;
  }

  .navbar-nav .nav-item:nth-child(6) {
    animation-delay: 0.30s;
  }

  .navbar-nav .nav-item:nth-child(7) {
    animation-delay: 0.35s;
  }
}

/* Hamburger icon smooth morph */
.navbar-toggler {
  border: none !important;
  padding: 6px 10px;
  transition: transform 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler[aria-expanded="true"] {
  transform: rotate(90deg);
}

/* ══════════════════════════════════════
   UTILITY: IMAGE LOADING SHIMMER
══════════════════════════════════════ */
img {
  transition: opacity 0.4s ease;
}

img:not([src]) {
  background: linear-gradient(90deg, #e8edf5 25%, #f2f5fb 50%, #e8edf5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ══════════════════════════════════════
   SCROLL-TRIGGERED: Intersection Observer
   Classes toggled by JS
══════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helper classes */
.delay-100 {
  transition-delay: 0.1s !important;
}

.delay-200 {
  transition-delay: 0.2s !important;
}

.delay-300 {
  transition-delay: 0.3s !important;
}

.delay-400 {
  transition-delay: 0.4s !important;
}

.delay-500 {
  transition-delay: 0.5s !important;
}


/* ===================================
   MOBILE CAROUSEL FOR ALL CARD SECTIONS
=================================== */
@media (max-width: 768px) {

  /* Generic horizontal slider */
  .pavilions-grid,
  .industries-grid,
  .benefits-grid,
  .highlights-grid,
  .partners-grid,
  .sponsors-grid,
  .gallery-grid,
  .event-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pavilions-grid::-webkit-scrollbar,
  .industries-grid::-webkit-scrollbar,
  .benefits-grid::-webkit-scrollbar,
  .highlights-grid::-webkit-scrollbar,
  .partners-grid::-webkit-scrollbar,
  .sponsors-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .event-container::-webkit-scrollbar {
    display: none;
  }

  .pavilion-card,
  .industry-card,
  .benefit-card,
  .highlight-card,
  .partner-card,
  .sponsor-card,
  .gallery-item,
  .event-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* Stats Section */
  .event-item {
    min-width: 280px;
    border-right: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    position: relative;
    padding: 20px;
  }

  .hero-person {
    display: none !important;
  }

  .brand-business {
    font-size: 48px;
  }

  .year-num {
    font-size: 42px;
  }

  .expo-year-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .v-pipe {
    display: none;
  }

  /* Buttons */
  .register-btn,
  .card-btn,
  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  /* Section Heading */
  .section-title h2 {
    font-size: 28px;
    text-align: center;
  }

  .section-title {
    gap: 10px;
  }

  .partners-wrapper {
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
  }

  .nav-btn {
    flex-shrink: 0;
    align-self: center;
  }

  .partners-grid {
    flex: 1;
    min-width: 0;
    /* prevents overflow */
  }

  .event-content p {
    white-space: normal;
    text-align: center;
  }

  .event-item {
    flex-direction: column;
    /* stack icon + text vertically */
    align-items: center;
    text-align: center;
  }

  .event-content h3 {
    text-align: center;
  }
}


.event-content p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  /* ADD THIS */
}


@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width:991px) {

  .hero {
    min-height: 700px;
  }

  .hero-left {
    width: 100%;
    left: 0;
    top: 40px;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-left-image {
    max-width: 420px;
  }

  .hero-right {
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
    bottom: 90px;
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .q-mark {
    font-size: 70px;
  }

  .q-body {
    font-size: 22px;
  }

  .port-strip {
    width: 100%;
  }

  .port-label {
    left: 0;
    right: 0;
    text-align: center;
    bottom: 18px;
  }

}

@media (max-width:767px) {

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, .90),
        rgba(255, 255, 255, .55),
        rgba(255, 255, 255, .15));
  }

  .hero-left {
    top: 25px;
    padding: 15px;
  }

  .hero-left-image {
    max-width: 300px;
  }

  .hero-right {
    bottom: 75px;
    padding: 15px;
  }

  .q-mark {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .q-body {
    font-size: 18px;
    line-height: 1.5;
  }

  .q-name {
    font-size: 13px;
  }

  .q-role {
    font-size: 12px;
  }

  .port-name {
    font-size: 11px;
  }

  .port-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }

}

@media (max-width:480px) {

  .hero {
    min-height: 560px;
  }

  .hero-left-image {
    max-width: 240px;
  }

  .hero-right {
    bottom: 60px;
  }

  .q-body {
    font-size: 16px;
  }

  .q-name {
    font-size: 12px;
  }

  .q-role {
    font-size: 11px;
  }

}