
:root {
  --navy: #040d2b;
  --navy2: #071240;
  --cyan: #00d4ff;
  --cyan2: #00aacc;
  --teal: #00f5c8;
  --gold: #f0b429;
  --white: #ffffff;
  --light: #e8f4fb;
  --muted: #8ab4cc;
  --card-bg: rgba(7,28,72,0.85);
  --border: rgba(0,212,255,0.2);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar-main {
  background: rgba(4,13,43,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}
.navbar-brand img { height: 55px; }
.nav-link {
  color: var(--light) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 6px 14px !important;
}
.nav-link:hover { color: var(--cyan) !important; }

a.nav-link.btn-register-nav:hover {
  color: var(--white) !important;
    }
.btn-register-nav {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 6px 18px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* HERO BANNER */
.hero {
  background: linear-gradient(135deg, #020915 0%, #040d2b 40%, #071840 70%, #030b24 100%);
  /* min-height: 92vh; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0,212,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(0,245,200,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(0,170,204,0.05) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-org {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.hero-event-type {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-meta-item i { color: var(--cyan); font-size: 1.2rem; }
.hero-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  padding: 6px 20px;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.35);
  color: var(--navy);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--cyan);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 1.5px solid var(--cyan);
  border-radius: 5px;
  padding: 13px 28px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 440px; */
}
.hero-circle-outer {
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.15);
  position: absolute;
  animation: spin 30s linear infinite;
}
.hero-circle-mid {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,245,200,0.2);
  position: absolute;
  animation: spin 20s linear infinite reverse;
}
.hero-circle-inner {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.12), rgba(0,212,255,0.02));
  border: 1.5px solid rgba(0,212,255,0.3);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.hero-ghz {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-ghz-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.orbit-dot:nth-child(1) { top: 2px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { bottom: 2px; left: 50%; transform: translateX(-50%); background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.wifi-bars { position: absolute; opacity: 0.15; font-size: 35rem; color: var(--cyan); top: -70px; }
.partners-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.partner-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.partner-badge span { color: var(--white); }

/* SECTION STYLES */
.section { padding: 40px 0 60px; }
.section-alt { background: rgba(7,18,52,0.5); }
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title2{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
  font-weight: 800;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff;
}
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-desc {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* ABOUT */
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}
.about-icon {
  width: 52px; height: 52px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 16px;
}
.about-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
}
.about-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* TOPICS */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.topic-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: border-color 0.2s, transform 0.2s;
}
.topic-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.topic-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(0,212,255,0.3);
  min-width: 25px;
  line-height: 1.2;
}
.topic-card p { font-size: 14px; color: var(--light); margin: 0; line-height: 1.5; font-family: 'Poppins', sans-serif; font-weight: 600;  }

/* SPEAKERS */
.speaker-card {
  background: var(--card-bg);
  border: 3px solid #00d4ff;
  border-radius: 12px;
  padding: 8px 8px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  height: 100%;
}
.speaker-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,212,255,0.1);
}
.speaker-img-wrap {
  
  margin: 0 auto 8px;
  border-radius: 5%;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
}
.speaker-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.speaker-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,245,200,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
}
.speaker-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.speaker-role {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.speaker-card .view-more {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--cyan);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* MODAL */
.modal-content {
  background: #050f2f;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 14px;
  color: var(--white);
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.modal-header img {
width: 80px;
  border-radius: 5%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.4;
}
.modal-body { padding: 24px; color: var(--muted); font-size: 0.93rem; line-height: 1.8; }
.modal-body p { margin-bottom: 12px; }
.modal-body ul { padding-left: 18px; }
.modal-body li { margin-bottom: 6px; }
.btn-close { filter: invert(1); }
.modal-header .close-btn {
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: auto;
  flex-shrink: 0;
  align-self: flex-start;
}

/* STATS */
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* AGENDA TEASER */
.agenda-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.agenda-item:hover { border-color: var(--cyan); }
.agenda-icon { color: var(--cyan); font-size: 1.1rem; min-width: 24px; }
.agenda-text { font-size: 0.93rem; color: var(--light); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; }

/* REGISTER CTA */
.cta-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,245,200,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,212,255,0.05), transparent);
}

