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

body {
    background-color: #000;
    color: white;
    overflow-x: hidden; /* Horizontal scroll roknay ke liye */
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent); /* Thoda shadow text ke peeche */
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ccc;
    border-bottom: 1px solid white;
}

/* Menu Icon (Mobile ke liye) */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Hero Sections (Full Screen) */
.hero-section {
    height: 100vh; /* Poori screen cover karega */
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; /* Vertical center nahi, thoda neeche rakhenge */
    padding-left: 100px; /* Text left side par */
    position: relative;
}

/* Dark Overlay taake text parha jaye */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); 
}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

.content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content h1 {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}

.content p {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* SpaceX Style Ghost Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: white;
    color: black;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design (Mobile ke liye rules) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none; /* Mobile pe menu chupao */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex; /* Button dabane pe dikhao */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-icon {
        display: flex; /* Mobile pe icon dikhao */
    }

    /* Text adjustment for mobile */
    .hero-section {
        padding-left: 20px;
        justify-content: center; /* Mobile pe text center */
        text-align: center;
    }

    .content h1 {
        font-size: 40px;
    }

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

/* Logo ko link banaya hai */
.logo {
    text-decoration: none;
    color: white;
}

/* Menu button ko better accessibility */
.menu-icon {
    background: transparent;
    border: none;
    padding: 8px;
}

/* Hero overlay thoda better readability */
.hero-section::before {
    background: rgba(0, 0, 0, 0.35);
}

/* New info sections (observatory + join us) */
.info-section {
    padding: 110px 20px;
    background: #000;
}

.info-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.info-wrap h2 {
    font-size: 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.info-wrap p {
    max-width: 800px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.info-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.info-card h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    margin: 0;
    opacity: 0.85;
}

/* Footer */
.footer {
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0.85;
}

/* Responsive info grid */
@media screen and (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
/* ==============================
   Observatory background image
============================== */
.observatory-bg {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=2400&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.observatory-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.observatory-bg .info-wrap {
    position: relative;
    z-index: 1;
}

/* ==============================
   Join background image
============================== */
.join-bg {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1543946603-0f2b8b1c9f35?q=80&w=2400&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.join-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.65));
    z-index: 0;
}

.join-bg .info-wrap {
    position: relative;
    z-index: 1;
}
/* =====================================
   OBSERVATORY BACKGROUND (LIGHT + CLEAN)
===================================== */
.observatory-bg {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1580428180121-67d8b6f0f8a0?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.observatory-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78); /* text clear rahe */
    z-index: 0;
}

.observatory-bg .info-wrap {
    position: relative;
    z-index: 1;
}


/* =====================================
   JOIN ORBX BACKGROUND (HUMAN + FUTURE)
===================================== */
.join-bg {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1608178398319-48f814d0750c?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.join-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.7)
    );
    z-index: 0;
}

.join-bg .info-wrap {
    position: relative;
    z-index: 1;
}


/* =====================================
   PREMIUM GLASS CARDS (OPTIONAL BUT 🔥)
===================================== */
.info-card {
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
}
/* ==============================
   REPORT / PDF STYLE PAGE
============================== */
.report-page {
  background: #07070a;
}

