/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 60;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.18s ease,
    padding 0.18s ease;
  background: transparent;
  color: #fff;
  pointer-events: none; /* children control pointer events */
}

.nav-left {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.nav-logo img {
  height: 65px; 
 
  width: auto;
  display: block; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  pointer-events: auto;
}

.nav-links .nav-link {
  text-decoration: none;
  color: #ea5b26;
  font-size: 11px;
  letter-spacing: 0.8px;
  transition: color 0.18s ease;
}

.nav-links .nav-link:hover {
  color: #e8eef8;
}

/* hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.95);
}

/* mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  background: radial-gradient(circle at 30% 40%, rgba(60, 30, 120, 0.12), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.mobile-link {
  color: #e8eef8;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 12px 20px;
}

.mobile-link:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* SCROLLED NAVBAR STATE (after user scrolls) */
.navbar.scrolled {
  background: #fff;
  color: #0b1220;
  box-shadow: 0 6px 18px rgba(6, 10, 20, 0.08);
  padding: 12px 40px;
}

.navbar.scrolled .nav-link {
  color: #ea5b26;
}

.navbar.scrolled .nav-logo {
  color: #ea5b26;
}

.navbar.scrolled .hamburger {
  color: #ea5b26;
}

/* hamburger -> X animation */
.hamburger .line {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.18s ease;
}

.hamburger.open .line1 {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.open .line2 {
  opacity: 0;
  transform: scaleX(0.1);
}

.hamburger.open .line3 {
  transform: translateY(-5px) rotate(-45deg);
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }
}

/* ===========================
   PAGE CONTENT BACKGROUND
   =========================== */

.page-content {
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 14, 34, 0.55), transparent 10%),
    radial-gradient(circle at 85% 25%, rgba(116, 61, 162, 0.45), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(106, 166, 255, 0.35), transparent 30%),
    #000;
  background-attachment: fixed; /* bulbs don’t scroll, content does */
  color: #fff;
}

/* ===========================
   HERO WITH VIDEO BACKGROUND
   =========================== */

.about-hero-video {
  position: relative;
  width: 100%;
  min-height: 380px;
  padding: 120px 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.about-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
  filter: brightness(0.55) contrast(1.1);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* TEXT BLOCK */
.about-hero-inner {
  max-width: 1000px;
  padding: 0 20px;
  color: #ffffff;
}

/* Title */
.about-hero-title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* Blue highlighted part */
.about-highlight {
  font-weight: 700;
  background: linear-gradient(90deg, #2b63ff, #4e83ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.about-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(230, 240, 255, 0.92);
  max-width: 900px;
  margin: 0 auto;
}

/* HERO MEDIA QUERIES */
@media (max-width: 900px) {
  .about-hero-title {
    font-size: 40px;
  }

  .about-hero-text {
    font-size: 16px;
    max-width: 95%;
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 32px;
  }

  .video-overlay {
    background: rgba(0, 0, 0, 0.75);
  }
}

/* ===========================
   MISSION SECTION
   =========================== */

.mission-section {
  background: transparent;
  padding: 80px 16px 100px;
  display: flex;
  justify-content: center;
}

/* Card wrapper */
.mission-card {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px;
  border-radius: 20px;
  background: #202020;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  z-index: 20;
}

/* gradient line at top of card */
.mission-card::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 0;
  height: 3px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, #234fc7, #6c21f8, #552a65);
}

/* label */
.mission-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ea5b26;
  margin-bottom: 26px;
}

/* main quote text */
.mission-text {
  font-size: 25px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  font-weight: 200;
  max-width: 900px;
  margin: 0 auto;
}