/* FOOTER */
footer {
  background: #020913;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.footer-links h6 { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; color: var(--cyan); margin-bottom: 14px; }
.footer-links a { display: block; color: var(--muted); text-decoration: none; font-size: 0.88rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0px; padding-top: 10px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--muted); }
.contact-item i { color: var(--cyan); margin-top: 2px; min-width: 14px; }

/* CHIEF GUEST */
.chief-guest-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,245,200,0.04));
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
.chief-guest-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--cyan);
  margin-bottom: 16px;
}
.chief-badge {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1{
    font-size: 55px;
  }
  .wifi-bars {
    
    top: 80px;
}
  .hero-visual { height: 260px; margin-top: 40px; }
  .hero-circle-outer { width: 240px; height: 240px; }
  .hero-circle-mid { width: 180px; height: 180px; }
  .hero-circle-inner { width: 120px; height: 120px; }
  .hero-ghz { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-hero-primary, .hero-buttons .btn-hero-secondary { text-align: center; }
  .topics-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 3px; }

.modal-header-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.modal-header-text { flex: 1; }

/* Animate on scroll effect */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.hero {
  background: linear-gradient(135deg, #020915 0%, #040d2b 40%, #071840 70%, #030b24 100%);
  /* min-height: 92vh; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

/* GRID OVERLAY */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* ====================== STYLISH WIFI BG ====================== */
.wifi-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.wifi-svg-wrap {
  position: relative;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
}

/* Outermost glow rings (SVG arcs) */
.wifi-arc {
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
}
.arc-1 { stroke: var(--cyan); stroke-width: 2; opacity: 0.12; animation: arc-pulse 3.5s ease-in-out infinite; }
.arc-2 { stroke: #00e5d4; stroke-width: 2.5; opacity: 0.10; animation: arc-pulse 3.5s ease-in-out infinite 0.4s; }
.arc-3 { stroke: var(--teal); stroke-width: 3;   opacity: 0.08; animation: arc-pulse 3.5s ease-in-out infinite 0.8s; }
.arc-4 { stroke: var(--cyan); stroke-width: 1.5; opacity: 0.06; animation: arc-pulse 3.5s ease-in-out infinite 1.2s; }

/* Scan lines emanating outward */
.scan-ring {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  animation: scan-out 3.5s ease-out infinite;
}
.scan-ring:nth-child(2) { animation-delay: 1.16s; }
.scan-ring:nth-child(3) { animation-delay: 2.33s; }

/* Dot at bottom center */
.wifi-dot {
  fill: var(--teal);
  filter: url(#glow);
  animation: dot-throb 1.8s ease-in-out infinite;
}

/* Particle dots scattered around arcs */
.particle {
  fill: var(--cyan);
  opacity: 0;
  animation: particle-flash 4s ease-in-out infinite;
}

@keyframes arc-pulse {
  0%,100% { opacity: 0.07; }
  50% { opacity: 0.18; }
}
@keyframes scan-out {
  0%   { opacity: 0.5; r: 40; }
  100% { opacity: 0; r: 380; }
}
@keyframes dot-throb {
  0%,100% { r: 7; opacity: 0.9; }
  50%      { r: 10; opacity: 1; }
}
@keyframes particle-flash {
  0%,80%,100% { opacity: 0; }
  40%,60%     { opacity: 0.8; }
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }
@keyframes rotate-rev  { to { transform: rotate(-360deg); } }

/* Rotating orbit ring */
.orbit-ring {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 0.8;
  opacity: 0.12;
  transform-origin: 350px 420px;
}
.orbit-ring-1 { animation: rotate-slow 18s linear infinite; }
.orbit-ring-2 { stroke: var(--teal); opacity: 0.09; animation: rotate-rev 26s linear infinite; stroke-dasharray: 8 14; }

/* Orbit dots on the rotating ring */
.orbit-node {
  transform-origin: 350px 420px;
  animation: rotate-slow 18s linear infinite;
}
.orbit-node-rev {
  transform-origin: 350px 420px;
  animation: rotate-rev 26s linear infinite;
}
/* ============================================================= */

.container {
  width: 100%;
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-org {
  font-family: "Minion Variable Concept", serif;
  font-size: 2.8rem;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.hero-event-type {
  font-family: "Minion Variable Concept", serif;
  font-size: 2rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 71px;
  line-height: 1.3;
  margin-bottom: 26px;
  color: #fff;
  text-shadow: #00d4ff 1px 1px 3px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
  justify-content: center;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #c8e8f5;
}
.hero-meta-item i { color: var(--cyan); }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #020915;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  padding: 6px 20px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,212,255,0.4);
}

.custom-footer {
  background: linear-gradient(135deg, rgba(7, 28, 72, 0.85), rgba(7, 28, 72, 0.85));
  padding: 50px 0 25px;
  color: #fff;
}

.footer-title {
  font-size: 32px;
  font-weight: 700;
}

.footer-card {
  background: #040d2bf7;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.footer-card h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-card p {
  margin: 6px 0;
  color: #ccc;
}

.footer-line {
  margin: 40px 0 20px;
  opacity: 0.2;
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
}

.footer-social i {
  font-size: 18px;
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  color: #00d4ff;
}


.custom-col {
  width: 20%;
  flex: 0 0 20%;
}

/* Tablet */
@media (max-width: 992px) {
  .custom-col {
    width: 33.33%;
    flex: 0 0 33.33%;
  }
}

@media (max-width: 768px) {
  .hero h1{
    font-size: 55px;
  }
  .wifi-bars {
    
    top: 10px;
}
}
/* Mobile (2 columns) */
@media (max-width: 576px) {
  .custom-col {
    width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 676px) {

  .hero-event-type {
    font-family: "Minion Variable Concept", serif;
    font-size: 0.9rem;
  }

  .hero-org {
    font-family: "Minion Variable Concept", serif;
    font-size: 1.2rem;

  }
  .custom-col {
    width: 50%;
    flex: 0 0 50%;
  }

  .hero h1{
    font-size: 30px;
  }

  .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #c8e8f5;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: #020915;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    padding: 6px 20px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wifi-bars {
    position: absolute;
    opacity: 0.15;
    font-size: 20rem;
    color: var(--cyan);
    top: 47px;
}
}


.topic-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.3s ease, border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.topic-card:hover {
    background: #337143; /* change to any color you want */
    border-color: #337143;
    transform: translateY(-4px);
    color: #060F2F; /* optional for better contrast */
}


.topic-card:hover {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-color: transparent;
    color: #060F2F;
    transform: translateY(-4px);
    transform:scale(1.03);
}

.topic-card:hover .topic-num {
    color: #060F2F !important;
}

.topic-card:hover .topic-num1 {
   color: #060F2F !important; 
       font-size: 15px
}

.btn-hero-primary2 {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: #020915;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    padding: 4px 15px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 16px;
}

.btn-hero-primary2:hover{
    transform:scale(1.05);
}


/*-------------logo--*/

/* =========================
   HERO BOTTOM LOGOS
========================= */

.hero{
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

/* MAIN WRAPPER */
.hero-bottom-logos{
    /*position: absolute;*/
    /*bottom: 20px;*/
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 0 40px;
    z-index: 20;
    gap: 20px;
}

/* TITLES */
.media-partner p,
.supported-association p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* LEFT SIDE */
.media-partner img{
    height: 55px;
    /*max-width: 100%;*/
    /*height: auto;*/

    background: #fff;
    padding: 2px;
    border-radius: 8px;
}

/* RIGHT SIDE */
.supported-association{
    text-align: right;
}

.support-logos{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.support-logos img{
   height: 55px;
    /*max-width: 100%;*/
    /*height: auto;*/

    background: #fff;
    padding: 5px;
    border-radius: 8px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero{
        padding-bottom: 160px;
    }

    .hero-bottom-logos{
        padding: 0 20px;
    }

    .media-partner img{
        height: 50px;
    }

    .support-logos img{
        height: 50px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .hero{
        padding-bottom: 40px;
    }

    .hero-bottom-logos{
        position: relative;
        margin-top: 40px;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        text-align: center;
        padding: 0 15px;
    }

    .media-partner,
    .supported-association{
        width: 100%;
        text-align: center;
    }

    .support-logos{
        justify-content: center;
        gap: 10px;
    }

    .media-partner img{
        height: 45px;
    }

    .support-logos img{
        height: 45px;
    }

    .media-partner p,
    .supported-association p{
        font-size: 13px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .media-partner img{
        height: 40px;
    }

    .support-logos img{
        height: 45px;
        padding: 2px;
    }

    .hero-bottom-logos{
        gap: 10px;
    }
}

@media(max-width:767px){

    .hero{
        padding-bottom: 40px !important;
    }

    /* MOVE LOGOS BELOW CONTENT */
    .hero-bottom-logos{
        position: relative !important;
        bottom: unset !important;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        width: 100%;

        margin-top: 35px;
        padding: 0 15px;

        gap: 25px;
    }

    .media-partner,
    .supported-association{
        width: 100%;
        text-align: center;
    }

    .support-logos{
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .media-partner img{
        height: 45px;
        width: auto;
        max-width: 100%;
    }

    .support-logos img{
        height: 45px;
        width: auto;
        max-width: 100%;
    }

    .media-partner p,
    .supported-association p{
        font-size: 13px;
        margin-bottom: 8px;
    }
}

/*------------------*/


    /* =====================================================
       CONFERENCE PARTNERS SECTION
       Paste everything below into your main stylesheet.
       In your HTML use:  id="cp-section"  on the <section>
       and prefix all classes with  cp-  as shown.
       ===================================================== */
 
    /* --- wrapper --- */
    #cp-section {
      background: var(--navy2);
      padding: 40px 0 50px;
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
 
    /* subtle grid overlay (matches your hero grid) */
    #cp-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: 0;
    }
 
    /* keep content above pseudo */
    #cp-section .container { position: relative; z-index: 1; }
 
    /* --- section eyebrow label (reuses your .section-label style) --- */
    .cp-label {
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 6px;
    }
 
    /* --- section title (reuses your .section-title style) --- */
    .cp-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0;
      
    }
 
    /* --- gradient accent bar (reuses your .section-divider style) --- */
    .cp-divider {
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--cyan), var(--teal));
      border-radius: 2px;
      margin: 14px auto 44px;
    }
 
    /* --- tier pill label --- */
    .cp-tier-pill {
      display: inline-block;
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(0,212,255,0.08);
      /*border: 1px solid var(--border);*/
      border-radius: 20px;
      padding: 4px 16px;
      margin-bottom: 12px;
    
    }
 
    /* --- column wrapper --- */
    .cp-col {
      padding: 0 10px;
      /*border-right: 1px solid var(--border);*/
    }
    .cp-col:last-child { border-right: none; }
 
    /* --- logo base style --- */
    .cp-logo {
      height: 50px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      display: block;
      background: rgba(255,255,255,0.93);
      border-radius: 8px;
      padding: 5px 2px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .cp-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0,212,255,0.3);
    }
 
    /* Wi-Fi Alliance — same 80px height, narrower padding */
    .cp-logo--sm {
      height: 65px;
      max-width: 110px;
      padding: 4px;
    }
 
    /* --- media partner logo --- same 80px height --- */
    .cp-logo--media {
      height: 65px;
      max-width: 220px;
      padding: 4px;
    }
 
    /* --- media-partner row separator --- */
    .cp-media-row {
      border-top: 1px solid var(--border);
      padding-top: 32px;
      margin-top: 36px;
    }
 
    /* =====================================================
       RESPONSIVE
       ===================================================== */
 
    /* Tablet ≤ 991px: stack two columns vertically */
    @media (max-width: 991px) {
      .cp-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 20px 32px;
        margin-bottom: 32px;
      }
      .cp-col:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }
    }
 
    /* Tablet: logos slightly smaller */
    @media (max-width: 767px) {
      .cp-logo         { height: 50px; max-width: 140px; padding: 8px 12px; }
      .cp-logo--sm     { height: 50px; max-width: 96px; padding: 8px 8px; }
      .cp-logo--media  { height: 50px; padding: 8px 16px; }
    }
 
    /* Mobile ≤ 575px */
    @media (max-width: 575px) {
      #cp-section      { padding: 44px 0 36px; }
      .cp-divider      { margin-bottom: 32px; }
      .cp-logo         { height: 45px; max-width: 120px; padding: 7px 10px; }
      .cp-logo--sm     { height: 45px; max-width: 82px; padding: 7px 8px; }
      .cp-logo--media  { height: 40px; padding: 7px 12px; }
      .cp-col          { padding: 0 12px 28px; }
    }