.report-nav {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.report-wrap {
  padding-top: 90px; /* navbar space */
}

.report-cover {
  min-height: 92vh;
  padding: 80px 20px;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?q=80&w=2200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.report-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.report-cover-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.report-cover h1 {
  font-size: 58px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.subtitle {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 28px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.meta-item {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  padding: 14px;
}

.meta-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.meta-value {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cover-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-ghost {
  background: transparent;
}

.small-note {
  max-width: 820px;
  opacity: 0.78;
  line-height: 1.6;
  font-size: 14px;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 12px;
}

.report-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.report-section h2 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.report-section p {
  max-width: 900px;
  line-height: 1.8;
  opacity: 0.9;
}

.report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.report-card {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.report-card h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.report-card ul {
  padding-left: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.dataset-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  margin-top: 18px;
}

.dataset-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.dataset-table th,
.dataset-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  text-align: left;
  vertical-align: top;
}

.dataset-table th {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.9;
}

.mini-link {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.mini-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.9);
}

.fineprint {
  margin-top: 16px;
  opacity: 0.85;
}

.report-footer {
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  opacity: 0.9;
}

/* Make report nav links work with your mobile rules */
.report-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .report-cover h1 { font-size: 42px; }
  .meta-grid { grid-template-columns: 1fr 1fr; }
  .report-cards { grid-template-columns: 1fr; }
  .report-links { display: none; width: 100%; flex-direction: column; text-align: center; padding: 20px 0; background: #000; position: absolute; top: 60px; right: 0; }
  .report-links.active { display: flex; }
}
/* Center Observatory button */
.observatory-btn {
    text-align: center;
    margin-top: 40px;
}
/* ===== Premium hover glow for Observatory cards ===== */
#observatory .info-card{
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  background: rgba(255,255,255,0.04);
}

#observatory .info-card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 0px; /* keep sharp edges; change to 12px if you want rounded */
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.18), transparent 55%);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
}

#observatory .info-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
}

#observatory .info-card:hover::after{
  opacity:1;
}
/* ===== Subtle pulse CTA ===== */
.btn-pulse{
  position: relative;
}

.btn-pulse::after{
  content:"";
  position:absolute;
  inset:-6px;
  border: 1px solid rgba(255,255,255,0.28);
  opacity:0;
  transform: scale(0.98);
}

.btn-pulse:hover{
  transform: translateY(-1px);
}

@keyframes pulseRing{
  0% { opacity:0; transform: scale(0.98); }
  30% { opacity:.55; }
  100% { opacity:0; transform: scale(1.08); }
}

.btn-pulse{
  animation: pulseRing 2.4s ease-out infinite;
}
/* ===== Charts (Findings page) ===== */
.charts-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.chart-card{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  padding:16px;
  backdrop-filter: blur(10px);
}

.chart-card h4{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.spark, .bars{
  width:100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}

.chart-note{
  margin-top:10px;
  opacity:0.82;
  font-size: 13px;
  line-height: 1.6;
}

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

/* ===== Chart content UI ===== */
.chart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.status{
  font-size:11px;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,0.25);
  letter-spacing:1px;
}

.status.good{ color:#9ef0c3; }
.status.warn{ color:#f2c98f; }

.stats-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.stats-row div{
  text-align:center;
  flex:1;
  border-right:1px solid rgba(255,255,255,0.1);
}

.stats-row div:last-child{
  border-right:none;
}

.stats-row strong{
  display:block;
  font-size:11px;
  opacity:0.75;
  text-transform:uppercase;
}

.stats-row span{
  font-size:16px;
  font-weight:700;
}

.legend{
  margin-top:8px;
  font-size:12px;
  opacity:0.8;
}

.legend span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
}

.bar-dot{
  width:10px;
  height:10px;
  background:#fff;
}
/* ===== Methods Section ===== */
.method-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap:16px;
  margin-top:16px;
}

.method-card{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  padding:18px;
  backdrop-filter: blur(10px);
}

.method-card h3{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 12px;
}

.schematic{
  width:100%;
  height:220px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
}

/* SVG styling */
.schematic rect{
  fill: rgba(255,255,255,0.04);
  stroke: rgba(255,255,255,0.25);
}
.schematic text{
  fill: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
}
.schematic .arrow{
  stroke: rgba(255,255,255,0.55);
  stroke-width: 2;
  fill: none;
}

/* Tags row */
.method-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

/* Bullets + mini metrics */
.bullets{
  padding-left:18px;
  line-height: 1.8;
  opacity: 0.92;
}

.mini-metrics{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}

.mini-metrics div{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  padding:10px;
  text-align:center;
}

