/* ─── BIG CIO SHOW & AWARDS — STYLESHEET ─── */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --blue: #0057ff;
  --blue-light: #1a78ff;
  --cyan: #29c4ff;
  --green: #00c853;
  --dark: #060b1a;
  --dark2: #0a1228;
  --dark3: #111827;
  --white: #ffffff;
  --gray: #8892a4;
  --gray-light: #c8d0e0;
  --gold: #ffd700;
  --accent: #00e5ff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 87, 255, 0.2);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 8px 40px;
  box-shadow: 0 4px 40px rgba(0, 87, 255, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 0px;
}

.nav-logo-icon {
  width: 180px;
  height: 38px;
  /*background: linear-gradient(135deg, var(--blue), var(--cyan));*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 16px;
  color: white;
  letter-spacing: 1px;
}

.nav-logo-text {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 20px;
  letter-spacing: 2px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, #0066ff, var(--cyan));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Shine sweep on buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn:hover::after {
  left: 150%;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 87, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #060b1a 0%, #080f20 60%, #060b1a 100%);
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 87, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}

@keyframes gridShift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: 10%;
  right: -80px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: -2s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.hero-edition {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(0, 212, 255, 0.05);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-hashtag {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--blue-light);
  margin-bottom: 12px;
  animation: fadeSlideUp 0.9s ease forwards;
}

.hero-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 60px;
  line-height: 0.85;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 80px rgba(0, 87, 255, 0.4);
  margin-bottom: 8px;
  animation: fadeSlideUp 1s ease forwards;
  position: relative;
}

.hero-title .glow {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 50%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-awards {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 6px;
  color: var(--gray);
  margin-bottom: 20px;
  animation: fadeSlideUp 1.1s ease forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  animation: fadeSlideUp 1.2s ease forwards;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
}

.hero-edition img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.hero-meta-item svg {
  color: var(--cyan);
}

.hero-meta-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeSlideUp 1.3s ease forwards;
}

.hero-sub {
  font-size: 14px;
  color: var(--gray);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeSlideUp 1.4s ease forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 1.5s ease forwards;
}

.hero-audience {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
  display: none;
}

.hero-photo-strip {
  position: relative;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 87, 255, 0.05) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}

.photo-placeholder {
  width: 60px;
  height: 180px;
  background: linear-gradient(180deg, rgba(30, 50, 100, 0.6), rgba(10, 20, 50, 0.8));
  border-radius: 4px;
  opacity: 0.6;
  flex-shrink: 0;
}

.photo-placeholder:nth-child(even) {
  height: 160px;
  opacity: 0.4;
}

.photo-placeholder:nth-child(3n) {
  opacity: 0.8;
  height: 190px;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ─── GLITCH EFFECT (title) ─── */
@keyframes glitch {

  0%,
  90%,
  100% {
    clip-path: none;
    transform: none;
  }

  92% {
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    transform: translate(-3px, 0);
  }

  94% {
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    transform: translate(3px, 0);
  }

  96% {
    clip-path: none;
    transform: none;
  }
}

.hero-title {
  animation: glitch 8s infinite;
}

@media (max-width: 768px) {
  .hero-title {
    /*font-family: 'Bebas Neue', sans-serif;*/
    font-size: clamp(40px, 14vw, 160px);
    line-height: 0.85;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 0 80px rgba(0, 87, 255, 0.4);
    margin-bottom: 8px;
    animation: fadeSlideUp 1s ease forwards;
    position: relative;
  }
}

/* ─── SECTION BASE ─── */
section {
  padding: 0px 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

/* ─── HIGHLIGHTS ─── */
.highlights {
  background: var(--dark2);
  border-top: 1px solid rgba(0, 87, 255, 0.15);
  border-bottom: 1px solid rgba(0, 87, 255, 0.15);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.highlight-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(0, 87, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.highlight-item:hover::before {
  opacity: 1;
}

.highlight-item:hover {
  background: rgba(0, 87, 255, 0.04);
}

.highlight-num {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 48px;
  letter-spacing: 2px;
  background: #29c4ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.highlight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
  display: block;
}

/* ─── SPONSORS ─── */
.sponsors {
  background: var(--dark);
  padding: 60px 0;
}

.sponsors-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

/* GRID: 4 per row */
.sponsors-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* LOGO CARD */
.sponsor-logo {
  background: #ffffff;
  /* white background */
  padding: 0px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
}

/* LOGO IMAGE */
.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* SLIDER WRAPPER */
.sponsor-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.sponsor-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 55s linear infinite;
}

/* LOGO CARD */
.sponsor-logo {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  min-width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO IMAGE */
.sponsor-logo img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* HOVER PAUSE (nice UX) */
.sponsor-slider:hover .sponsor-track {
  animation-play-state: paused;
}

/* HOVER EFFECT */
.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .sponsors-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .sponsors-row {
    grid-template-columns: 1fr;
  }
}

/* ─── SPEAKERS ─── */
/* ─── SPEAKERS ─── */
/* ─── SPEAKERS SECTION ─── */
.speakers {
  background: #071535;
  padding: 80px 0;
}

.speakers .swiper {
  margin-top: 50px;
  padding-bottom: 30px;
}

/* ─── SPEAKER CARD ─── */
.speaker-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(0, 87, 255, 0.15);
}

/* Hover Effect */
.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 87, 255, 0.25);
}

