/* ============================================================
   style.css — Nexgen Conferences
   14-inch laptop optimised (1280px–1440px range)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

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

body {
  background: #040816;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══════════════════════════════
   UTILITIES
══════════════════════════════ */

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 30px rgba(0,255,255,0.08),
    inset 0 0 20px rgba(255,255,255,0.04);
}

.neon-text {
  background: linear-gradient(90deg, #00f0ff, #6d8bff, #b86dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.glow-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(0,255,255,0.45);
}
.glow-btn::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  top: -120px;
  left: -120px;
  opacity: 0;
  transition: 0.6s;
  pointer-events: none;
}
.glow-btn:hover::before { opacity: 1; }

.gradient-text {
  background: linear-gradient(90deg, #00eaff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-pill {
  display: inline-block;
  padding: 8px 20px;
  background-color: #04AA6D;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.heading-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* ---------- Glow Line ---------- */
.glow-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #04AA6D, transparent);
}

/* ---------- Typography ---------- */
.section-title {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.subtitle {
  color: #9fb4d9;
  font-size: 1.5rem;
  line-height: 1.9;
}

/* ══════════════════════════════════════════════════
   NAVBAR
   — 14-inch fix: tighter gaps, smaller font
══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 32px;         /* was 18px 40px */
  transition: padding 0.3s;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;          /* was 14px 32px */
  border-radius: 100px;
}

/* Logo */
.nav-logo {
  font-size: 1.3rem;           /* was 1.5rem */
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;                    /* use padding on <a> instead of gap for tighter fit */
  list-style: none;
}

.nav-links a {
  color: #04AA6D;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.2s;
  padding: 6px 10px;           /* clickable area */
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  width: calc(100% - 20px);
  height: 1.5px;
  background: linear-gradient(90deg, #00f0ff, #6d8bff);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: #04AA6D; }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA Button */
.nav-cta {
  padding: 8px 20px;           /* was 10px 26px */
  border-radius: 100px;
  background: rgba(0,240,255,0.15);
  border: 1px solid rgba(0,240,255,0.4);
  color: #00f0ff;
  font-size: 13px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── DESKTOP SUBMENU ── */
.nav-links .has-submenu {
  position: relative;
}

.nav-links .submenu-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links .submenu-toggle .dropdown-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-links .has-submenu:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── KEY FIX: padding-top bridges the gap so dropdown stays
   open as mouse travels from link → panel ── */
.submenu {
  position: absolute;
  top: 100%;                   /* flush to bottom of <li> */
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  list-style: none;
  padding-top: 14px;           /* invisible hover bridge */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  z-index: 900;
}

.submenu-card {
  background: rgba(5, 8, 24, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 10px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,240,255,0.05);
}

/* Glow top line */
.submenu-card::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: 6px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.5), transparent);
}

.nav-links .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.submenu li { margin: 0; }

.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 13px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.submenu a:hover {
  background: rgba(0,240,255,0.07);
  color: #fff;
}

.submenu a:hover::after { display: none; }  /* no underline in submenu */

.sub-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.submenu a:hover .sub-icon {
  background: rgba(0,240,255,0.10);
  border-color: rgba(0,240,255,0.2);
}

.sub-label small {
  display: block;
  font-size: 10px;
  color: #475569;
  margin-top: 2px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  padding: 8px;
  transition: background 0.3s;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(0,240,255,0.1);
  border-color: rgba(0,240,255,0.3);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00f0ff, #7a5cff);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: rgba(4, 8, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 90px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-nav-links > li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open .mobile-nav-links > li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav-links > li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-links > li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-nav-links > li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links > li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-links > li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-links > li:nth-child(6) { transition-delay: 0.30s; }

/* Plain mobile link */
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #fff; }
.mobile-nav-links a .arrow {
  font-size: 17px;
  color: rgba(0,240,255,0.4);
  transition: transform 0.2s, color 0.2s;
}
.mobile-nav-links a:hover .arrow { transform: translateX(4px); color: #00f0ff; }

/* Mobile dropdown toggle button */
.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6px;
  color: #94a3b8;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.mobile-dropdown-btn:hover { color: #fff; }
.mobile-dropdown-btn .arrow {
  font-size: 17px;
  color: rgba(0,240,255,0.4);
  transition: transform 0.3s ease, color 0.2s;
}
.mobile-dropdown-btn.active { color: #fff; }
.mobile-dropdown-btn.active .arrow { transform: rotate(90deg); color: #00f0ff; }

/* Mobile submenu accordion */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height 0.38s ease;
  background: rgba(255,255,255,0.02);
  border-radius: 0 0 16px 16px;
}
.mobile-submenu.open { max-height: 500px; }
.mobile-submenu li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-submenu li:last-child { border-bottom: none; }
.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  color: #7a9bbf;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-radius: 12px;
}
.mobile-submenu a:hover { color: #e2e8f0; background: rgba(0,240,255,0.05); }

/* Mobile CTAs */
.mobile-cta-area {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.mobile-menu.open .mobile-cta-area { opacity: 1; transform: translateY(0); }

.mobile-cta-primary {
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00f0ff, #7a5cff);
  color: #040816;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.mobile-cta-secondary {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.mobile-footer-note {
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1440 = large laptop
   1280 = standard 14-inch
   1024 = small laptop / large tablet
   768  = tablet
   480  = mobile
══════════════════════════════════════════ */

/* 1440px and below */
@media (max-width: 1440px) {
  nav { padding: 15px 28px; }
  .nav-inner { padding: 9px 22px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 16px; padding: 6px 9px; }
  .nav-cta { padding: 8px 18px; font-size: 12.5px; }
}

/* 14-inch laptop — KEY breakpoint (1366px/1280px range) */
@media (max-width: 1366px) {
  nav { padding: 15px 24px; }
  .nav-inner { padding: 8px 18px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-links { gap: 0; }
  .nav-links a { font-size: 12px; padding: 5px 8px; }
  .nav-cta { padding: 7px 16px; font-size: 12px; }
}

/* 1024 — small laptop / tablet landscape */
@media (max-width: 1024px) {
  nav { padding: 12px 18px; }
  .nav-inner { padding: 8px 16px; border-radius: 18px; }
  .nav-links { gap: 0; }
  .nav-links a { font-size: 11.5px; padding: 5px 7px; }
  .nav-cta { padding: 7px 14px; font-size: 11.5px; }
}

/* 900 — switch to hamburger (covers small laptops in portrait) */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  nav { padding: 12px 16px; }
  .nav-inner { padding: 8px 14px; border-radius: 16px; }
}

/* 768 — tablet */
@media (max-width: 768px) {
  nav { padding: 10px 12px; }
  .nav-inner { padding: 8px 12px; border-radius: 14px; }
  .section-title { font-size: clamp(1.8rem, 5vw, 3rem); }
}

/* 480 — mobile */
@media (max-width: 480px) {
  nav { padding: 8px 10px; }
  .nav-inner { padding: 7px 10px; border-radius: 12px; }
  .nav-logo { font-size: 1.1rem; }
}


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-bg {
  background:
    radial-gradient(circle at top left, #0ff2 0%, transparent 30%),
    radial-gradient(circle at bottom right, #6d5cff55 0%, transparent 30%),
    linear-gradient(to bottom, #040816, #050d1f);
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee {
  display: flex;
  gap: 50px;
  animation: marquee 70s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════
   FLOAT
══════════════════════════════ */
.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

/* ══════════════════════════════
   HERO SLIDER
══════════════════════════════ */
.cta-slider { position: absolute; inset: 0; width: 100%; height: 100%; }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; animation: zoomEffect 12s linear infinite; }

.slide-title {
  position: absolute;
  bottom: 35px; left: 40px;
  z-index: 3;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
}

.overlay { position: absolute; inset: 0; z-index: 2; }
.grid-bg {
  position: absolute; inset: 0; z-index: 2; opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  max-width: 800px;
}
.mini-title {
  display: inline-block;
  margin-bottom: 20px;
  color: #00eaff;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 600;
}
.content h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1.1;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}
.content h2 span {
  background: linear-gradient(90deg, #00eaff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content p { color: #cfcfcf; font-size: 17px; line-height: 1.8; margin-bottom: 35px; }

.buttons { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  padding: 15px 34px; border-radius: 50px;
  background: linear-gradient(90deg, #00eaff, #0066ff);
  color: white; text-decoration: none; font-weight: 600; transition: .4s;
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(0,255,255,0.5); }

.btn-secondary {
  padding: 15px 34px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white; text-decoration: none;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px); transition: .4s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

@keyframes zoomEffect {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.05); }
}

/* ══════════════════════════════
   COUNT BOX
══════════════════════════════ */
.count-box {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(20px);
}
.count-box span { display: block; font-size: 24px; font-weight: 800; color: #04AA6D; line-height: 1; }
.count-box small { color: #94a3b8; font-size: 12px; letter-spacing: 1px; }

/* ══════════════════════════════
   EVENT CARDS
══════════════════════════════ */
.event-card {
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: .5s;
}
.event-card:hover { transform: translateY(-10px); }
.event-card img { transition: 1s; }
.event-card:hover img { transform: scale(1.1); }

/* ══════════════════════════════
   CONFERENCE CARD
══════════════════════════════ */
.conference-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 35px;
  border-radius: 35px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  transition: .5s;
  position: relative;
  overflow: hidden;
}
.conference-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,234,255,0.3);
  box-shadow: 0 0 40px rgba(0,234,255,0.12), 0 0 80px rgba(122,92,255,0.08);
}
.conference-card.reverse .conference-image { order: 2; }
.conference-card.reverse .conference-content { order: 1; }

.conference-image { position: relative; overflow: hidden; border-radius: 28px; }
.conference-image img { width: 100%; height: 420px; background: #fff; transition: 1s; }

.conference-date {
  position: absolute; top: 25px; left: 25px;
  width: 90px; height: 90px; border-radius: 20px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: white; font-size: 13px; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
}
.conference-date span { font-size: 34px; font-weight: 800; line-height: 1; }

.conference-tag {
  display: inline-block; padding: 10px 22px; border-radius: 50px;
  background: rgba(0,234,255,0.08); border: 1px solid rgba(0,234,255,0.2);
  color: #00eaff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.conference-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; font-weight: 900; color: white; margin-bottom: 25px; }
.conference-text { color: #94a3b8; line-height: 2; margin-bottom: 35px; }

.countdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 35px; }
.count-box h4 { font-size: 28px; font-weight: 800; color: #00eaff; }
.count-box p { color: #94a3b8; font-size: 14px; }

.conference-btn, .load-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; border-radius: 50px;
  background: linear-gradient(90deg, #00eaff, #0066ff);
  color: white; text-decoration: none; font-weight: 600; transition: .4s;
}
.conference-btn:hover, .load-btn:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(0,234,255,0.4); }

@media(max-width:1280px) {
  .conference-card { gap: 36px; padding: 28px; }
  .conference-image img { height: 360px; }
  .conference-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
}
@media(max-width:991px) {
  .conference-card { grid-template-columns: 1fr; }
  .conference-card.reverse .conference-image,
  .conference-card.reverse .conference-content { order: unset; }
  .conference-image img { height: 320px; }
}
@media(max-width:768px) {
  .conference-card { padding: 20px; gap: 30px; }
  .countdown-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   BUSINESS CARD
══════════════════════════════ */
.business-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 35px; border-radius: 35px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); transition: .5s; position: relative; overflow: hidden;
}
.business-card:hover {
  transform: translateY(-10px); border-color: rgba(0,234,255,0.4);
  box-shadow: 0 0 40px rgba(0,234,255,0.15), 0 0 80px rgba(122,92,255,0.08);
}
.business-card.reverse .business-image { order: 2; }
.business-card.reverse .business-content { order: 1; }
.business-image { position: relative; overflow: hidden; border-radius: 28px; }
.business-image img { width: 100%; height: 420px; object-fit: cover; transition: 1s; }
.business-card:hover .business-image img { transform: scale(1.08); }
.business-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); z-index: 1;
}
.business-tag {
  display: inline-block; padding: 10px 22px; border-radius: 50px;
  background: rgba(0,234,255,0.08); border: 1px solid rgba(0,234,255,0.2);
  color: #00eaff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.business-title { font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.1; font-weight: 900; color: white; margin-bottom: 25px; }
.business-text { color: #94a3b8; line-height: 2; font-size: 16px; }
.business-card::after {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 220px; height: 220px; background: rgba(0,234,255,0.08);
  filter: blur(80px); border-radius: 50%;
}

@media(max-width:1280px) {
  .business-card { gap: 36px; padding: 28px; }
  .business-image img { height: 360px; }
  .business-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
}
@media(max-width:991px) {
  .business-card { grid-template-columns: 1fr; }
  .business-card.reverse .business-image,
  .business-card.reverse .business-content { order: unset; }
  .business-image img { height: 320px; }
}
@media(max-width:768px) {
  .business-card { padding: 20px; gap: 30px; }
  .business-title { font-size: 30px; }
}

/* ══════════════════════════════
   TEAM (GLASS CARD)
══════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); padding: 35px; border-radius: 35px; transition: .5s;
}
.glass-card:hover { transform: translateY(-8px); border-color: rgba(0,234,255,0.4); box-shadow: 0 0 40px rgba(0,234,255,0.15); }
.team-title { font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; color: white; margin-bottom: 20px; }
.team-role {
  display: inline-block; padding: 10px 22px; border-radius: 50px;
  background: rgba(0,234,255,0.1); border: 1px solid rgba(0,234,255,0.3);
  color: #00eaff; margin-bottom: 20px; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.team-text { color: #94a3b8; line-height: 2; margin-bottom: 30px; font-size: 16px; }
.team-contact { display: flex; flex-direction: column; gap: 14px; }
.team-contact p {
  color: white; padding: 14px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}

/* ══════════════════════════════
   VALUES
══════════════════════════════ */
#values { background-color: #0f111a; }
#values .glass {
  background: rgba(15,17,26,0.6); backdrop-filter: blur(18px);
  border-radius: 35px; padding: 2rem; transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#values .glass:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,255,255,0.1); }
#values img { border-radius: 1.5rem; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
#values img:hover { transform: scale(1.05); }
#values h3 { color: #10b981; font-size: .875rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: .5rem; }
#values h2 { color: #fff; font-size: 1rem; font-weight: 500; margin-bottom: .500rem; }
#values p { color: #94a3b8; line-height: 1.75; }

/* ══════════════════════════════
   CONFERENCE IMAGE SLIDER
══════════════════════════════ */
.conference-slider { position: relative; width: 100%; height: 520px; overflow: hidden; border-radius: 30px; }
.conference-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(100%); transition: transform 1s ease-in-out, opacity 1s ease-in-out; z-index: 1; }
.conference-slide.active { opacity: 1; transform: translateX(0); z-index: 3; }
.conference-slide.prev { opacity: 1; transform: translateX(-100%); z-index: 2; }
.conference-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-dots { position: absolute; bottom: 25px; right: 25px; z-index: 50; display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: .3s; }
.dot.active { width: 30px; border-radius: 50px; background: linear-gradient(90deg, #00f0ff, #7a5cff); }
@media(max-width:768px) { .conference-slider { height: 320px; } }

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.input-box {
  width: 100%; padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: white; outline: none; transition: .3s;
}
.input-box:focus { border-color: #00eaff; box-shadow: 0 0 20px rgba(0,234,255,0.3); }
.input-box::placeholder { color: #94a3b8; }

/* ══════════════════════════════
   PAGE LOADER
══════════════════════════════ */
.loader { position: fixed; inset: 0; background: #030712; display: flex; align-items: center; justify-content: center; z-index: 99999; }
.loader h1 {
  font-size: 4rem; font-weight: 800;
  background: linear-gradient(90deg, #04AA6D, #7d5cff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* ══════════════════════════════
   CUSTOM CURSOR
══════════════════════════════ */
.cursor {
  position: fixed; width: 25px; height: 25px;
  border: 2px solid cyan; border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  z-index: 999999; mix-blend-mode: difference;
}

/* ══════════════════════════════
   ANIMATED SIDE LINES
══════════════════════════════ */
.side-lines { position: fixed; top: 0; width: 120px; height: 100vh; z-index: 999; pointer-events: none; }
.left-side  { left: 0; }
.right-side { right: 0; }

.line { position: absolute; top: 0; width: 1px; height: 100%; overflow: hidden; }
.left-side .line1  { left: 20px; }
.left-side .line2  { left: 50px; }
.left-side .line3  { left: 80px; }
.right-side .line1 { right: 20px; }
.right-side .line2 { right: 50px; }
.right-side .line3 { right: 80px; }

.line::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent); }
.line::after  { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 10px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(0,234,255,0.08), rgba(122,92,255,0.08), transparent); filter: blur(12px); }

.line span {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 180px; border-radius: 999px;
  background: linear-gradient(to bottom, transparent, #00eaff, #7a5cff, transparent);
  box-shadow: 0 0 15px #00eaff, 0 0 35px #7a5cff, 0 0 60px rgba(0,234,255,0.8);
  animation: lineMove 5s linear infinite;
}
.line1 span { animation-duration: 4s; }
.line2 span { animation-duration: 6s; animation-delay: 1s; }
.line3 span { animation-duration: 5s; animation-delay: 2s; }
.right-side .line1 span { animation-delay: 1.5s; }
.right-side .line2 span { animation-delay: 2.5s; }
.right-side .line3 span { animation-delay: 3.5s; }

@keyframes lineMove {
  0%   { top: -220px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 120%; opacity: 0; }
}

@media(max-width:768px) {
  .side-lines { width: 60px; }
  .left-side .line1  { left: 8px; }   .left-side .line2  { left: 20px; } .left-side .line3  { left: 32px; }
  .right-side .line1 { right: 8px; }  .right-side .line2 { right: 20px; }.right-side .line3 { right: 32px; }
  .line span { width: 3px; height: 120px; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  position: relative;
  padding: 80px 60px 36px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 80px;
}
.footer-side-shape { position: absolute; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent, #00f0ff44, transparent); pointer-events: none; }
.left-shape  { left: 0; }
.right-shape { right: 0; }
.footer-shape { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.shape1 { width: 300px; height: 300px; background: rgba(0,240,255,0.06); top: -60px; left: 10%; }
.shape2 { width: 250px; height: 250px; background: rgba(120,80,255,0.06); bottom: -40px; right: 15%; }
.shape3 { width: 180px; height: 180px; background: rgba(0,200,100,0.04); top: 40%; left: 50%; }
.footer-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none; z-index: 0;
}
.footer-inner { position: relative; z-index: 1; }

/* override glow-line for footer */
footer .glow-line { background: linear-gradient(to right, transparent, #00f0ff, transparent); margin-bottom: 48px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }

.footer-title {
  font-size: 18px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: #fff; margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: linear-gradient(90deg, #00f0ff, #7a5cff); border-radius: 2px; }

.footer-link {
  display: flex; align-items: center; gap: 8px; color: #64748b;
  text-decoration: none; font-size: 18px; font-weight: 500; transition: color 0.2s, gap 0.2s; line-height: 1;
}
.footer-link::before { content: '›'; font-size: 18px; color: #00f0ff; opacity: 0; transition: opacity 0.2s; }
.footer-link:hover { color: #e2e8f0; gap: 18px; }
.footer-link:hover::before { opacity: 1; }

.social-icon {
  width: 38px; height: 38px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: #64748b; text-decoration: none; font-size: 18px; transition: all 0.25s ease;
}
.social-icon:hover { border-color: rgba(0,240,255,0.4); background: rgba(0,240,255,0.08); color: #00f0ff; transform: translateY(-3px); }

.contact-row { display: flex; align-items: flex-start; gap: 12px; color: #64748b; font-size: 18px; line-height: 1.6; }
.contact-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(0,240,255,0.06); border: 1px solid rgba(0,240,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 1px;
}

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-copy { color: #04AA6D; font-size: 18px; }
.footer-policies { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-policies a { color: #04AA6D; text-decoration: none; font-size: 18px; transition: color 0.2s; }
.footer-policies a:hover { color: #00f0ff; }

@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
  footer { padding: 72px 40px 32px; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 64px 28px 28px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 56px 18px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.social-icons{
  display:flex;
  gap:14px;
}

.social-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  color:white;
  font-size:20px;
  text-decoration:none;

  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(12px);

  transition:0.3s;
}

.social-icon:hover{
  transform:translateY(-5px);
  color:#00ffff;

  box-shadow:
    0 0 15px #00ffff,
    0 0 35px rgba(0,255,255,0.5);
}

.blur-ball{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.35;
  z-index:-1;
}

/* Optional positions */

.top-0{
  top:0;
}

.left-0{
  left:0;
}

.bottom-0{
  bottom:0;
}

.right-0{
  right:0;
}

/* Sizes */

.w-\[400px\]{
  width:400px;
}

.h-\[400px\]{
  height:400px;
}

/* Colors */

.bg-green-500{
  background:#22c55e;
}

.bg-violet-600{
  background:#7c3aed;
}



/* upcoming conferences */


.events-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .event-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    background: #0A3126;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  /* ── TOP HEADER ROW ── */
  .card-header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #0A3126;
    border-bottom: 1px solid #e5e5e5;
  }
  .header-left {
    display: flex;
    align-items: center;
  }
  .date-box {
    background: #1a9e7a;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    min-width: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .date-box .day  { font-size: 28px; font-weight: 800; line-height: 1; }
  .date-box .month{ font-size: 13px; font-weight: 700; text-transform: uppercase; margin-top: 2px; }
  .date-box .year { font-size: 13px; font-weight: 700; }
  .event-title {
    padding: 12px 18px;
    font-size: 30px;
    font-weight: 700;
    color: #1a9e7a;
  }

  /* ── COUNTDOWN ── */
  .countdown {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 10px 16px;
  }
  .cd-unit {
    background: #1a9e7a;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 5px 10px;
    min-width: 50px;
  }
  .cd-unit .num { font-size: 22px; font-weight: 800; line-height: 1.1; }
  .cd-unit .lbl { font-size: 10px; color: #b2ead8; margin-top: 2px; }

  /* ── CARD BODY ── */
  .card-body {
    display: flex;
    min-height: 220px;
  }

  /* Logo / branding column */
  .logo-col {
    background: #fff;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 460px;
    border-right: 1px solid #eee;
  }

  /* Description column */
  .desc-col {
    background: #1a9e7a;
    padding: 20px 22px 18px;
    flex: 1;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
	text-align:justify;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .desc-col p { margin-bottom: 14px; }
  .goto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5a623;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
  }
  .goto-btn:hover { background: #d4891a; }
  .goto-btn .plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
  }

  /* ── DEFSEC LOGO ── */
  .defsec-logo { text-align: center; }
  .defsec-logo .annual-tag {
    font-size: 11px;
    font-weight: 600;
    color: #1a9e7a;
    font-style: italic;
    margin-bottom: 2px;
  }
  .shield-wrap {
    position: relative;
    display: inline-block;
    margin: 4px 0;
  }
  .defsec-text {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #1a9e7a;
  }
  .defsec-text .sec { color: #f5a623; }
  .year-badge {
    position: absolute;
    top: 10px;
    right: -18px;
    font-size: 12px;
    font-weight: 800;
    color: #1a9e7a;
    transform: rotate(90deg);
  }
  .defsec-meta {
    font-size: 10px;
    color: #555;
    margin-top: 3px;
  }
  .defsec-tagline {
    font-size: 9px;
    color: #888;
    font-style: italic;
    margin-top: 3px;
  }

  /* ── DATA CENTRE LOGO ── */
  .dc-logo { text-align: center; }
  .dc-logo .annual-tag {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
  }
  .dc-data   { font-size: 36px; font-weight: 900; color: #1a9e7a; line-height: 1; }
  .dc-centre { font-size: 36px; font-weight: 900; color: #00bcd4; line-height: 1; }
  .dc-conclave { font-size: 20px; font-weight: 900; color: #222; letter-spacing: 1.5px; line-height: 1.3; }
  .dc-date   { font-size: 11px; color: #444; font-style: italic; margin-top: 6px; }
  .dc-banner {
    background: #1a9e7a;
    color: #fff;
    font-size: 9.5px;
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 8px;
    font-style: italic;
    display: inline-block;
    max-width: 210px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    .card-header { flex-direction: column; align-items: flex-start; }
    .countdown { justify-content: flex-start; }
    .card-body { flex-direction: column; }
    .logo-col { flex: none; border-right: none; border-bottom: 1px solid #eee; }
    .event-title { font-size: 20px; }
  }