/* ================= ROOT ================= */

.home-wrapper {
  width: 100%;
  background: #0b1626;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================= HERO ================= */

.home-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;

  /* QUANTUM IMAGE + DARK FADE FOR TEXT */
  background-image:
    linear-gradient(
      to right,
      rgba(11, 22, 38, 0.95) 0%,
      rgba(11, 22, 38, 0.9) 40%,
      rgba(11, 22, 38, 0.4) 65%,
      rgba(11, 22, 38, 0.1) 100%
    ),
    url("../assets/quantum1.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  /* Prevent blur */
  image-rendering: -webkit-optimize-contrast;
}

/* ================= GRID ================= */

.hero-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 1.2px;
}

.hero-content p {
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #d5dbe2;
  font-size: 15px;
}

/* ================= ACTIONS ================= */

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  height: 44px;
  padding: 0 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= BUTTONS ================= */

.btn-primary {
  background: #0666e4;
  color: #ffffff;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #1f3b5e;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #78c8ff;
  color: #78c8ff;
}

.btn-secondary:hover {
  background: rgba(120, 200, 255, 0.15);
}

/* ================= RIGHT SPACE ================= */

.hero-visual-space {
  height: 520px;
}

/* ================= CONTENT ================= */

.home-content {
  background: linear-gradient(180deg, #0b1626 0%, #0f2238 100%);
  color: #e6ebf1;
  padding: 100px 40px 50px;
}

.content-block {
  max-width: 1000px;
  margin: 0 auto 90px;
}

.content-block h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 28px;
}

.content-block p,
.content-block li {
  line-height: 1.8;
  font-size: 15px;
  color: #d5dbe2;
}

.muted {
  font-style: italic;
  color: #9fb3c8;
}

.highlight {
  background: linear-gradient(
    135deg,
    rgba(42, 77, 122, 0.35),
    rgba(120, 200, 255, 0.22)
  );
  padding: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-cta {
  margin-top: 28px;
}

.contact {
  margin-top: 18px;
  color: #d5dbe2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-hero {
    background-position: center bottom;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    min-height: auto;
    padding: 48px 0 32px;
    background-position: center 70%;
  }

  .hero-visual-space {
    display: none;
    height: 0;
  }

  .hero-content h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .hero-content p {
    margin-bottom: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .home-content {
    padding: 70px 20px;
  }
}

/* ================= LEADERSHIP ================= */

.leadership-section {
  background: linear-gradient(180deg, #0f2238 0%, #0b1626 100%);
  padding: 10px 40px 110px;
  text-align: center;
}

.leadership-title {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.leadership-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.leader-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: fadeUp 0.8s ease both;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.leader-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  background: rgb(255,255,255);
  padding: 6px;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.leader-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 6px;
}

.role {
  font-size: 13px;
  color: #78c8ff;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}

.desc {
  font-size: 14px;
  line-height: 1.7;
  color: #d5dbe2;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
/* ================= HERO CTA – GLASS PILL ================= */

.hero-cta-primary {
  height: 46px;
  padding: 0 34px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;   /* ✅ underline removed */

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}