/* Overlay Gradient */
.speaker-card::before {
  content: '';
  position: absolute;
  inset: 0;
 /* background: linear-gradient(180deg, transparent 45%, rgba(0, 10, 40, 0.95) 100%);
  z-index: 1;*/
}

/* ─── IMAGE ─── */
.speaker-avatar {
  width: 100%;
  height: 300px;
  /* 🔥 SAME HEIGHT FOR ALL */
  overflow: hidden;
  position: relative;
  background: #0b1c3a;
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 ensures uniform fill */
  object-position: top;
  /* focus face */
  display: block;
}

/* Slight zoom effect */
.speaker-card:hover img {
  transform: scale(1.05);
}

/* Bottom fade overlay */
.speaker-avatar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.95), transparent);
  z-index: 1;
}

/* ─── TEXT INFO ─── */
.speaker-info {
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.95), transparent);
  margin-top: auto;
}

.speaker-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 2px;
}

.speaker-org {
  font-size: 14px;
  color: #aaa;
}

/* ─── SWIPER CONTROLS ─── */
.speakers-slider .swiper-wrapper {
  align-items: stretch;
  /* 🔥 makes all slides equal height */
}

.speakers-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Pagination */
.speakers-slider .swiper-pagination {
  bottom: 0;
}

.speakers-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: all 0.3s ease;
}

.speakers-slider .swiper-pagination-bullet-active {
  background: var(--cyan);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--cyan);
}

/* Navigation Arrows */
.speakers-slider .swiper-button-next,
.speakers-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: var(--cyan);
  transition: all 0.3s ease;
}

.speakers-slider .swiper-button-next:hover,
.speakers-slider .swiper-button-prev:hover {
  background: rgba(0, 212, 255, 0.25);
  border-color: var(--cyan);
}

.speakers-slider .swiper-button-next::after,
.speakers-slider .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* ─── RESPONSIVE FIXES ─── */

/* Tablet */
@media (max-width: 768px) {
  .speaker-avatar {
    height: 320px;
  }
}

/* Mobile (IMPORTANT FIX) */
@media (max-width: 576px) {
  .speakers {
    padding: 60px 0;
  }

  .speaker-avatar {
    height: 320px;
    /* ✅ Full proper image */
  }

  .speaker-info {
    padding: 16px;
  }

  .speaker-name {
    font-size: 14px;
  }

  .speaker-role,
  .speaker-org {
    font-size: 11px;
  }

  /* Ensure FULL width slide */
  .speakers-slider .swiper-slide {
    width: 100% !important;
  }
}
.cio-about-section {
  background: var(--dark);
  padding: 80px 0px 40px;
  overflow: hidden;
}

