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

html {
  scroll-behavior: smooth;
}

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

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

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

:root {
  --blue: #0000DD;
  --blue-dark: #00009a;
  --blue-deep: #000080;
  --blue-soft: rgba(0, 0, 221, 0.07);
  --blue-mid: rgba(0, 0, 221, 0.15);
  --dark: #000000cc;
  --gray-bg: #f5f6fa;
  --border: #e2e4f0;
  --muted: #6b7280;
  --white: #ffffff;
}

.grid-platform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 4rem;
  justify-content: center;
}

.border {
  width: 0.5rem;
  height: 5rem;
  background-color: var(--secondary-color);
  margin-right: 20px;
  border-radius: 40px;
  border: 0px solid transparent !important;
}



.grid-platform-item img {
  height: 6rem;
  margin-bottom: 2rem;
  margin-left: 20%;
}

.grid-platform-item p,
.grid-platform-item h4 {
  text-align: left;
  width: 100%;
}


.stats-section {
  padding: 5rem 3rem;
  background: #fff;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.section-title {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
  color: var(--dark);
  text-transform: uppercase;
}

/* ════════════════════════════════
   HERO — video bg
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  z-index: 199;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Video placeholder — in production replace with <video> */
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #05052a 0%, #0a0a3e 40%, #050530 100%);
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
}

/* Overlay layers — matching existing site's blue-dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 60, 0.82) 0%,
      rgba(0, 0, 150, 0.3) 50%,
      rgba(0, 0, 40, 0.78) 100%);
  z-index: 1;
}

/* Circuit dot pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Right-side circuit lines decoration */
.hero-circuit {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30vh 3rem 5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(100, 180, 255, 0.8);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero h1 em {
  font-style: normal;
  color: rgba(120, 160, 255, 0.9);
}

.hero-sub {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.btn-hero-primary {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  background: #fff;
  border-radius: 0px;
  padding: 15px 30px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover, .video-left  .btn-hero-primary:hover{
  background: #eef;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0px;
  padding: 15px 30px;
  transition: background 0.2s, transform 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* Floating card — bottom of hero */
.hero-float-card {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 20px 60px rgba(0, 0, 60, 0.18);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 0;
  width: min(900px, calc(100% - 4rem));
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hfc-stat {
  flex: 1;
  padding: 0 0 0 10px;
  border-right: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

.hfc-stat:last-child {
  border-right: none;
}

.hfc-stat:hover {
  transform: translateY(-5px);
}

.hfc-stat:hover .hfc-lbl,
.hfc-stat:hover .about-eyebrow {
  color: var(--primary-color);
}

.hfc-stat:hover .about-eyebrow::before {
  width: 35px;
  color: var(--primary-color);
}

.hfc-stat .about-eyebrow::before,
.hfc-stat .about-eyebrow {
  color: var(--dark);
  transition: all 0.3s ease-in-out;
}

.hfc-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--title-color);
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.hfc-data {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

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

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

/* ════════════════════════════════
   ABOUT / INTRO 
════════════════════════════════ */
.about-section {
  padding: 8rem 3rem 5rem;
  background: var(--gray-bg);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* White card — matches existing site's white content card */
.content-card {
  background: #fff;
  border-radius: 0px;
  box-shadow: var(--primary-shadow);
  padding: 2.8rem 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.about-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.about-left h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.about-left h2 em {
  font-style: normal;
  color: var(--blue);
}

.about-left p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar-card {
  background: var(--gray-bg);
  border-radius: 0px;
  padding: 18px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0px 20px rgb(0 0 221 / 17%);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-soft);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
}

.pillar-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 300;
}

/* ════════════════════════════════
   EVENTS
════════════════════════════════ */
.events-section {
  padding: 5rem 3rem;
  background: var(--gray-bg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ════════════════════════════════
   NEWS
════════════════════════════════ */
.news-section {
  padding: 5rem 3rem;
  background: #fff;
}


/* ════════════════════════════════
   VIDEO SECTION 
════════════════════════════════ */
.video-section {
  padding: 5rem 3rem;
  background: var(--gray-bg, #f5f6fa);
}

.video-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 4rem;
}

.video-left h2 em {
  font-style: normal;
  color: var(--primary-color);
}

.video-left p {
  color: var(--text-color);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
.video-left a.btn-hero-primary svg{
  width: 14px;
  height: 14px;
  transition: width 0.3s ease-in-out;
}
.video-left a.btn-hero-primary:hover svg{
  width: 34px;
}

/* ── Video frame ── */
.video-frame-wrap {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 80, 0.14),
    0 4px 16px rgba(0, 0, 80, 0.08);
  background: #000;
  aspect-ratio: 16 / 9;
  outline: 1px solid rgba(0, 0, 221, 0.12);
  box-shadow: var(--primary-shadow);
}

.video-frame-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(0, 0, 221, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ════════════════════════════════
  LOGOS LOOPS 
════════════════════════════════ */

 @keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  background: white;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-flex;
  animation: 30s slide infinite linear;
  flex-shrink: 0;
}

.logos-slide img, .logos-slide svg {
  height: 50px;
  margin: 0 40px;
}
/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-height:800px){
  .hero-inner {
    padding: 20vh 3rem 5rem;
}
}
@media(max-width: 1024px) {
  .hero-inner {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .hero-float-card {
    padding: 20px 24px;
  }

  .hfc-num {
    font-size: 1.7rem;
  }

  .about-section,
  .stats-section,
  .events-section,
  .news-section {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media(max-width: 960px) {
  .video-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .video-left h2 {
    font-size: 1.8rem;
  }
  .logos-slide img, .logos-slide svg {
  height: 30px;
  margin: 0 20px;
}
.logos:before,
.logos:after {
  width: 50px;
}
}


@media(max-width: 700px) {
  .hero-inner {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero-float-card {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 20px;
  }

  .hfc-stat {
    flex: 1 1 calc(50% - 1px);
    padding: 12px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hfc-stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .hfc-stat:last-child,
  .hfc-stat:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .about-section,
  .stats-section,
  .events-section,
  .news-section {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .content-card {
    padding: 1.8rem 1.4rem;
  }

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

@media(max-width: 600px) {
  .video-section {
    padding: 4rem 1.2rem;
  }
}

@media(max-width: 500px) {
  .video-background iframe {
    top: 40%;
}
.hero {
    position: relative;
    min-height: 100vh;
    height: 135vh;
    overflow-x: hidden;
}
.hero-float-card {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 20px;
    width: 100%;
}
.hero-inner {
    padding: 15vh 3rem 7vh;
}.hero-sub {
    font-size: 1rem;
}
}