.mini-metrics small{
  display:block;
  opacity:0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  margin-bottom:6px;
}

.mini-metrics strong{
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px){
  .method-grid{ grid-template-columns: 1fr; }
  .schematic{ height:200px; }
}
/* ===== Report Page Base ===== */
.report-page { background:#000; color:#fff; }
.report-wrap { padding-top: 110px; max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.report-section { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.report-section h2 { text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.muted { opacity: 0.85; line-height: 1.7; max-width: 1000px; }

/* ===== Reports Library ===== */
.report-list{ display:flex; flex-direction:column; gap:16px; margin-top:18px; }

.rep{
  position: relative;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  padding:18px;
  overflow:hidden;
}

.rep::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.06), transparent 55%);
  pointer-events:none;
}

.rep-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:10px; }
.rep-id{ font-size:12px; opacity:0.75; letter-spacing:1px; text-transform:uppercase; margin-bottom:6px; }
.rep h3{ margin:0; text-transform:uppercase; letter-spacing:1px; }

.rep-meta{ display:flex; gap:16px; flex-wrap:wrap; font-size:12px; opacity:0.9; margin-top:6px; }

.rep-badge{
  font-size:11px; padding:5px 10px;
  border:1px solid rgba(255,255,255,0.25);
  letter-spacing:1px; text-transform:uppercase; white-space:nowrap;
}
.rep-badge.good{ color:#9ef0c3; }
.rep-badge.warn{ color:#f2c98f; }

.rep-abstract{ line-height:1.8; opacity:0.92; margin: 10px 0 14px; }

.rep-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.rep-card{ border:1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.18); padding:14px; }

.bullets{ padding-left:18px; line-height:1.8; opacity: 0.92; }

/* charts */
.spark, .bars{ width:100%; border:1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.25); }
.chart-note{ margin-top:10px; opacity:0.82; font-size:13px; line-height: 1.6; }

.stats-row{ display:flex; justify-content:space-between; margin: 6px 0 10px; }
.stats-row div{ text-align:center; flex:1; border-right:1px solid rgba(255,255,255,0.1); }
.stats-row div:last-child{ border-right:none; }
.stats-row strong{ display:block; font-size:11px; opacity:0.75; text-transform:uppercase; }
.stats-row span{ font-size:16px; font-weight:700; }

/* disclaimer */
.disclaimer-box{
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  padding:14px;
  line-height:1.7;
  opacity:0.92;
  font-size:13px;
}

@media (max-width: 900px){
  .rep-grid{ grid-template-columns: 1fr; }
}
#observatory .btn {
    margin-top: 20px;
}
/* ===== TEAM WITH PHOTOS ===== */
.team-section{
  padding: 90px 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 60%);
}

.team-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top: 28px;
}

.team-card{
  border:1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.team-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
}



.team-info{
  padding:16px;
}

.team-info h3{
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

.team-role{
  display:block;
  font-size:12px;
  opacity:0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-bio{
  font-size: 13px;
  line-height: 1.7;
  opacity:0.9;
}

@media (max-width: 1000px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-photo{ height: 240px; }
}

.team-photo{
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;  /* 👈 face upar dikhe */
  display: block;
}
.team-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-photo{
  flex-shrink: 0;
}
.team-card:hover .team-photo{
  transform: scale(1.03);
  transition: transform 0.4s ease;
}
.section-head{
  max-width: 900px;
  margin: 0 auto 50px auto;   /* 🔥 center align */
  text-align: center;         /* 🔥 text alignment fix */
}

.section-head h2{
  margin-bottom: 12px;
}

.section-head p{
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}
/* Center Observatory CTA button */
.observatory-btn,
.findings-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* =========================
   ORBX FOOTER (Premium)
========================= */
.orbx-footer{
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 55%), #050507;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 70px 0 28px;
}

.footer-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo-text{
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}

.footer-logo{
  height: 26px;
  width: auto;
  filter: grayscale(1);
  opacity: .95;
}

.footer-mission{
  margin: 12px 0 10px;
  opacity: .88;
  line-height: 1.8;
  max-width: 520px;
}

.footer-founded{
  opacity: .8;
  font-size: 13px;
  margin-bottom: 14px;
}

.footer-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
}
.badge-muted{ opacity: .7; }