.cio-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CARD */
.cio-about-visual {
  position: relative;
  height: 420px;
}

.cio-about-card {
  background: linear-gradient(145deg, rgba(0, 40, 120, 0.7), rgba(5, 15, 42, 0.95));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cio-about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.2), transparent 50%);
}

/* RINGS */
.cio-rings {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cio-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cioRingPulse 4s ease-in-out infinite;
}

.cio-ring:nth-child(1) { width: 100px; height: 100px; }
.cio-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: .5s; }
.cio-ring:nth-child(3) { width: 260px; height: 260px; animation-delay: 1s; }

@keyframes cioRingPulse {
  0%,100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .8; transform: translate(-50%,-50%) scale(1.05); }
}

/* TEXT */
.cio-mini-title {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 10px;
  z-index: 2;
  font-weight: 700;
}
.cio-title {
  font-size: 16px;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
  margin-top: 30px;
}
.cio-main-stat {
  text-align: center;
  z-index: 2;
}

.cio-main-number {
  font-size: 72px;
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.cio-main-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* STATS */
.cio-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
  z-index: 2;
}

.cio-stat-box {
  text-align: center;
  padding: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.cio-full {
  grid-column: span 2;
}

.cio-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
}

.cio-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* RIGHT CONTENT */
.cio-about-content p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cio-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cio-about-visual {
    height: auto;
  }
}

@media (max-width: 576px) {
  .cio-main-number {
    font-size: 52px;
  }

  .cio-stat-num {
    font-size: 22px;
  }
}

/* ─── THEMES ─── */
.themes {
  background: #071535;
  padding: 60px 0px
}

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

.theme-card {
  background: rgba(9, 30, 72, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, linear-gradient(90deg, var(--blue), var(--cyan)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.theme-card:hover::before {
  transform: scaleX(1);
}

.theme-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 87, 255, 0.18);
}

.theme-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--icon-bg, rgba(0, 87, 255, 0.15));
}

.theme-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.theme-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── HAPPENING ─── */

/* SECTION */
.happening {
  background: var(--dark);
  padding: 80px 0;
}

/* HEADER TEXT */
.section-label {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0;
}

.section-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SLIDER WRAPPER */
.happening-slider {
  overflow: hidden;
  margin-top: 48px;
}

/* TRACK — infinite CSS scroll */
.happening-track {
  display: flex;
  gap: 0;
  /* ← no gap */
  width: max-content;
  animation: happeningScroll 32s linear infinite;
}

/* Pause on hover */
.happening-slider:hover .happening-track {
  animation-play-state: paused;
}

/* THE KEYFRAME: scrolls exactly half (4 real cards) then snaps back */
@keyframes happeningScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CARD */
.happening-card {
  width: 360px;
  /* fixed width, no min-width % */
  flex-shrink: 0;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark2);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  margin-right: 20px;
  /* spacing via margin, not gap */
}

.happening-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 87, 255, 0.2);
}

/* IMAGE */
.happening-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

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

.happening-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.2), rgba(0, 212, 255, 0.05));
  z-index: 1;
}

