
:root {
    --primary: #ea9401;
    --primary-glow: rgba(234, 148, 1, 0.4);
    --secondary: #ffffff;
    --bg-dark: #050505;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(234, 148, 1, 0.2);
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --font-heading: 'inter', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark); /* Fallback */
    overflow-x: hidden;
    line-height: 1.6;
}

/* 3D Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Let clicks pass through */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

/* General Section Styling */
section {
    padding: 6rem 10%;
    min-height: 100vh; /* Minimum height for scroll */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary);
    padding-left: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0; /* For animation */
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
#hero {
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    padding-left: 10%;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 2s 1s forwards ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    opacity: 0;
    transform: translateY(50px);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
    border-color: var(--primary);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2.5rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px var(--primary));
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Careers */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dept-card {
    background: linear-gradient(135deg, rgba(234, 148, 1, 0.05), transparent);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

.dept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.apply-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.apply-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-box {
    margin-bottom: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 150px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    border: 1px dashed #333;
    margin-top: 1rem;
}

.contact-form {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    padding: 3rem 10%;
    background: #000;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
    color: #666;
}

.social-links a {
    color: var(--secondary);
    margin-right: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Parallax Scrolling Classes */
.parallax-fast {
    transform: translateY(0);
    transition: transform 0.1s linear;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .careers-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Hide nav for mobile MVP */
}
#logo-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 8;
}

#logo-orbit img {
  width: 170px;
  filter: drop-shadow(0 0 18px rgba(244, 163, 0, 0.7));
}
/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand span {
  font-size: 22px;
  font-weight: 600;
  color: #000; /* or logo primary color */
  letter-spacing: 0.3px;
}
body {
  margin: 0;
  padding-top: 72px; /* SAME as header height */
}
nav {
  position: relative;
  z-index: 5;
}
/* ===== FIX LOGO ONLY (SAFE PATCH) ===== */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-logo span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Mobile logo fix */
@media (max-width: 768px) {
  .brand-logo img {
    height: 34px;
  }
  .brand-logo span {
    font-size: 1.2rem;
  }
}
/* ===== PREMIUM READABILITY PANEL (OPTIONAL BUT BEST) ===== */
#mission .mission-text{
  display: inline-block;
  max-width: 1000px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(0,0,0,0.45) !important;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

/* ===== FORCE MISSION TEXT VISIBILITY (FIX) ===== */
#mission,
#mission .container,
#mission .mission-text {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

#mission .mission-text {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.75) !important;
}
/* ===== Mission: Premium UI Fix ===== */
#mission {
  text-align: center;
}

#mission .mission-tagline {
  max-width: 720px;
  margin: 0.75rem auto 1.25rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

#mission .mission-text {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
}
/* ===== Mission Cards: Premium UI/UX ===== */
.mission-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.mission-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  will-change: transform;
}

/* premium highlight layer */
.mission-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.20), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events:none;
}

.mission-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.22);
}

.mission-card:hover::before{
  opacity: 1;
}

.card-image{
  height: 170px;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 320ms ease;
}

/* image zoom on hover */
.mission-card:hover .card-image{
  transform: scale(1.06);
}

/* subtle top fade so text feels premium */
.card-image::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}

/* content */
.card-content{
  padding: 18px 18px 22px;
}

.card-content h3{
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: 0.2px;
}

.card-lead{
  margin: 0 0 12px;
  font-weight: 650;
  opacity: 0.92;
  line-height: 1.5;
}

.card-points{
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.75;
  opacity: 0.88;
}

.card-points li{
  margin: 0.35rem 0;
}

/* ===== Scroll reveal animation ===== */
.mission-card.reveal{
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.mission-card.reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 520ms ease, transform 520ms ease;
}

/* keyboard accessibility */
.mission-card:focus-within{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

/* mobile tuning */
@media (max-width: 768px){
  .mission-card:hover{ transform: translateY(-4px); }
  .card-image{ height: 150px; }
}
.service-lead{ margin: .6rem 0 0.7rem; line-height: 1.6; font-weight: 600; opacity: .92; }
.service-points{ margin: 0; padding-left: 1.1rem; line-height: 1.7; opacity: .9; }
.service-points li{ margin: .35rem 0; }
/* ===== Services Cards: Premium UI/UX ===== */
.policy-intro{
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
  opacity: 0.9;
}

.policy-link{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}

.policy-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.policy-meta{
  opacity: 0.7;
  font-size: 0.9rem;
}
.apply-btn{
  display: inline-block;
  text-decoration: none;
}

/* ===== Contact: Premium Client Section ===== */
#contact{
  padding: 4.5rem 1rem;
}