.footer-newsletter{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
  padding: 18px;
}

.footer-newsletter h4{
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  opacity: .95;
}

.newsletter-form{
  display:flex;
  gap: 10px;
  align-items: center;
}

.newsletter-form input{
  flex: 1;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.92);
  outline: none;
}

.footer-btn{
  height: 42px;
  padding: 0 14px;
}

.footer-note{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .65;
}

.footer-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 26px 0;
}

.footer-mid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 22px;
}

.footer-col h5{
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .9;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin: 10px 0;
}

.footer-col a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-col a:hover{
  color: rgba(255,255,255,0.98);
  border-bottom-color: rgba(255,255,255,0.25);
}

.footer-contact .contact-list li{
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.footer-contact .label{
  opacity: .75;
  margin-right: 8px;
}

.dim{ opacity: .65; }

.footer-social{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}

.icon-link{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.icon-link svg{
  width: 18px;
  height: 18px;
}

.icon-link:hover{
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,1);
}

.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal{
  font-size: 12px;
  opacity: .72;
}

.footer-legal a{
  color: rgba(255,255,255,0.75);
  text-decoration:none;
}

.footer-legal a:hover{
  color: rgba(255,255,255,1);
}

.footer-legal .dot{
  margin: 0 8px;
  opacity: .5;
}

.footer-copy{
  font-size: 12px;
  opacity: .78;
}

/* Responsive */
@media (max-width: 980px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-mid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .newsletter-form{ flex-direction: column; align-items: stretch; }
  .footer-mid{ grid-template-columns: 1fr; }
}
footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
/* ===== LEGAL PAGE SPACE BACKGROUND ===== */
.legal-body{
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 35%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent 40%),
              radial-gradient(circle at 50% 90%, rgba(255,255,255,0.04), transparent 45%),
              #050507;
  color: rgba(255,255,255,0.92);
  position: relative;
  overflow-x: hidden;
}

/* Star layer */
.legal-body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1.5px) 0 0/38px 38px,
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1.5px) 12px 18px/62px 62px;
  opacity: 0.25;
  filter: blur(0.2px);
  z-index: 0;
}

/* Soft vignette */
.legal-body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.65) 100%);
  z-index: 0;
}

.legal-page{
  position: relative;
  z-index: 2;
}

/* Glass container look */
.legal-shell{
  max-width: 1100px;
  margin: 110px auto 80px;
  padding: 34px 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}

.legal-page h1{
  font-size: 44px;
  letter-spacing: 1px;
}

.legal-page .updated{
  opacity: 0.7;
}
/* ===== LEGAL HEADER ===== */
.legal-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.legal-header-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  height: 68px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.legal-brand{
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

.legal-nav{
  display:flex;
  gap: 18px;
}

.legal-nav a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-nav a:hover{
  color: rgba(255,255,255,1);
}

@media (max-width: 640px){
  .legal-nav{ display:none; }
}
/* =========================
   LEGAL / TERMS PAGE STYLES
   ========================= */

.legal-page {
  position: relative;
  z-index: 2;
}

.legal-shell {
  max-width: 1100px;
  margin: 120px auto 90px;
  padding: 40px 34px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.legal-shell h1 {
  font-size: 44px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.legal-shell h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 22px;
}

.legal-shell p,
.legal-shell li {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.88;
}

.legal-shell ul {
  padding-left: 20px;
  margin-top: 10px;
}

.updated {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 30px;
}

.legal-divider {
  margin: 50px 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.legal-disclaimer {
  font-size: 14px;
  opacity: 0.6;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.7;
  text-decoration: none;
}

.back-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 60px 0;
}

.footer-links h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}
/* =========================
   LEGAL PAGES (Privacy/Terms/Cookies)
   ========================= */

.legal-body{
  margin:0;
  color:#fff;
  background:#06070b;
  font-family: inherit;
  min-height:100vh;
  position: relative;
}

/* Space-style background (image nahi chahiye, pure CSS stars) */
.legal-body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index:-2;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06), transparent 45%),
    radial-gradient(circle at 30% 90%, rgba(255,255,255,0.05), transparent 40%),
    linear-gradient(180deg, #05060a 0%, #070914 45%, #04050a 100%);
}