/* IMAGE TEXT */
.happening-img-text {
  position: absolute;
  bottom: 12px;
  left: 15px;
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 24px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

/* BODY */
.happening-body {
  padding: 20px;
}

/* TAG */
.happening-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* TITLE */
.happening-title {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* DESCRIPTION */
.happening-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

/* DOTS */
.dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .happening-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .happening-card {
    width: 260px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* ─── WHO ATTENDS ─── */

/* ═══════════════════════════════════════════════════════════
   WHO ATTENDS
   ═══════════════════════════════════════════════════════════ */
.who-attends {
  padding: 90px 0;
  background: #071535;
  position: relative;
  overflow: hidden;
}

/* subtle glow background */
.who-attends::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.08);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #a0b3c6;
  margin-bottom: 50px;
}

.sub-heading {
  text-align: center;
  color: #00d4ff;
  margin: 40px 0 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TAGS */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.tag {
  position: relative;
  padding: 12px 28px;
  font-size: 14px;
  color: #fff;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

/* BLUE TAG */
.tag.blue {
  background: #091e48cc;
}

/* GREEN TAG */
.tag.green {
  background: #091e48cc;
}

/* HOVER EFFECT (MATCH YOUR SITE) */
.tag:hover {
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

/* INDUSTRY GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 30px;
}

/* INDUSTRY CARD */
.industry-card {
  position: relative;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: #d6e6f2;
  text-align: center;
  font-size: 14px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

/* CORNER STYLE */
.industry-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 18px solid #00d4ff;
  border-left: 18px solid transparent;
}

/* HOVER EFFECT */
.industry-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 87, 255, 0.35);
  transform: translateY(-6px);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .section-title {
    font-size: 26px;
  }
}

/* ICON STYLE */
.industry-card i {
  font-size: 26px;
  margin-bottom: 10px;
  color: #00d4ff;
  display: block;
  transition: 0.3s;
}

/* TEXT */
.industry-card span {
  display: block;
  font-size: 14px;
}

/* HOVER EFFECT */
.industry-card:hover i {
  color: #fff;
  transform: scale(1.2);
}

/* GRID */

/* ─── SECTION ─── */
/* ─── TESTIMONIALS ─── */
.testimonials {
  background: #060b1a;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

/* ─── SLIDER WRAPPER ─── */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* ─── CARD ─── */
.testimonial-card {
  min-width: calc(50% - 10px);
  padding: 28px 24px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: 12px;
  background: #091e48cc;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.15);
}

/* COMPANY BADGE */
.testimonial-company {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  background: rgba(0, 212, 255, 0.04);
}

.testimonial-quote {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 56px;
  color: rgba(0, 212, 255, 0.12);
  line-height: 0.6;
  margin-bottom: 12px;
}

/* ─── AVATAR IMAGE ─── */
/* ─── COMPANY LOGO ─── */
.testimonial-company-logo {
  margin-bottom: 16px;
}

.testimonial-company-logo-img {
  height: 62px;
  /* change this to resize the logo */
  width: auto;
  display: block;
  object-fit: contain;

}

.testimonial-card:hover .testimonial-company-logo-img {
  opacity: 1;
}

.testimonial-text {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 87, 255, 0.1);
  padding-top: 14px;
  margin-top: 4px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.author-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.author-role {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* ─── SLIDER CONTROLS ─── */
.testimonials-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  justify-content: flex-start;
}

.t-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 87, 255, 0.3);
  background: rgba(0, 87, 255, 0.08);
  color: var(--cyan);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.t-btn:hover {
  background: rgba(0, 87, 255, 0.2);
  border-color: var(--cyan);
  transform: scale(1.08);
}

.t-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.25s;
}

.t-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  width: 20px;
  border-radius: 3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-card {
    min-width: calc(80% - 10px);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    min-width: calc(90% - 10px);
  }

  .testimonial-text {
    font-size: 18px;
  }
}

/* ─── ABOUT TRESCON ─── */
.trescon {
  background: #071535;
  padding: 60px 0px;
}

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

.trescon-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  width: 50%;
}

.trescon-logo-mark {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 32px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trescon-desc {
  font-size: 18px;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* VISUAL BOX */
.trescon-visual {
  /*background: var(--dark2);
  border: 1px solid rgba(0,87,255,0.15);
  border-radius: 16px;
  padding: 40px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;*/

}

.trescon-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}

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

/* CARD */
.trescon-stat {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: 8px;
  background: #00287859;
  transition: all 0.3s;
}

.trescon-stat:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 87, 255, 0.08);
  transform: translateY(-4px);
}

/* NUMBER */
.trescon-stat-num {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--cyan);
  display: block;
}

/* LABEL */
.trescon-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trescon-stats {
    grid-template-columns: repeat(2, 1fr);

  }

  .trescon-logo {
    display: block;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    width: 60%;
    
  }

  .trescon-desc {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 12px;
    
  }
}