/* MISSION MEDIA QUERIES */
@media (max-width: 900px) {
  .mission-card {
    padding: 46px 32px;
  }

  .mission-text {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .mission-section {
    padding: 56px 12px 80px;
  }

  .mission-card {
    padding: 40px 20px;
    border-radius: 22px;
  }

  .mission-text {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ===========================
   VALUES STRIP (3 ICONS)
   =========================== */

.values-strip {
  background: transparent;
  padding: 80px 40px 90px;
  color: #ffffff;
}

.values-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 90px;
}

/* Each column */
.value-item {
  text-align: center;
  max-width: 340px;
}

/* Small gradient circles */
.value-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Blue & purple gradients */
.value-icon-blue {
  background: radial-gradient(circle at 35% 30%, rgba(29, 139, 255, 0.5) 0%, rgba(10, 45, 110, 0.5) 0%);
}

.value-icon-purple {
  background: radial-gradient(circle at 35% 30%, rgba(181, 106, 255, 0.5) 0%, rgba(66, 20, 89, 0.5) 0%);
}

/* Icons inside circles */
.value-icon-circle svg {
  width: 25px;
  height: 25px;
  stroke: #ffffff;
  stroke-width: 1.8;
  fill: none;
}

/* Titles & text */
.value-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.value-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

/* VALUES MEDIA QUERIES */

@media (max-width: 1100px) {
  .values-strip-inner {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .values-strip {
    padding: 70px 20px 80px;
  }

  .values-strip-inner {
    gap: 40px;
  }

  .value-item {
    max-width: 280px;
  }

  .value-title {
    font-size: 18px;
  }

  .value-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .values-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .value-item {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .values-strip {
    padding: 60px 16px 70px;
  }

  .value-icon-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .value-icon-circle svg {
    width: 34px;
    height: 34px;
  }

  .value-title {
    font-size: 17px;
  }

  .value-text {
    font-size: 14px;
  }
}
/* ===========================
   OUR COLLECTIVE SECTION
   =========================== */

.collective-section {
  background: transparent;
  padding: 90px 40px 110px;
  color: #f8fbff;
}

.collective-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* wide, balanced two-column layout */
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 56px;
  row-gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE ---------------------------------------------------- */

.collective-left {
  /* IMPORTANT: let it shrink so it never forces overlap */
  min-width: 0;
}

/* label row */
.collective-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.label-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #2c82ff, #101c35);
  border: 1px solid rgba(126, 177, 255, 0.6);
}

.label-icon svg {
  width: 22px;
  height: 22px;
  stroke: #e3efff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.label-text {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea5b26;
}

/* heading + intro */
.collective-title {
  font-size: 38px;
  margin-bottom: 18px;
}

.collective-title span {
  font-weight: 700;
}

.collective-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(224, 233, 252, 0.9);
  margin-bottom: 32px;
}

/* roles list */
.collective-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

/* each role card */
.role-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 15px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.03), #11131a);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.75);
}

/* icon block */
.role-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 51, 88, 0.9);
  border: 1px solid rgba(143, 182, 255, 0.55);
}

/* icon colours */
.role-blue   { background: rgba(24, 53, 90, 0.95); }
.role-purple { background: rgba(58, 35, 84, 0.95); border-color: rgba(209,168,255,0.55); }
.role-green  { background: rgba(17, 61, 37, 0.95); border-color: rgba(134,235,176,0.55); }
.role-gold   { background: rgba(70, 46, 13, 0.95); border-color: rgba(246,209,118,0.55); }
.role-pink   { background: rgba(77, 34, 60, 0.95); border-color: rgba(255,178,211,0.55); }

.role-icon svg {
  width: 24px;
  height: 24px;
  stroke: #f7fbff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* text inside cards */
.role-text h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fdfdff;
}

.role-text p {
  font-size: 13px;
  color: rgba(205, 214, 234, 0.88);
}

/* hover */
.role-card:hover {
  transform: translateY(-2px);
  border-color: rgba(150, 194, 255, 0.7);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.86);
  transition: all 0.18s ease;
}

/* RIGHT SIDE – QUOTE CARD -------------------------------------- */

.collective-quote {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* no fixed margin here to avoid overlap on medium screens */
  margin-left: 0;
  margin-top: 79px;
}

/* outer glow behind card */
.quote-glow {
  /* position: absolute; */
  inset: -12%;
  filter: blur(40px);
  opacity: 0.85;
  z-index: 0;
}

/* actual card */
.quote-card {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 40px 44px 34px;
  background: radial-gradient(circle at 0% 0%, #071624, #050812 65%);
  border: 1px solid rgba(130, 174, 255, 0.3);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.95);
}