/* slight fog/glow */
.legal-body::after{
  content:"";
  position: fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 50% 10%, rgba(120,140,255,0.08), transparent 55%),
    radial-gradient(circle at 10% 60%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(255,255,255,0.03), transparent 60%);
  pointer-events:none;
}

/* Header */
.legal-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.legal-header-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.legal-brand{
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: 2px;
}

.legal-nav a{
  color: rgba(255,255,255,0.65);
  text-decoration:none;
  margin-left: 16px;
  font-size: 14px;
}
.legal-nav a:hover{ color:#fff; }

/* Page container */
.legal-page{
  padding: 60px 22px 80px;
}

.legal-shell{
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
}

.legal-shell h1{
  font-size: 44px;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.updated{
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 28px;
}

.legal-shell h2{
  margin: 34px 0 12px;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.legal-shell p{
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
  margin: 10px 0;
}

.legal-shell ul{
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-shell li{
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.88;
}

.legal-divider{
  margin: 44px 0 26px;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.legal-disclaimer{
  font-size: 13px;
  opacity: 0.6;
}

.back-link{
  display:inline-block;
  margin-top: 26px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
}
.back-link:hover{
  color:#fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px){
  .legal-shell{ padding: 28px 18px; }
  .legal-shell h1{ font-size: 34px; }
  .legal-nav a{ margin-left: 12px; }
}
/* ===== LEGAL HEADER ===== */

.legal-header{
  position: sticky;
  top:0;
  z-index:100;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.legal-brand{
  color:#fff;
  font-weight:700;
  letter-spacing:2px;
  text-decoration:none;
  font-size:18px;
}

.legal-nav a{
  color: rgba(255,255,255,0.65);
  text-decoration:none;
  margin-left:18px;
  font-size:14px;
  transition: .2s;
}

.legal-nav a:hover{
  color:#fff;
}
/* ===== ORBX FOOTER ===== */

.orb-footer{
  background:#06070b;
  color:#fff;
  padding:60px 24px 30px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-top{
  max-width:1200px;
  margin:0 auto 50px;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-brand h3{
  margin:0 0 8px;
  letter-spacing:2px;
}

.footer-badges span{
  display:inline-block;
  border:1px solid rgba(255,255,255,0.2);
  padding:6px 10px;
  font-size:12px;
  margin:8px 6px 0 0;
}

.footer-newsletter h4{
  margin-bottom:10px;
}

.newsletter-box{
  display:flex;
  gap:10px;
}

.newsletter-box input{
  padding:10px;
  background:#111;
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
}

.newsletter-box button{
  padding:10px 16px;
  background:#fff;
  border:none;
  cursor:pointer;
}

.footer-links{
  max-width:1200px;
  margin:0 auto 40px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
}

.footer-links h5{
  margin-bottom:12px;
}

.footer-links a{
  display:block;
  color:rgba(255,255,255,0.65);
  text-decoration:none;
  margin-bottom:8px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  text-align:center;
  font-size:13px;
  opacity:0.6;
}

.footer-bottom a{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
}
/* ===== LEGAL PAGES SPACE BACKGROUND ===== */

.legal-page{
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.92)),
    url('images/space-bg.jpg') center/cover no-repeat fixed;
}

/* Content ko readable glass-card feel */
.legal-content{
  max-width: 1000px;
  margin: 80px auto;
  padding: 50px 60px;
  background: rgba(10,12,18,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

/* Headings spacing */
.legal-content h1{
  font-size: 42px;
  margin-bottom: 10px;
}

.legal-content h2{
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li{
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
/* ===== Floating WhatsApp Button ===== */

.whatsapp-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37,211,102,0.35);
  z-index: 9999;
  transition: all 0.25s ease;
}

.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 35px rgba(37,211,102,0.55);
}
.whatsapp-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img{
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover{
  transform: translateY(-6px) scale(1.08);
}
/* ===== Floating WhatsApp Button (Dock-style) ===== */
.whatsapp-float{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 16px 40px rgba(37,211,102,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover{
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 22px 55px rgba(37,211,102,0.55);
}

.wa-icon{
  width: 34px;
  height: 34px;
  display:block;
}
.whatsapp-float{
  position: fixed;
  right: 42px;     /* was 26 */
  bottom: 42px;    /* was 26 */
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  box-shadow: 0 16px 40px rgba(37,211,102,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:-10px;  /* extra invisible padding */
}
html, body{
  overflow-x: hidden;  /* side scroll avoid */
  overflow-y: auto;
}

.whatsapp-float{
  overflow: visible;
}

@media (max-width: 768px){
  .whatsapp-float{
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
  .wa-icon{
    width: 30px;
    height: 30px;
  }
}
.video-section{
  padding: 80px 6%;
}

.video-section{
  max-width: 1100px;
  margin: 80px auto;      /* section ko breathing space */
  padding: 0 20px;
}

.video-title{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 28px;    /* 👈 YEHI main gap hai */
  text-align: left;
}

.video-wrapper{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.embed-video{
  width: 100%;
  display: block;
}
/* =========================
   JOIN FORM (Premium Glass)
========================= */
.join-form-wrap{
  margin-top: 40px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

.join-form-title{
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.join-form-sub{
  opacity: 0.8;
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 14px;
}

.join-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-full{ grid-column: 1 / -1; }

.field label{
  display: block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.join-form input,
.join-form select,
.join-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.join-form textarea{ resize: vertical; }

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus{
  border-color: rgba(255,255,255,0.35);
}

.hidden-field{ display:none; }

.consent .check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 14px;
  opacity: 0.9;
}

.consent input{ width: 18px; height: 18px; margin-top: 2px; }

.consent a{
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.actions{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.join-submit{
  border-radius: 999px;
}

.join-alt{
  opacity: 0.75;
  text-decoration: none;
}

.join-alt:hover{ opacity: 1; }

@media screen and (max-width: 768px){
  .join-grid{ grid-template-columns: 1fr; }
  .join-form-wrap{ padding: 18px; }
}
.field-help{
  display:block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.5;
}

/* File input ko clean look */
.join-form input[type="file"]{
  padding: 10px;
  cursor: pointer;
}

.join-form input[type="file"]::file-selector-button{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

.join-form input[type="file"]::file-selector-button:hover{
  background: rgba(255,255,255,0.12);
}
.hero-video{
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.loaded{
  opacity: 1;
}
.team-photo{
  width: 100%;
  height: 260px;        /* ya 280/300 kar do */
  object-fit: contain;  /* ✅ no crop */
  background: #0b0c10;  /* empty sides clean lagengi */
}
/* ===== Mobile fixes: Join form consent + submit button ===== */
@media (max-width: 600px){

  /* Consent line (checkbox + text) clean */
  .join-form .consent .check{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
  }

  .join-form .consent input[type="checkbox"]{
    margin-top: 4px;        /* checkbox text ke sath align */
    transform: scale(1.05); /* optional: a bit bigger */
  }

  .join-form .consent span{
    font-size: 13px;
    opacity: 0.9;
  }

  .join-form .consent a{
    text-decoration: underline;
    white-space: nowrap; /* Terms / Privacy ko tidy rakhe */
  }

  /* Submit button + actions alignment */
  .join-form .actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .join-form .join-submit{
    width: 100%;
    max-width: 360px;   /* button “too huge” feel nahi karega */
    margin: 0 auto;     /* center */
    padding: 14px 18px; /* mobile-friendly */
    border-radius: 999px;
  }

  .join-form .join-alt{
    text-align: center;
  }
}
/* ===== Mobile fix: Footer newsletter input sizing ===== */
@media (max-width: 600px){

  .footer-newsletter .newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-newsletter .newsletter-form input,
  .footer-newsletter .newsletter-form button{
    width: 100%;
    height: 46px;
  }

  .footer-newsletter .newsletter-form input{
    font-size: 15px;
  }
}
/* ================================
   FIX 1: Submit button + consent (Desktop + Mobile)
================================ */

.join-form .consent .check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.join-form .consent input[type="checkbox"]{
  margin-top: 4px;
}

.join-form .actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Make submit readable + black */
.join-form .join-submit{
  background: #000 !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.75) !important;

  padding: 14px 22px !important;
  border-radius: 999px !important;

  min-width: 260px;     /* desktop pe clean size */
  text-align: center;
}

.join-form .join-submit:hover{
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

.join-form .join-alt{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.join-form .join-alt:hover{
  color: #fff;
  text-decoration: underline;
}

/* Mobile pe actions stack nicely */
@media (max-width: 600px){
  .join-form .actions{
    flex-direction: column;
    align-items: stretch;
  }
  .join-form .join-submit{
    width: 100%;
    min-width: 0;
  }
  .join-form .join-alt{
    text-align: center;
  }
}


/* ================================
   FIX 2: Footer newsletter input height/typing area
================================ */

.footer-newsletter .newsletter-form input{
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  line-height: 46px;      /* typing area visually bigger */
  box-sizing: border-box;
}

.footer-newsletter .newsletter-form button{
  height: 46px;
  background: #000 !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.75) !important;
}

/* Mobile pe input + button full width */
@media (max-width: 600px){
  .footer-newsletter .newsletter-form{
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==============================
   ORBX FEATURE SECTION (CLONE)
============================== */

.orbx-feature{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  background: #000;
  overflow: hidden;
}

/* background image */
.orbx-feature-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* astronaut background */
.orbx-spaceflight{
  background:
    linear-gradient(to right, rgba(0,0,0,0.88) 38%, rgba(0,0,0,0.25)),
    url("images/spaceflight.JPG") center/cover no-repeat;
}

/* content */
.orbx-feature-content{
  position: relative;
  z-index: 2;
  max-width: 560px;
}

/* small label */
.orbx-label{
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

/* heading */
.orbx-feature-content h2{
  font-size: clamp(2.6rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

/* paragraph */
.orbx-feature-content p{
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 34px;
}

/* button – EXACT OrbX style */
.orbx-btn{
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  transition: all 0.35s ease;
}

.orbx-btn:hover{
  background: #fff;
  color: #000;
}

/* mobile */
@media (max-width: 768px){
  .orbx-feature{
    min-height: 75vh;
    padding: 70px 6%;
  }

  .orbx-spaceflight{
    background:
      linear-gradient(to top, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.25)),
      url("images/spaceflight.jpg") center/cover no-repeat;
  }
}


/* =========================
   HUMAN SPACEFLIGHT PAGE
========================= */

.hs-page{ background:#000; color:#fff; }

/* HERO */
.hs-hero{
  position: relative;
  min-height: 86vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding-top: 70px; /* in case navbar overlaps */
}
.hs-hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 45% 35%, rgba(255,255,255,0.10), rgba(0,0,0,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85)),
    url("images/hs/hero.jpg") center/cover no-repeat;
  filter: contrast(1.05) saturate(0.95);
}
.hs-hero-inner{ position:relative; z-index:1; text-align:center; padding: 0 18px; }
.hs-hero h1{
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  letter-spacing: 0.08em;
  margin: 0;
}
.hs-kicker{
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
}

/* SECTIONS */
.hs-section{ padding: 70px 7%; }
.hs-section h2{
  text-align:center;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin: 0 0 26px;
}

/* MEDIA GRID */
.hs-media-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items:start;
}
.hs-media-card{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px;
}
.hs-media-card h3{
  margin: 0 0 12px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hs-media-frame{
  border-radius: 12px;
  overflow:hidden;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.hs-video{ width:100%; height:auto; display:block; }
.hs-meta{
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.hs-media-mini h3{ font-size: 1.1rem; color:#fff; margin-bottom: 6px; }
.hs-sub{ margin: 0 0 12px; color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.hs-audio{ width:100%; padding: 10px; }

.hs-dots{
  display:flex; justify-content:center; gap: 8px;
  margin-top: 18px;
}
.hs-dots span{
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.22);
}
.hs-dots .on{ background: rgba(255,255,255,0.8); }

/* DESTINATIONS */
.hs-orbit-wrap{
  display:flex;
  justify-content:center;
}
.hs-orbit{
  width: min(900px, 100%);
  height: auto;
  opacity: 0.95;
}

/* MISSIONS */
.hs-missions-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.hs-missions-photo{
  border-radius: 16px;
  min-height: 520px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.2)),
    url("images/hs/missions.jpg") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.12);
}
.hs-missions-panel{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  padding: 22px;
}
.hs-missions-panel h2{
  text-align:left;
  margin-bottom: 12px;
}
.hs-muted{
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}

.hs-tabs{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 14px;
}
.hs-tabs.center{ justify-content:center; }

.hs-tab{
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  padding: 10px 0;
  cursor: pointer;
  text-transform: uppercase;
}
.hs-tab.active{ color:#fff; }

.hs-table{
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hs-row{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hs-key{
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.hs-val{
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
}

.hs-cta{
  display:inline-block;
  margin-top: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.7);
  color:#fff;
  text-decoration:none;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  transition: .3s ease;
}
.hs-cta:hover{ background:#fff; color:#000; border-color:#fff; }

/* SUITS */
.hs-suit-card{
  max-width: 820px;
  margin: 20px auto 0;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 22px;
  text-align:center;
}
.hs-suit-card h3{
  margin: 0 0 8px;
  letter-spacing: 0.16em;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hs-media-grid{ grid-template-columns: 1fr; }
  .hs-missions-grid{ grid-template-columns: 1fr; }
  .hs-missions-photo{ min-height: 360px; }
}


/* ===============================
   JOIN FORM (OrbX)
================================ */

.join-page { background:#000; color:#fff; }

.join-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 18px 80px;
}

.join-head h1{
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.12em;
}

.join-head p{
  max-width: 980px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 0 22px;
}

.join-card{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 26px;
}

.join-block{
  padding: 14px 0 10px;
}

.join-block h2{
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.divider{
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin-bottom: 18px;
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field{ margin-bottom: 16px; }

.field label{
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.field label span{ color: #ff4d4d; }

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 14px 12px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(255,255,255,0.45);
}

.subq{
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.radios .field{
  padding: 10px 0;
}

.radio{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 8px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.radio input{ width: auto; }

.fine{
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.check{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.check input{ width:auto; }

.submit-btn{
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.75);
  background: transparent;
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: .3s ease;
}

.submit-btn:hover{
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 850px){
  .grid-2{ grid-template-columns: 1fr; }
  .join-card{ padding: 18px; }
}
/* ===============================
   JOIN FORM – GLASS + BACKGROUND
================================ */

.join-page{
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.85)
    ),
    url("images/join-bg.jpg"); /* <-- image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color:#fff;
}
.join-card{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.6);
}
.field input,
.field select,
.field textarea{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
}