/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.newsletter {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(0, 40, 130, 0.6), rgba(0, 20, 70, 0.8));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.newsletter-inner.visible {
  opacity: 1;
  transform: none;
}

.newsletter-text .section-title {
  margin-bottom: 4px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(5, 15, 42, 0.9);
  border: none;
  color: var(--white);
  font-size: var(--fs-sm);
  outline: none;
  font-family: 'Montserrat', sans-serif;
  min-width: 240px;
}

.newsletter-input::placeholder {
  color: var(--gray);
}

.newsletter-btn {
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border: none;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.3s;
}

.newsletter-btn:hover {
  opacity: 0.88;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 87, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding: 0px 40px;
}

.footer-brand .nav-logo-text {
  font-size: 11px;
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-brand .footer-logo {
  width: 50%;
  margin-bottom: 30px;
}

.footer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(0, 87, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(0, 87, 255, 0.04);
}

.social-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-8px);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 87, 255, 0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── COUNTER ─── */
.count {
  display: inline-block;
}

/* ─── PHOTO GALLERY ─── */
.gallery-section {
  background: var(--dark);
  padding: 80px 0 100px;
}

.gallery-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-top: 48px;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1535 0%, #0d2060 30%, #051030 70%, #0a1535 100%);
  transition: transform 0.6s ease;
}

.gallery-hero:hover .gallery-hero-bg {
  transform: scale(1.04);
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(0, 87, 255, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 75% 40%, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
  z-index: 1;
}

.gallery-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 52px;
  background: linear-gradient(0deg, rgba(6, 11, 26, 0.85) 0%, rgba(6, 11, 26, 0.2) 50%, transparent 100%);
}

.gallery-hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.4);
  padding: 5px 14px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
  background: rgba(0, 212, 255, 0.06);
}

.gallery-hero-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 56px;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  line-height: 1;
}

.gallery-hero-sub {
  font-size: 14px;
  color: rgba(200, 220, 255, 0.7);
  max-width: 480px;
}

.gallery-hero-crowd {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.crowd-figure {
  flex-shrink: 0;
  background: rgba(10, 25, 60, 0.8);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.gallery-hero-expand {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.25s;
  opacity: 0;
}

.gallery-hero:hover .gallery-hero-expand {
  opacity: 1;
  background: rgba(0, 87, 255, 0.6);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 240px;
  gap: 14px;
  margin-top: 14px;
}

.gm-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #0d1a35, #1a2d50);
  border: 1px solid rgba(0, 87, 255, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.gm-item:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.15), 0 16px 48px rgba(0, 87, 255, 0.3);
}

.gm-item.tall {
  grid-row: span 2;
}

.gm-item.wide {
  grid-column: span 2;
}

.gm-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.gm-item:hover .gm-bg {
  transform: scale(1.07);
}

.gm-item:nth-child(1) .gm-bg {
  background: linear-gradient(145deg, #091830 0%, #0f2a5a 40%, #051020 100%);
}

.gm-item:nth-child(2) .gm-bg {
  background: linear-gradient(145deg, #0a1f0a 0%, #0d3520 50%, #051510 100%);
}

.gm-item:nth-child(3) .gm-bg {
  background: linear-gradient(145deg, #1a0a20 0%, #2d0f40 50%, #10051a 100%);
}

.gm-item:nth-child(4) .gm-bg {
  background: linear-gradient(145deg, #1a100a 0%, #3a1f08 50%, #150c05 100%);
}

.gm-item:nth-child(5) .gm-bg {
  background: linear-gradient(145deg, #071525 0%, #0c2845 50%, #040d18 100%);
}

.gm-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gm-stage-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  display: flex;
  gap: 0;
}

.stage-beam {
  flex: 1;
  height: 100%;
  transform-origin: top center;
  opacity: 0.07;
}

.gm-audience-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  height: 55%;
  padding: 0 10px;
  gap: 3px;
}

.aud-head {
  flex: 1;
  min-width: 0;
  background: rgba(15, 30, 70, 0.9);
  border-radius: 50% 50% 0 0;
}

.gm-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 11, 26, 0.88) 0%, rgba(6, 11, 26, 0.1) 55%, transparent 100%);
  z-index: 2;
  transition: background 0.3s;
}

.gm-item:hover .gm-overlay {
  background: linear-gradient(0deg, rgba(6, 11, 26, 0.92) 0%, rgba(0, 87, 255, 0.08) 55%, transparent 100%);
}

.gm-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 20px 22px 18px;
  transform: translateY(6px);
  transition: transform 0.3s;
}