/* star icon */
.quote-star {
  margin-bottom: 26px;
}

.quote-star svg {
  width: 28px;
  height: 28px;
  stroke: #45deff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* quote text */
.quote-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 241, 255, 0.94);
  font-style: italic;
  margin-bottom: 28px;
}

/* divider line */
.quote-divider {
  height: 1px;
  margin: 10px 0 22px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.04)
  );
}

/* footer / avatar */
.quote-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-avatar {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #8a9cff, #4250ff);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.quote-meta .quote-name {
  font-size: 16px;
  font-weight: 600;
}

.quote-meta .quote-role {
  font-size: 13px;
  color: rgba(201, 210, 236, 0.88);
}

/* ========== MEDIA QUERIES ========== */

/* large-ish screens – keep type scale nice */
@media (max-width: 1100px) {
  .collective-title {
    font-size: 36px;
  }
  .collective-intro {
    font-size: 16px;
  }
  .quote-text {
    font-size: 16px;
  }
}

/* tablets – stack columns, keep quote card centred */
@media (max-width: 900px) {
  .collective-section {
    padding: 70px 24px 90px;
  }

  .collective-inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .collective-quote {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* phones – single column, narrower padding */
@media (max-width: 600px) {
  .collective-section {
    padding: 60px 18px 80px;
  }

  .collective-title {
    font-size: 32px;
  }

  .collective-intro {
    font-size: 15px;
  }

  .collective-roles {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 26px 22px 24px;
  }

  .quote-text {
    font-size: 16px;
  }
}

/* very wide desktops – add a subtle offset like the reference */
@media (min-width: 1400px) {
  .collective-quote {
    margin-left: 60px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #05060a;
  color: #e5ecff;
  padding: 48px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP AREA */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* BRAND BLOCK */
.footer-brand {
  max-width: 520px;
}

/* .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
} */

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 45px;   /* Adjust this value to match your layout */
  width: auto;
  display: block;
}


/* circular pill with HD */
.footer-logo-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #6aa6ff, #3044c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-logo-text span {
  font-weight: 700;
}

/* tagline */
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(227, 235, 255, 0.9);
  margin: 0 0 18px;
}

/* social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(240, 245, 255, 0.96);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.footer-social-btn:hover {
  background: rgba(90, 140, 255, 0.25);
  border-color: rgba(120, 185, 255, 0.8);
  transform: translateY(-2px);
}

/* NAV COLUMN */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(210, 220, 255, 0.95);
  margin: 0 0 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
  text-decoration: none;
  padding: 2px 0;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* CONTACT COLUMN */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
}

.footer-contact-sub {
  color: rgba(180, 190, 210, 0.9);
}

/* DIVIDER */
.footer-divider {
  margin: 32px 0 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(160, 172, 198, 0.9);
}

.footer-copy {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(200, 210, 235, 0.95);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* FOOTER media queries */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 420px;
  }


}

@media (max-width: 1024px) {
  .footer-tagline {
  font-size: 18px;
}

.footer-contact p {
  font-size: 18px; 
}
.footer-nav a {
  font-size: 18px;
}}

@media (max-width: 700px) {
  .site-footer {
    padding: 40px 18px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    font-size: 12px;
  }
}
@media (max-width: 540px){
    .footer-tagline {
  font-size: 16px;
}

.footer-contact p {
  font-size: 16px; 
}
.footer-nav a {
  font-size: 16px;
}

.footer-heading {
  font-size: 18px;
}}








.whyy-section {
  position: relative;
  padding: 10px 40px 10px;
  background: transparent;
  z-index: 1;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.why-heading-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.why-heading-leftt {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.why-accent-line {
  display: block;
  width: 150px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ea2ff, #b778ff);
  opacity: 0.9;
}
@media (max-width: 900px) {

  .why-header {
    flex-direction: column;
    align-items: flex-start;
  }

   .why-heading-right {
    width: 100%;
    justify-content: flex-start;
  }
.why-accent-line {
    width: 120px;
  }
  
}













