﻿@charset "UTF-8";
/* ============================================================
  ACREX SCSS ENTRY FILE
  Compile this file to: assets/css/main.css
  ============================================================ */
/* ============================================================
   ACREX India — Single shared variables file
   File: scss/abstracts/_variables.scss
   Use this one file for master page + all inner pages.
   ============================================================ */
/* ---------- Brand colors ---------- */
/* ---------- Neutral colors ---------- */
/* ---------- Borders ---------- */
/* ---------- Shadows ---------- */
/* ---------- Gradients ---------- */
/* ---------- Radius ---------- */
/* ---------- Layout ---------- */
/* ---------- Spacing ---------- */
/* ---------- Typography ---------- */
/* ---------- Font sizes ---------- */
/* ---------- Sizes ---------- */
/* ---------- Transitions ---------- */
/* ---------- Breakpoints ---------- */
/* ---------- Z-index ---------- */
/* ---------- Reusable mixins ---------- */
/* ---------- CSS custom properties for browser/runtime usage ---------- */
:root {
  --primary: #00A0C4;
  --primary-dark: #0082a0;
  --secondary: #72C22C;
  --secondary-dark: #5fa323;
  --bg-main: #ffffff;
  --bg-alt: #f5f8fa;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --navy: #082638;
  --navy-2: #0c3447;
  --navy-3: #123f56;
  --border: rgba(0, 160, 196, 0.15);
  --border-dark: rgba(0, 160, 196, 0.3);
  --shadow-sm: 0 4px 15px rgba(0, 160, 196, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 160, 196, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 160, 196, 0.15);
  --gradient: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  --gradient-dark: linear-gradient(135deg, #082638 0%, #0c3447 100%);
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1480px;
  --exhibitor-blue: var(--primary);
  --exhibitor-blue-dark: var(--primary-dark);
  --visitor-green: var(--secondary);
  --visitor-green-dark: var(--secondary-dark);
}

@media (max-width: 1360px) {
  :root {
    --container: 1240px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Fira Sans", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── LOADER ────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-main);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-card img {
  width: 180px;
  padding: 14px;
  background: white;
  border-radius: 14px;
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-card p {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.05em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 160, 196, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-kicker.dark {
  color: var(--secondary);
  background: rgba(114, 194, 44, 0.1);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-heading p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
}

.section-heading.centered p {
  margin: 16px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Text Gradient Utility */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn.primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 194, 44, 0.3);
}

.btn.outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn.outline:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn.ghost {
  background: rgba(0, 160, 196, 0.05);
  color: var(--primary);
  border-color: transparent;
}

.btn.ghost:hover {
  background: rgba(0, 160, 196, 0.12);
  transform: translateY(-2px);
}

/* ============================================================
   ACREX HOME FULL SCSS
   Existing homepage SCSS + improved responsive fixes
   Replace your current home SCSS with this file.
   ============================================================ */
/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(13, 34, 51, 0.96) 0%, rgba(22, 50, 71, 0.85) 50%, rgba(28, 63, 89, 0.5) 100%);
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 80px;
  background: linear-gradient(to top right, var(--bg-main) 49.8%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 160, 196, 0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-event-tag::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero-copy h1 em {
  font-style: normal;
}

.hero-copy .hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-wrap: wrap;
}

.hero-copy .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-copy .hero-meta i {
  color: var(--primary);
}

.hero-copy .hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero panel — countdown + stats */
.hero-panel {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.panel-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.countdown > div {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 6px;
}

.countdown b {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown span {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 5px;
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-divider {
  height: 1px;
  background: var(--border);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-grid > div {
  text-align: center;
}

.metric-grid b {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.metric-grid b::after {
  content: "+";
  font-size: 18px;
  color: var(--secondary);
}

.metric-grid > div:nth-child(2) b::after {
  content: "+";
}

.metric-grid > div:nth-child(3) b::after {
  content: "";
}

.metric-grid span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ── QUICK PATHS ───────────────────────────────────────────── */
.quick-paths {
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.quick-paths a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.quick-paths a:last-child {
  border-right: none;
}

.quick-paths a i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.quick-paths a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.quick-paths a:hover i {
  background: var(--gradient);
  color: white;
}

/* ============================================================
   SECTION 2 — ACREX AT A GLANCE
   ============================================================ */
.glance-section {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
}

.glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.glance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card .num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.glance-copy .legacy-row {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.legacy-pill {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.legacy-pill strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.legacy-pill span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SECTION 3 — VISITOR & EXHIBITOR JOURNEY
   ============================================================ */
.journey-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.journey-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.journey-card-head {
  padding: 36px 36px 28px;
  position: relative;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 160, 196, 0.1);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
}

.journey-card-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.journey-card-head p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.journey-card-body {
  padding: 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-benefits {
  margin-bottom: 28px;
  flex: 1;
}

.journey-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  font-weight: 500;
}

.journey-benefits li:last-child {
  border-bottom: none;
}

.journey-benefits li i {
  color: var(--secondary);
  margin-top: 2px;
  font-size: 13px;
  flex-shrink: 0;
}

.journey-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION 4 — VIDEO TESTIMONIALS 
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

/* Featured testimonial */
.testimonial-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.featured-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.featured-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.featured-video-wrap:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.featured-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.featured-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 0 0 12px rgba(0, 160, 196, 0.2);
  transition: var(--transition);
}

.featured-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(0, 160, 196, 0.15);
}

.featured-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.featured-quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
}

.featured-quote blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 60px;
  color: var(--primary);
  line-height: 1;
  opacity: 0.2;
}

.featured-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.attr-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.attr-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.attr-role {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.attr-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  background: rgba(114, 194, 44, 0.1);
  border: 1px solid rgba(114, 194, 44, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Testimonial tabs */
.testimonial-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.testimonial-tab {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.testimonial-tab.active {
  background: var(--gradient);
  color: white;
}

/* Video grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

.testi-card:hover .testi-thumb img {
  filter: brightness(0.75);
}

.testi-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.testi-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testi-card:hover .testi-play-btn {
  background: var(--gradient);
  color: white;
  transform: scale(1.1);
}

.testi-card-body {
  padding: 14px 16px;
}

.testi-card-body strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.testi-card-body small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.testi-card-body .testi-type {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.testi-type.exhibitor {
  background: rgba(0, 160, 196, 0.1);
  color: var(--primary);
}

.testi-type.visitor {
  background: rgba(114, 194, 44, 0.1);
  color: var(--secondary);
}

.testi-type.leader {
  background: rgba(0, 160, 196, 0.05);
  color: var(--primary);
  border: 1px solid var(--border);
}

.testimonial-cta-row {
  margin-top: 40px;
  text-align: center;
}

.testimonial-cta-row a {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: var(--transition);
}

.testimonial-cta-row a:hover {
  gap: 14px;
  border-bottom-color: var(--primary);
}

/* ============================================================
   SECTION 5 — WHY ACREX
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 160, 196, 0.1);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================================
   SECTION 6 — INDUSTRY CATEGORIES 
   ============================================================ */
.categories-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.categories-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.categories-intro {
  position: sticky;
  top: 100px;
}

.categories-intro .stat-highlight {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-highlight-item strong {
  font-size: 24px;
  font-weight: 900;
}

.stat-highlight-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-chip {
  padding: 16px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.cat-chip:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SECTION 7 — SPOTLIGHT ARENA
   ============================================================ */
.spotlight-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.spot-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.spot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.spot-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.spot-card-body {
  padding: 24px;
}

.spot-card-body > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.spot-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.spot-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================================
   SECTION 8 — CONFERENCE & KNOWLEDGE HUB
   ============================================================ */
.conference-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.conference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}

.seminar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seminar-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.seminar-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.seminar-no {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0, 160, 196, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
}

.seminar-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.seminar-item p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.conference-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.speaker-card {
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.speaker-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 160, 196, 0.05);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 12px;
}

.speaker-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.speaker-card span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.conf-cta-box {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: none;
}

.conf-cta-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.conf-cta-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 500;
}

.conf-cta-box .btn.outline {
  border-color: white;
  color: white;
}

.conf-cta-box .btn.outline:hover {
  background: white;
  color: var(--primary);
}

/* ============================================================
   SECTION 9 — INDUSTRY INSIGHTS & MEDIA
   ============================================================ */
.media-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.media-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-top: 52px;
}

.media-panel-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-panel-label a {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.media-panel-label a:hover {
  color: var(--primary);
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-strip-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.video-strip-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.video-strip-card .vs-thumb {
  width: 277px;
  height: 168px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.video-strip-card .vs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-strip-card .vs-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
}

.video-strip-card .vs-play i {
  color: white;
  font-size: 14px;
}

.video-strip-card strong {
  font-size: 30px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 3px;
  line-height: 1.4;
}

.video-strip-card small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  width: 187px;
  height: 156px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-meta {
  flex: 1;
}

.blog-card-meta .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4DBCD5;
  background: rgba(114, 194, 44, 0.1);
  border-radius: 3px;
  padding: 2px 7px;
  margin-bottom: 6px;
  display: inline-block;
}

.blog-card-meta h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 6px;
}

.blog-card-meta p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================================
   SECTION 10 — PARTNERS & SPONSORS
   ============================================================ */
.partners-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.partners-marquee {
  overflow: hidden;
  margin-top: 44px;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partner-card {
  flex-shrink: 0;
  padding: 14px 22px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 150px;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.partner-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.partner-card img {
  height: 80px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.7);*/
  transition: filter 0.3s;
}

.partner-card:hover img {
  filter: none;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.cta-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient);
}

.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

/* ============================================================
   HOME ENHANCEMENTS ONLY
   CTA themes, journey heads, category split, and responsive home
   NOTE: no header/footer selectors here.
   ============================================================ */
:root {
  --navy: #082638;
  --navy-2: #0c3447;
  --exhibitor-blue: var(--primary);
  --exhibitor-blue-dark: var(--primary-dark);
  --visitor-green: var(--secondary);
  --visitor-green-dark: var(--secondary-dark);
}

main,
section,
.container,
.hero-inner,
.glance-grid,
.journey-grid,
.testimonial-grid,
.why-grid,
.categories-inner,
.spotlight-grid,
.media-layout,
.conference-grid,
.testimonial-featured,
.cta-box,
.video-strip-card,
.blog-card {
  min-width: 0;
}

/* CTAs */
.btn.btn-exhibitor {
  background: linear-gradient(135deg, var(--exhibitor-blue), var(--exhibitor-blue-dark)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 160, 196, 0.24);
}
.btn.btn-exhibitor i {
  color: #fff;
}
.btn.btn-visitor {
  background: linear-gradient(135deg, var(--visitor-green), var(--visitor-green-dark)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(114, 194, 44, 0.26);
}
.btn.btn-visitor i {
  color: #fff;
}
.btn.btn-exhibitor:hover, .btn.btn-visitor:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

/* tighter premium vertical rhythm */
.glance-section,
.journey-section,
.testimonials-section,
.why-section,
.categories-section,
.spotlight-section,
.conference-section,
.media-section,
.final-cta-section {
  padding: 84px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.journey-grid,
.why-grid,
.spotlight-grid,
.conference-grid,
.media-layout {
  margin-top: 36px;
}

/* hero */
.hero-event-tag {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
  overflow-wrap: anywhere;
}
.hero-copy .hero-meta i {
  color: var(--secondary);
}

.hero-actions {
  gap: 14px;
  align-items: center;
}
.hero-actions .btn {
  min-width: 230px;
  justify-content: center;
  border-radius: 10px;
  padding: 15px 24px;
}

.glance-grid iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  display: block;
  border-radius: var(--radius-lg, 16px);
}

/* journey card headers */
.journey-card-head {
  border-bottom: 0;
  overflow: hidden;
}
.journey-card-head::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.journey-card-head h3,
.journey-card-head p {
  color: #fff !important;
  position: relative;
  z-index: 1;
}
.journey-card-head p {
  opacity: 0.92;
}

.journey-card.exhibitor .journey-card-head {
  background: linear-gradient(135deg, var(--exhibitor-blue), var(--exhibitor-blue-dark));
}
.journey-card.exhibitor .journey-benefits li i {
  color: var(--exhibitor-blue);
}
.journey-card.exhibitor:hover {
  border-color: rgba(0, 160, 196, 0.38);
}
.journey-card.visitor .journey-card-head {
  background: linear-gradient(135deg, var(--visitor-green), var(--visitor-green-dark));
}
.journey-card.visitor .journey-benefits li i {
  color: var(--visitor-green);
}
.journey-card.visitor:hover {
  border-color: rgba(114, 194, 44, 0.42);
}

.journey-icon {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* category section: 40% dark / 60% light split */
.categories-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy) 0 40%, #f4fafc 40% 100%);
}
.categories-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: radial-gradient(circle at 20% 20%, rgba(0, 160, 196, 0.24), transparent 34%), linear-gradient(135deg, var(--navy), var(--navy-2));
}
.categories-section::after {
  content: "";
  position: absolute;
  left: 35%;
  top: -18%;
  bottom: -18%;
  width: 1px;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.12);
}
.categories-section .container {
  position: relative;
  z-index: 1;
}

.categories-inner {
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  gap: 44px;
  align-items: center;
}

.categories-intro {
  position: relative;
  top: auto;
  padding: 36px;
  border-radius: 24px;
}
.categories-intro .section-kicker.dark {
  color: #fff;
  background: rgba(114, 194, 44, 0.18);
  border: 1px solid rgba(114, 194, 44, 0.24);
}
.categories-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.categories-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.categories-intro .stat-highlight {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}
.categories-intro .stat-highlight-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  box-shadow: none;
}
.categories-intro .stat-highlight-item strong {
  color: var(--secondary);
}
.categories-intro .stat-highlight-item span {
  color: rgba(255, 255, 255, 0.78);
}

.categories-slider-panel {
  min-width: 0;
  padding: 36px 0 36px 22px;
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
}
.slider-head .section-kicker {
  margin-bottom: 0;
}
.slider-head p {
  max-width: 420px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.category-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  padding: 8px 0;
}
.category-marquee + .category-marquee {
  margin-top: 12px;
}
.category-marquee:hover .category-track {
  animation-play-state: paused;
}

.category-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: categoryScroll 38s linear infinite;
  will-change: transform;
}

.category-marquee-reverse .category-track {
  animation-duration: 46s;
  animation-direction: reverse;
}

@keyframes categoryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cat-card {
  flex: 0 0 210px;
  min-height: 126px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 160, 196, 0.12);
  box-shadow: 0 16px 40px rgba(8, 38, 56, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 160, 196, 0.28);
  box-shadow: 0 20px 50px rgba(0, 160, 196, 0.16);
}
.cat-card strong {
  display: block;
  margin-top: 16px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.25;
}
.cat-card small {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 24px rgba(0, 160, 196, 0.22);
}

.cta-actions .btn {
  justify-content: center;
}

/* media/blog mobile-safe text */
.video-strip-card,
.blog-card {
  min-width: 0;
}
.video-strip-card > div:not(.vs-thumb):not(.blog-thumb),
.blog-card > div:not(.vs-thumb):not(.blog-thumb) {
  min-width: 0;
}

.video-strip-card strong,
.blog-card-meta h4,
.blog-card-meta p,
.section-heading h2,
.section-heading p {
  overflow-wrap: anywhere;
}

.video-strip-card strong {
  font-size: clamp(18px, 2.2vw, 24px) !important;
  line-height: 1.35 !important;
}

.blog-card-meta {
  min-width: 0;
}

/* ── RESPONSIVE HOME ONLY ─────────────────────────────────── */
@media (max-width: 1360px) {
  .container,
  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 80px 24px !important;
    gap: 36px !important;
  }
  .hero-panel {
    display: none !important;
  }
  .glance-grid,
  .journey-grid,
  .conference-grid,
  .media-layout,
  .testimonial-featured,
  .categories-inner,
  .cta-box {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .categories-section {
    background: linear-gradient(180deg, var(--navy) 0 42%, #f4fafc 42% 100%);
  }
  .categories-section::before {
    width: 100%;
    height: 42%;
    bottom: auto;
  }
  .categories-slider-panel {
    padding: 20px 0 0;
  }
  .categories-intro {
    max-width: 760px;
  }
  .slider-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .why-grid,
  .spotlight-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .container,
  .hero-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-inner {
    padding-top: 72px !important;
    padding-bottom: 74px !important;
  }
  .hero-copy h1 {
    font-size: clamp(31px, 9vw, 42px) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }
  .hero-copy .hero-meta {
    gap: 10px 16px !important;
    font-size: 13px !important;
    margin-bottom: 14px !important;
  }
  .hero-actions,
  .journey-cta,
  .cta-actions {
    width: 100%;
    flex-direction: column !important;
  }
  .hero-actions .btn,
  .journey-cta .btn,
  .cta-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }
  .glance-section,
  .journey-section,
  .testimonials-section,
  .why-section,
  .categories-section,
  .spotlight-section,
  .conference-section,
  .media-section,
  .partners-section,
  .final-cta-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .section-heading {
    margin-bottom: 28px !important;
  }
  .section-heading h2 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.18 !important;
  }
  .section-heading p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
  .glance-copy .legacy-row {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .glance-stats,
  .why-grid,
  .spotlight-grid,
  .testimonial-grid,
  .speaker-cards,
  .journey-grid {
    grid-template-columns: 1fr !important;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .journey-card-head,
  .journey-card-body,
  .spot-card-body,
  .cta-box {
    padding: 22px !important;
  }
  .testimonial-tabs {
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-tabs .testimonial-tab {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 10px 16px !important;
  }
  .media-panel-label {
    gap: 10px;
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .video-strip-card {
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 10px !important;
    width: 100%;
  }
  .video-strip-card .vs-thumb {
    width: 42% !important;
    max-width: 180px !important;
    min-width: 135px !important;
    height: auto !important;
    aspect-ratio: 16/9;
    flex: 0 0 auto;
  }
  .video-strip-card strong {
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.35 !important;
  }
  .blog-card {
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px !important;
  }
  .blog-card .blog-thumb {
    width: 40% !important;
    max-width: 160px !important;
    min-width: 120px !important;
    height: auto !important;
    aspect-ratio: 4/3;
  }
  .quick-paths {
    flex-wrap: wrap;
  }
  .quick-paths a {
    min-width: 50%;
    border-bottom: 1px solid var(--border);
  }
  .cat-card {
    flex-basis: 178px;
    min-height: 118px;
    padding: 16px;
  }
}
@media (max-width: 520px) {
  .video-strip-card,
  .blog-card {
    flex-direction: column !important;
  }
  .video-strip-card .vs-thumb {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
  .video-strip-card strong {
    font-size: 17px !important;
  }
  .blog-card .blog-thumb {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .testimonial-grid,
  .speaker-cards,
  .category-grid,
  .glance-stats {
    grid-template-columns: 1fr !important;
  }
}
/* ============================================================
   ACREX India — Single shared variables file
   File: scss/abstracts/_variables.scss
   Use this one file for master page + all inner pages.
   ============================================================ */
/* ---------- Brand colors ---------- */
/* ---------- Neutral colors ---------- */
/* ---------- Borders ---------- */
/* ---------- Shadows ---------- */
/* ---------- Gradients ---------- */
/* ---------- Radius ---------- */
/* ---------- Layout ---------- */
/* ---------- Spacing ---------- */
/* ---------- Typography ---------- */
/* ---------- Font sizes ---------- */
/* ---------- Sizes ---------- */
/* ---------- Transitions ---------- */
/* ---------- Breakpoints ---------- */
/* ---------- Z-index ---------- */
/* ---------- Reusable mixins ---------- */
/* ---------- CSS custom properties for browser/runtime usage ---------- */
:root {
  --primary: #00A0C4;
  --primary-dark: #0082a0;
  --secondary: #72C22C;
  --secondary-dark: #5fa323;
  --bg-main: #ffffff;
  --bg-alt: #f5f8fa;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --navy: #082638;
  --navy-2: #0c3447;
  --navy-3: #123f56;
  --border: rgba(0, 160, 196, 0.15);
  --border-dark: rgba(0, 160, 196, 0.3);
  --shadow-sm: 0 4px 15px rgba(0, 160, 196, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 160, 196, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 160, 196, 0.15);
  --gradient: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  --gradient-dark: linear-gradient(135deg, #082638 0%, #0c3447 100%);
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1480px;
  --exhibitor-blue: var(--primary);
  --exhibitor-blue-dark: var(--primary-dark);
  --visitor-green: var(--secondary);
  --visitor-green-dark: var(--secondary-dark);
}

@media (max-width: 1360px) {
  :root {
    --container: 1240px;
  }
}
/* ---------- Inner hero ---------- */
.acr-inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 5vw, 128px) 0 clamp(50px, 5vw, 104px);
  background: radial-gradient(circle at 12% 18%, rgba(114, 194, 44, 0.24), transparent 30%), radial-gradient(circle at 88% 20%, rgba(0, 160, 196, 0.26), transparent 32%), linear-gradient(115deg, #082638 0%, #0c3447 58%, #123f56 100%);
  color: #ffffff;
}
.acr-inner-hero::before, .acr-inner-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.acr-inner-hero::before {
  right: -90px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: rgba(114, 194, 44, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.acr-inner-hero::after {
  left: -160px;
  top: -170px;
  width: 360px;
  height: 360px;
  background: rgba(0, 160, 196, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.acr-inner-hero .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}
.acr-inner-hero .acr-inner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.acr-inner-hero .acr-inner-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72C22C;
  box-shadow: 0 0 0 6px rgba(114, 194, 44, 0.16);
}
.acr-inner-hero .acr-inner-title {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.acr-inner-hero .acr-inner-subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================================
  ACREX MASTERPAGE SCSS
  Header + navigation + footer + mobile sticky + video modal
  Keep this file separate from home.scss.
  ============================================================ */
/* ── TOP HEADER ────────────────────────────────────────────── */
.top-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 210;
}

.top-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto minmax(300px, auto);
  align-items: center;
  gap: 18px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}
.top-left i {
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

.interest-link {
  justify-self: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 160, 196, 0.1);
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.interest-link:hover {
  background: var(--gradient);
  color: #fff;
}

.top-organisers {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.org-pill {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}
.org-pill small {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.org-pill img {
  height: 32px;
  width: auto;
  border-radius: 3px;
  object-fit: contain;
}

/* ── NAVIGATION / FIXED HEADER ON SCROLL ───────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  overflow: visible;
}
.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.brand img {
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1px;
  flex-wrap: nowrap;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5f7c;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links li.active > a {
  color: var(--primary);
  background: rgba(0, 160, 196, 0.06);
}
.nav-links .fa-chevron-down {
  font-size: 9px;
  opacity: 0.65;
}
.nav-links li.has-menu > ul {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 420;
}
.nav-links li.has-menu > ul li a {
  width: 100%;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dark);
  white-space: normal;
}
.nav-links li.has-menu:hover > ul {
  display: block;
}

.register-cta {
  margin-left: auto;
  flex: 0 0 auto;
  min-width: 126px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.register-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(114, 194, 44, 0.28);
}
.register-cta.btn-exhibitor {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}
.register-cta.btn-visitor {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)) !important;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ── SOCIAL FLOAT ──────────────────────────────────────────── */
.social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 150;
  box-shadow: var(--shadow-md);
}
.social-float a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: none;
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}
.social-float a:first-child {
  border-radius: 0 6px 0 0;
}
.social-float a:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 6px 0;
}
.social-float a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(105deg, rgb(13, 34, 51), rgb(22, 50, 71));
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}
.footer-grid p {
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
  font-weight: 500;
}
.footer-grid .powered {
  font-size: 11px;
  color: #fff;
  margin-top: 12px;
  font-weight: 600;
}
.footer-grid h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-grid a {
  display: block;
  font-size: 13px;
  color: #fff;
  padding: 5px 0;
  transition: color 0.2s ease;
  font-weight: 500;
}
.footer-grid a:hover {
  color: var(--secondary);
}

.footer-logo {
  height: 44px;
  width: auto;
  padding: 0;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  font-family: inherit;
}
.newsletter input::placeholder {
  color: #94a3b8;
}
.newsletter button {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 0 8px 8px 0;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(114, 194, 44, 0.25);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.footer-social a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #dbe7ee;
  font-weight: 500;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: #dbe7ee;
}
.footer-bottom a:hover {
  color: var(--secondary);
}

/* ── MOBILE STICKY ─────────────────────────────────────────── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  grid-template-columns: repeat(3, 1fr);
}
.mobile-sticky a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  border-right: 1px solid var(--border);
  text-align: center;
}
.mobile-sticky a:last-child {
  border-right: none;
}
.mobile-sticky a i {
  font-size: 16px;
}
.mobile-sticky .sticky-exhibitor,
.mobile-sticky a:first-child {
  background: rgba(0, 160, 196, 0.06);
  color: var(--primary);
}
.mobile-sticky .sticky-visitor {
  background: rgba(114, 194, 44, 0.1);
  color: var(--secondary-dark);
}

/* ── VIDEO MODAL ───────────────────────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
}
.video-modal.open {
  display: flex;
}
.video-modal iframe {
  width: min(900px, 90vw);
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── RESPONSIVE MASTERPAGE ─────────────────────────────────── */
@media (max-width: 1360px) {
  :root {
    --container: 1240px;
  }
  .nav-inner {
    gap: 12px;
  }
  .brand img {
    width: 116px !important;
  }
  .nav-links a {
    font-size: 12px;
    padding: 8px 6px;
  }
  .register-cta {
    min-width: 118px;
    padding: 12px 16px;
  }
}
@media (max-width: 1280px) {
  .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 430;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 14px;
  }
  .nav-links li.has-menu > ul {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 10px;
    padding: 6px;
    margin: 4px 0 8px;
    background: var(--bg-alt);
  }
  .nav-links li.has-menu:hover > ul {
    display: none;
  }
  .nav-links li.has-menu.open > ul {
    display: block;
  }
  .register-cta {
    margin-left: 0;
  }
}
@media (max-width: 1100px) {
  .top-inner {
    grid-template-columns: 1fr auto;
  }
  .top-left {
    display: none;
  }
  .interest-link {
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}
@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
  .top-inner {
    height: auto;
    min-height: 48px;
    padding: 8px 16px;
    grid-template-columns: 1fr;
  }
  .top-organisers {
    display: none;
  }
  .interest-link {
    justify-self: stretch;
    width: 100%;
  }
  .nav-inner {
    height: 68px;
    padding: 0 16px;
  }
  .brand img {
    width: 104px !important;
    max-height: 58px;
  }
  .register-cta {
    display: none;
  }
  .nav-links {
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 84px);
  }
  .social-float {
    display: none;
  }
  .mobile-sticky {
    display: grid;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 18px 34px;
  }
  .footer-bottom {
    padding: 18px;
    justify-content: center;
    text-align: center;
  }
  .newsletter {
    flex-direction: column;
    gap: 8px;
    box-shadow: none;
  }
  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .video-modal iframe {
    width: 94vw;
  }
  .close-modal {
    top: 14px;
    right: 14px;
  }
}
@media (max-width: 520px) {
  .top-header {
    display: none;
  }
  .brand img {
    width: 96px !important;
  }
  .nav-inner {
    height: 64px;
  }
}