.gm-item:hover .gm-label {
  transform: translateY(0);
}

.gm-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}

.gm-item:hover .gm-tag {
  opacity: 1;
}

.gm-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
  margin-bottom: 4px;
}

.gm-item.tall .gm-title {
  font-size: 28px;
}

.gm-sub {
  font-size: 11px;
  color: rgba(200, 220, 255, 0.55);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.gm-item:hover .gm-sub {
  opacity: 1;
  transform: translateY(0);
}

.gm-expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.25);
  border: 1px solid rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
  cursor: pointer;
}

.gm-item:hover .gm-expand-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(200, 220, 255, 0.6);
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 87, 255, 0.12);
}

.gallery-count-badge span {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 22px;
  color: var(--cyan);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 900px;
  width: 90%;
  background: var(--dark2);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s;
}

.lightbox.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-img-area {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: white;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 77, 109, 0.4);
  border-color: rgba(255, 77, 109, 0.6);
}

.lightbox-caption {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-caption-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 24px;
  letter-spacing: 3px;
  color: white;
}

.lightbox-caption-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 4px 12px;
  border-radius: 3px;
}

/* ─── PARTICLE CANVAS ─── */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Floating WhatsApp */
.float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  font-size: 22px;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ═══════════════════════════════════════════════
   MOBILE NAV — HAMBURGER + DRAWER
═══════════════════════════════════════════════ */

/* Hide hamburger on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.25s, background 0.25s;
  flex-shrink: 0;
  z-index: 1100;
}

.nav-hamburger:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.06);
}

/* The three bars */
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.25s;
  transform-origin: center;
}

/* Animate into X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--cyan);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--cyan);
}

/* ─── Mobile backdrop overlay ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

/* ─── Mobile slide-down drawer ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(6, 11, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 87, 255, 0.25);
  padding: 80px 28px 32px;
  transform: translateY(-105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
}

.mobile-menu.open {
  transform: translateY(0);
}

/* Mobile nav links list */
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(0, 87, 255, 0.1);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-links a::after {
  content: '→';
  font-size: 14px;
  color: rgba(0, 212, 255, 0.4);
  transition: color 0.2s, transform 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.mobile-nav-links a:hover::after {
  color: var(--cyan);
  transform: translateX(4px);
}

/* Mobile CTA buttons */
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════ */

/* ── Tablet & below: show hamburger, hide desktop nav ── */
@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  nav {
    padding: 12px 20px;
  }

  nav.scrolled {
    padding: 8px 20px;
  }
}