.contact-trust{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
  max-width: 1100px;
  margin: 1rem auto 2rem;
}

.trust-item{
  padding: .75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  text-align: center;
  font-weight: 650;
  opacity: 0.95;
}

.contact-layout{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

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

.contact-info{
  display: grid;
  gap: 1rem;
}

.location-box,
.contact-form{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}

.location-box{
  padding: 1.1rem 1.2rem 1.2rem;
}

.location-box h3{
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  font-weight: 750;
}

.location-box p{
  margin: 0 0 0.9rem;
  opacity: .9;
  line-height: 1.6;
}

.map-placeholder{
  height: 150px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  font-weight: 650;
  opacity: 0.9;
}

.contact-details{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  padding: 1.1rem 1.2rem;
}

.contact-details p{
  margin: .25rem 0;
  line-height: 1.6;
}

.c-icn{ margin-right: .35rem; }

.contact-note{
  margin-top: .8rem !important;
  opacity: .9;
}

/* Form */
.contact-form{
  padding: 1.1rem 1.2rem 1.2rem;
}

.form-head h3{
  margin: 0 0 .35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.form-head p{
  margin: 0 0 1rem;
  opacity: .9;
  line-height: 1.6;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

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

.form-group label{
  display: block;
  font-weight: 650;
  margin: 0 0 .35rem;
  opacity: .95;
}

.form-group input,
.form-group textarea{
  width: 100%;
  border-radius: 12px;
  padding: .8rem .85rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: inherit;
  outline: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

.submit-btn{
  width: 100%;
  margin-top: .9rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.submit-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.14);
}

.form-foot{
  margin: .85rem 0 0;
  font-size: .9rem;
  opacity: .75;
  line-height: 1.6;
}

/* Toast (design-only) */
.contact-toast{
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.contact-toast.show{
  opacity: 1;
  transform: translateY(0);
}

/* ===== GOLD LUXURY TRUST BUTTONS ===== */
.contact-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin: 2rem auto 2.8rem;
}

.trust-item{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: .35px;
  color: #fff;
  cursor: default;

  background:
    linear-gradient(180deg, rgba(255,215,130,0.20), rgba(255,215,130,0.04)),
    radial-gradient(120% 120% at 30% 20%, rgba(255,200,90,0.35), transparent 60%);

  border: 1px solid rgba(255,200,90,0.45);

  box-shadow:
    inset 0 1px 0 rgba(255,230,170,0.35),
    0 18px 55px rgba(255,180,60,0.25),
    0 0 45px rgba(255,170,60,0.35);

  backdrop-filter: blur(14px);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Hover lift */
.trust-item:hover{
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,240,190,0.5),
    0 28px 80px rgba(255,180,60,0.45),
    0 0 65px rgba(255,190,80,0.55);
}

/* GOLDEN LIGHT RING */
.trust-item::after{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:999px;
  background: linear-gradient(
    120deg,
    rgba(255,200,90,0),
    rgba(255,215,120,0.9),
    rgba(255,200,90,0)
  );
  opacity:0;
  filter: blur(14px);
  transition: opacity .3s ease;
}

.trust-item:hover::after{
  opacity:1;
}

/* GOLDEN CORE DOT */
.trust-dot{
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff6d8, #ffb703 55%, #cc8a00 100%);
  box-shadow:
    0 0 0 5px rgba(255,200,90,0.25),
    0 0 22px rgba(255,185,60,0.9),
    0 0 45px rgba(255,170,40,0.8);
  animation: goldPulse 2.8s ease-in-out infinite;
}

/* GOLDEN PULSE */
@keyframes goldPulse{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(1.35); opacity:.75; }
}
/* ===== Footer ===== */
.site-footer{
  padding: 2.2rem 1rem 1.6rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.social-links{
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1rem;
}

.social-icon{
  width: 26px;
  height: 26px;
  fill: rgba(255,255,255,0.85);
  transition: transform .2s ease, fill .2s ease, filter .2s ease;
}

.social-links a:hover .social-icon{
  fill: #ffcc66; /* gold highlight */
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255,200,90,0.6));
}

.footer-copy{
  font-size: 0.9rem;
  opacity: 0.75;
}
/* ===== Social Icons: Brand Accurate ===== */
.social-icon{
  width: 26px;
  height: 26px;
  fill: rgba(255,255,255,0.75);
  transition: transform .2s ease, fill .2s ease, filter .2s ease;
}

/* LinkedIn */
.social-links a[aria-label="LinkedIn"]:hover .social-icon{
  fill: #0A66C2; /* Official LinkedIn Blue */
  filter: drop-shadow(0 0 8px rgba(10,102,194,0.6));
  transform: translateY(-3px) scale(1.08);
}

/* Instagram */
.social-links a[aria-label="Instagram"]:hover .social-icon{
  fill: url(#ig-gradient);
  filter: drop-shadow(0 0 10px rgba(225,48,108,0.7));
  transform: translateY(-3px) scale(1.08);
}

/* X (Twitter) */
.social-links a[aria-label="X (Twitter)"]:hover .social-icon{
  fill: #000000; /* X is pure black */
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
  transform: translateY(-3px) scale(1.08);
}
/* ===== Social Icons: Brand Colors (Always ON) ===== */
.social-icon{
  width: 26px;
  height: 26px;
  transition: transform .2s ease, filter .2s ease;
}

/* LinkedIn - Blue always */
.social-links a[aria-label="LinkedIn"] .social-icon{
  fill: #0A66C2;
}

/* Instagram - Gradient always */
.social-links a[aria-label="Instagram"] .social-icon{
  fill: url(#ig-gradient);
}

/* X (Twitter) - Black always */
.social-links a[aria-label="X (Twitter)"] .social-icon{
  fill: #000000;
}

/* Hover effect (no color change) */
.social-links a:hover .social-icon{
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
}
/* X (Twitter) — visible on dark background */
.social-links a[aria-label="X (Twitter)"] .social-icon{
  fill: #ffffff; /* Official usage for dark UI */
}
.social-links a[aria-label="X (Twitter)"] .social-icon{
  fill: #ffffff;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}
/* ===== Footer Copyright – Logo Gold Match ===== */
.footer-copy{
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;

  /* Gold gradient matching logo */
  background: linear-gradient(
    180deg,
    #fff2c2 0%,
    #ffd36a 35%,
    #ffb703 65%,
    #c88a00 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Subtle premium depth */
  text-shadow:
    0 1px 1px rgba(255,215,130,0.25),
    0 6px 18px rgba(255,180,60,0.25);
}
/* ===== Mission Tagline – Visibility Fix ===== */
#mission .mission-tagline{
  max-width: 820px;
  margin: 0.9rem auto 1.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;

  /* High contrast on dark background */
  color: #ffffff;

  /* Subtle clarity + premium depth */
  text-shadow:
    0 1px 2px rgba(0,0,0,0.6),
    0 8px 22px rgba(0,0,0,0.45);
}


html {
  scroll-behavior: smooth;
}
/* ===== Pro Reveal + Hover (Cards) ===== */
:root{ --ease-out: cubic-bezier(.22,1,.36,1); }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Reveal on scroll */
.reveal{
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Premium hover */
.ui-hover{
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  will-change: transform;
}
.ui-hover:hover{
  transform: translateY(-8px);
}
/* ===== FORCE Mission Card Animations (Override Safe) ===== */
.mission-card.reveal{
  opacity: 0 !important;
  transform: translateY(18px) scale(0.985) !important;
  transition: opacity 650ms cubic-bezier(.22,1,.36,1), transform 650ms cubic-bezier(.22,1,.36,1) !important;
  will-change: transform, opacity;
}

.mission-card.reveal.is-visible{
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Premium hover */
.mission-card.ui-hover{
  transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms cubic-bezier(.22,1,.36,1) !important;
}
.mission-card.ui-hover:hover{
  transform: translateY(-8px) scale(1.01) !important;
}

/* ===== Mission Cards: CSS-only entrance animation (NO JS) ===== */
.mission-grid.animate-cards .mission-card{
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: cardIn 700ms cubic-bezier(.22,1,.36,1) forwards;
}

.mission-grid.animate-cards .mission-card:nth-child(1){ animation-delay: 0ms; }
.mission-grid.animate-cards .mission-card:nth-child(2){ animation-delay: 140ms; }
.mission-grid.animate-cards .mission-card:nth-child(3){ animation-delay: 280ms; }
.mission-grid.animate-cards .mission-card:nth-child(4){ animation-delay: 420ms; }

@keyframes cardIn{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Premium hover (works regardless of entrance animation) */
.mission-grid.animate-cards .mission-card{
  transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.mission-grid.animate-cards .mission-card:hover{
  transform: translateY(-8px) scale(1.01);
}
/* ===== Mission Cards: SAFE entrance animation ===== */
.mission-card{
  animation: missionCardFadeUp 700ms cubic-bezier(.22,1,.36,1) both;
}

/* Stagger using nth-child (does NOT affect grid) */
.mission-card:nth-child(1){ animation-delay: 0ms; }
.mission-card:nth-child(2){ animation-delay: 140ms; }
.mission-card:nth-child(3){ animation-delay: 280ms; }
.mission-card:nth-child(4){ animation-delay: 420ms; }

/* Keyframes */
@keyframes missionCardFadeUp{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium hover (also SAFE) */
.mission-card{
  transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.mission-card:hover{
  transform: translateY(-8px);
}
.mission-card .card-image::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 35%,
    rgba(255,215,140,0.08) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-40%);
  animation: shimmer 4.5s cubic-bezier(.22,1,.36,1) infinite;
  pointer-events:none;
}

@keyframes shimmer{
  0%{ transform: translateX(-45%); opacity: 0; }
  20%{ opacity: 1; }
  60%{ opacity: 1; }
  100%{ transform: translateX(45%); opacity: 0; }
}

/* ===== Tool Orbit Section ===== */
.tool-orbit{
  padding: 5rem 1rem;
  text-align: center;
}

.orbit-subtitle{
  max-width: 900px;
  margin: .7rem auto 2rem;
  opacity: .9;
  line-height: 1.7;
}

.orbit-stage{
  position: relative;
  width: min(760px, 96vw);
  aspect-ratio: 16/9;         /* wide like your screenshot */
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
}

/* Optional: if your page already has a background, remove this block */
.orbit-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(120% 120% at 50% 10%, rgba(255,190,80,0.08), transparent 55%);
  pointer-events:none;
}

.orbit-core{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  z-index: 4;
}

.core-badge{
  padding: .95rem 1.2rem;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  color:#fff;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,200,90,0.35), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,200,90,0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), 0 0 55px rgba(255,180,60,0.22);
  backdrop-filter: blur(12px);
}

.core-sub{
  margin-top: .55rem;
  font-weight: 700;
  opacity: .85;
}

/* Rings */
.orbit-ring{
  position:absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  z-index: 2;
}

/* Draw circle lines (rings) */
.orbit-ring::before{
  content:"";
  position:absolute;
  left: calc(-1 * var(--r));
  top: calc(-1 * var(--r));
  width: calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* Rotation */
.orbit-ring{
  animation: spin var(--dur) linear infinite;
  transform-origin: center;
}
.orbit-ring[data-reverse="1"]{ animation-direction: reverse; }

@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Icons */
.o-icon{
  position:absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display:grid;
  place-items:center;
  box-shadow: 0 16px 45px rgba(0,0,0,0.45);
  transform: translate(-50%, -50%);
}

.o-icon img{
  width: 28px;
  height: 28px;
}

/* Premium hover */
.o-icon:hover{
  box-shadow: 0 22px 70px rgba(0,0,0,0.65), 0 0 45px rgba(255,190,80,0.30);
  transform: translate(-50%, -50%) scale(1.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.orbit-stage{
  position: relative;
  width: min(720px, 92vw);
  aspect-ratio: 1 / 1;          /* ✅ circle container */
  margin: 0 auto;
  border-radius: 50%;           /* ✅ true circle */
  overflow: visible;            /* ✅ don't clip rings/icons */
  display: grid;
  place-items: center;
}
/* ===== Orbit Center Logo ===== */
.orbit-center-logo{
  width: 90px;              /* adjust if needed: 100–140px */
  height: auto;
  border-radius: 18px;
  background: #f5b400;       /* matches your gold logo tone */
  padding: 12px;
  box-shadow:
    0 18px 60px rgba(0,0,0,0.55),
    0 0 55px rgba(255,180,60,0.45);
}
