/* ================= ROOT ================= */
:root {
  --bg-main: #05061a;
  --bg-soft: #0b0f2a;
  --accent: #8b5cf6;
  --accent-soft: rgba(139,92,246,0.15);
  --text-main: #ffffff;
  --text-muted: #a5a8c6;
  --border-soft: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 50% 0%, #2b145f 0%, var(--bg-main) 60%);
  color: var(--text-main);
  line-height: 1.7;
}

/* ================= UTIL ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-head h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
}

/* ================= NAV ================= */
/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 6, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

/* ================= NAV CONTAINER ================= */
.nav-container {
  padding: 26px 56px;     /* More breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;      /* wider */
  margin: 0 auto;
  padding: 26px 48px;     /* TALLER BAR */
}

/* ================= BRAND (LOGO + TITLE TOGETHER) ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;              /* TIGHTER */
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 100px;        
  width: 260px;         
  max-width: 100%;       
  display: block;
}
 


/* TITLE NEXT TO LOGO */
.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  margin-left: 2px;       /* MICRO pull closer */
}

.nav-title-main {
  font-size: 28px;       /* Slightly down = better balance */
  font-weight: 800;
  line-height: 1.15;
}

.nav-title-sub {
  font-size: 20px;       /* Subtitle should whisper, not shout */
  letter-spacing: 0.3px;
  opacity: 0.7;
}

/* ================= NAV LINKS ================= */
.nav-list {
  display: flex;
  align-items: center;
  gap: 38px;              /* MORE SPACE */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;        /* BIGGER */
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

/* ================= CTA BUTTON ================= */
.nav-cta {
  padding: 14px 26px;     /* BIGGER BUTTON */
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #05061a;
}


/* ================= HERO ================= */
.hero {
  position: relative;
  height: 85vh; /* try 70–80vh if you want tighter */
  min-height: 520px; /* keeps it safe on small screens */
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 850px;
  padding: 0 24px;
  transform: translateY(-40px); /* pull content up */
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 18px;
}

.hero-intro {
  color: white;
  margin-bottom: 33px;
}

.hero-date {
  margin-bottom: 36px;
}

.date-pill {
  padding: 8px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-secondary {
  border: 1px solid var(--border-soft);
  color: var(--text-main);
} /* =====================================================
   SECTORS GRID
   ===================================================== */

.sectors {
  padding: 120px 0;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.sector-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160,26,255,0.45);
}

/* Image */
.sector-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.sector-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.sector-title {
  font-size: 18px;
  font-weight: 700;
  padding: 22px 22px 8px;
}

.sector-brief {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Button */
.sector-btn {
  margin: auto 22px 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(160,26,255,0.15);
  border: 1px solid rgba(160,26,255,0.45);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.sector-btn:hover {
  background: rgba(160,26,255,0.25);
}

/* Responsive */
@media (max-width: 1100px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SECTOR MODAL / POPUP
   ===================================================== */

.sector-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sector-modal[aria-hidden="false"] {
  display: block;
}

/* Backdrop */
.sector-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* Modal card */
.sector-modal-card {
  position: relative;
  max-width: 920px;
  margin: 6vh auto;
  background: rgba(5,6,26,0.95);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(160,26,255,0.35);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* Close */
.sector-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

/* Modal image */
.sector-modal-media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.sector-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark cover */
.sector-modal-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.8)
  );
  display: flex;
  align-items: flex-end;
  padding: 18px 22px;
}

.sector-modal-location {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}

/* Modal body */
.sector-modal-body {
  padding: 32px 36px 40px;
}

.sector-modal-body h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: rgba(160,26,255,0.9);
}

.sector-modal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 700px) {
  .sector-modal-media {
    height: 240px;
  }

  .sector-modal-body {
    padding: 26px 22px;
  }

  .sector-modal-body h3 {
    font-size: 22px;
  }
}
/* ================= SECTORS CTA ================= */

.sectors-cta {
  padding: 120px 0;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(160,26,255,0.18),
      rgba(160,26,255,0.06)
    );

  border: 1px solid rgba(160,26,255,0.35);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(160,26,255,0.08);
}

.cta-box h2 {
  font-size: 40px;
  font-weight: 800;
  color: rgba(160,26,255,0.9);
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 52px 28px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
}
/* ================= FOOTER ================= */

.site-footer {
  background: rgba(5,6,26,0.95);
  border-top: 1px solid rgba(160,26,255,0.25);
  padding: 22px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