/* ── Mobile (≤ 640px) general layout fixes ── */
@media (max-width: 640px) {

  /* Section padding */
  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero */
  .hero-inner {
    padding: 30px 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 60%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-meta-sep {
    display: none;
  }

  /* Highlights: 2-col grid on small screens */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item {
    padding: 28px 12px;
  }

  /* Sponsors: wrap tightly */
  .sponsors-row {
    gap: 20px;
  }

  .sponsor-logo {
    padding: 12px 16px;
  }

  /* Speakers: 2 col */
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual {
    height: 280px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Themes: 2 col */
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Happening: 1 col */
  .happening-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery masonry: single column */
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gm-item.tall,
  .gm-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-hero {
    height: 300px;
  }

  .gallery-hero-title {
    font-size: 28px;
  }

  .gallery-hero-content {
    padding: 24px 20px;
  }

  /* Who attends */
  .who-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .who-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .who-heading {
    font-size: 36px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-cards {
    grid-template-columns: 1fr;
  }

  /* Trescon */
  .trescon-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Newsletter */
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Float button */
  .float-btn {
    bottom: 20px;
    right: 16px;
  }
}

/* ── Very small phones (≤ 380px) ── */
@media (max-width: 380px) {
  .nav-logo-text {
    font-size: 15px;
  }

  .nav-logo-icon {
    width: 120px;
    height: 32px;
    font-size: 13px;
  }

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

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

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

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


.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s, box-shadow 0.3s;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: rgba(0, 212, 255, 0.12);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
  border-color: var(--cyan);
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* ─── VIDEO BG ─── */
.hero-banner-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-banner-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(6, 11, 26, 0.55) 0%,
      rgba(6, 11, 26, 0.35) 50%,
      rgba(6, 11, 26, 0.70) 100%);
}

/* ─── BG GRADIENT (on top of video, below grid) ─── */
.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 87, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
  /* removed the solid linear-gradient so video shows through */
}

/* ─── GRID ─── */
.hero-banner-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(0, 87, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}

@keyframes gridShift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(60px);
  }
}

/* ─── ORBS ─── */
.hero-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 3;
}

.hero-banner-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-banner-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: 10%;
  right: -80px;
  animation-delay: -4s;
}

.hero-banner-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: -2s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

/* ─── INNER CONTENT ─── */
.hero-banner-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
}

.hero-banner-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-logo-img {
  width: 450px;
  height: auto;
  display: block;
  margin: 40px 0px;
}

.hero-banner-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 80px rgba(0, 87, 255, 0.4);
  margin-bottom: 8px;
  animation: fadeSlideUp 1s ease forwards;
  position: relative;
}

.hero-banner-title .glow {
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 50%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--cyan-light);
  text-shadow: 0 0 40px rgba(0, 170, 255, 0.6), 0 0 80px rgba(0, 87, 255, 0.3);
      font-size: 48px;
    font-weight: 700;
}

.hero-banner-desc {
  font-size: 18px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeSlideUp 1.4s ease forwards;
}

.hero-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 1.5s ease forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .hero-banner-title .glow {

    font-size: 40px;
  }

  .hero-banner-logo-img {
    width: 300px;
    margin: 20px 0;
  }

  .hero-banner-title {
    font-size: 26px;
  }

  .hero-banner-desc {
    font-size: 18px;
  }

  .hero-banner-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-banner-btns .btn {
    width: 80%;
    justify-content: center;
  }
}

.hero-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-banner-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.6) 0%, rgba(6, 11, 26, 0.4) 50%, rgba(6, 11, 26, 0.75) 100%);
  z-index: 1;
}

.cio-gallery {
  background: #071535;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.gallery-title {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 38px;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 3px;
}

/* SWIPER */
.cioSwiper {
  width: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 280px;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  transform: scale(0.8);
  opacity: 0.5;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ACTIVE CENTER */
.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* SIDE SLIDES */
.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.9);
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 26px;
  }

  .swiper-slide {
    width: 200px;
    height: 300px;
  }
}

.sponsors-section {
  padding: 60px 0;
  background: #fff; /* same as your theme */
  text-align: center;
}
.sponsors-section .Main-Heading{
  color: #000;
  font-size: 38px;
    font-weight: 700;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.sponsor-card {
  /*background: linear-gradient(135deg, rgba(2, 12, 31, 0.98), rgba(5, 20, 60, 0.95))*/
  /*padding: 20px;*/
  /*border-radius: 12px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*height: 120px;*/
  transition: 0.3s ease;
}

.sponsor-card img {
  max-width: 100%;
  /*max-height: 70px;*/
  object-fit: contain;
  
}

.sponsor-card:hover {
  transform: translateY(-5px);
  /*background: #1f2937;*/
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Mobile view */
@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card {
    height: 100px;
  }
}

section {
  scroll-margin-top: 70px;
}