* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/*#00ffff*/
body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Audiowide', sans-serif;
  
}
/*#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FF5C00;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transition: transform 0.1s ease;
}*/
/*CURSOR*/
#scanner-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #FF5C00;
  border-radius: 50%;
  background: rgba(255, 94, 0, 0.1);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 8px #FF5C00, 0 0 15px #FF5C00 inset;
  animation: scannerPulse 1.6s infinite ease-in-out;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

@keyframes scannerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

/*CURSOR*/


.navbar{
  display: flex;
  align-items: center;
  /*background: rgba(5, 10, 15, 0.831);*/
  background: linear-gradient(to bottom, #090d16, #05070d);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /*background-image: url(../assets/images/nav-bg.png);*/
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 125, 45, 0.5); /* soft orange hologram line */  box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);

}
.logo {
  display: flex;
  position: absolute;
  align-items: center;
  gap: 12px;
  color: #FF7E1B;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  left: 25px;
  top: 10px;
  z-index: 1000;
}

.logo img {
  height: 83px;
  width: 150px;
}
nav li{
  display: inline-block;
  padding: 10px;
  margin: 0 auto;
  font-size: 20px;
   list-style: none;
   /*backdrop-filter: blur(6px);*/
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  color: #FF7E1B;;
  text-decoration: none;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.nav-links a:hover {
  color: #FF7E1B;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #FF7E1B;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

:root {
  --accent: #ff7e1b; /* your neon orange */
}


/* CYBERPUNK SEPARATOR BAR */
:root {
  --accent: #ff7e1b;
}

/* main tech bar */
.navbar::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 80px;
  bottom: -6px;
  height: 2px;

  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 126, 27, 0.7);

  clip-path: polygon(
    0% 0%,
    78% 0%,
    100% 50%,
    78% 100%,
    0% 100%,
    4% 50%
  );
}

/* tech node on the right */
.navbar::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -9px;

  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px rgba(255, 126, 27, 0.6);
  background: rgba(0, 0, 0, 0.7);
}
.nav-tech-layer {
  pointer-events: none;
  position: absolute;
  left: 40px;
  right: 80px;
  bottom: -13px;
  height: 14px;
}

/* thin upper line segment */
.nav-tech-layer::before {
  content: "";
  position: absolute;
  left: 60px;
  width: 40%;
  top: 4px;
  height: 2px;

  background: rgba(255, 152, 60, 0.8);
  box-shadow: 0 0 8px rgba(255, 126, 27, 0.5);

  /* squarish but angled */
  clip-path: polygon(
    0% 0%,
    95% 0%,
    100% 40%,
    95% 100%,
    6% 100%,
    0% 60%
  );
}

/* lower “chunk” with a notch */
.nav-tech-layer::after {
  content: "";
  position: absolute;
  right: 110px;
  bottom: 0;
  width: 22%;
  height: 3px;

  background: var(--accent);
  opacity: 0.85;

  clip-path: polygon(
    0% 0%,
    80% 0%,
    100% 60%,
    82% 100%,
    18% 100%,
    0% 40%
  );
}




/*HAMBURGER MENU*/

/* HAMBURGER MENU END*/


.hero {
  background-image: url(../assets/images/command-deck.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
}


.hero h1 {
   color: #e6e6e6;
   margin: 0;
  font-size: 2.2rem;
  line-height: 0.8; /* Optional: adjust as needed */
  animation: hudFlicker 4s infinite steps(2, start);
}
.h1-span{
  color:#FF7E1B;
}
.hero-btn{
  margin-top: 75px;
}
.glitch {
  position: relative;
  color: #FF7E1B;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 2px #FF7E1B;
  overflow: hidden;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #FF7E1B;
  background: transparent;
  clip: rect(0, 900px, 0, 0); /* hidden initially */
}

.glitch::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
  color: #00FFFF;
  opacity: 0.6;
}

.glitch::after {
  animation: glitchBottom 1.8s infinite linear alternate-reverse;
  color: #FF00FF;
  opacity: 0.6;
}

@keyframes glitchTop {
  0%   { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
  10%  { clip: rect(2px, 9999px, 10px, 0); transform: translate(-1px, -1px); }
  20%  { clip: rect(5px, 9999px, 15px, 0); transform: translate(1px, -2px); }
  30%  { clip: rect(8px, 9999px, 20px, 0); transform: translate(0px, 0px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

@keyframes glitchBottom {
  0%   { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
  10%  { clip: rect(15px, 9999px, 25px, 0); transform: translate(1px, 1px); }
  20%  { clip: rect(20px, 9999px, 30px, 0); transform: translate(-2px, 1px); }
  30%  { clip: rect(25px, 9999px, 35px, 0); transform: translate(0px, 0px); }
  100% { clip: rect(0, 9999px, 0, 0); transform: translate(0, 0); }
}

/*GLITCH UPDATE*/

/* ====== FULLSCREEN GLITCH OVERLAY ====== */

.screen-glitch {
  position: fixed;
  inset: 0;
  background: #000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  overflow: hidden;
}

/* show when active */
.screen-glitch.active {
  opacity: 1;
  visibility: visible;
}

/* layers for chromatic / slice glitches */
.glitch-layer {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* base noise texture */
.glitch-layer::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(0,255,255,0.08) 0, transparent 40%),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.07) 0,
      rgba(255,255,255,0.07) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: 200% 200%;
}

/* different tints per layer */
.layer1 { filter: hue-rotate(10deg); }
.layer2 { filter: hue-rotate(-40deg); opacity: 0.4; }
.layer3 { filter: hue-rotate(120deg); opacity: 0.3; }

/* glitch animations */
.screen-glitch.active .layer1::before {
  animation: glitch-move-1 0.6s steps(2, end) infinite;
}

.screen-glitch.active .layer2::before {
  animation: glitch-move-2 0.5s steps(3, end) infinite;
}

.screen-glitch.active .layer3::before {
  animation: glitch-move-3 0.7s steps(4, end) infinite;
}

/* subtle vertical offset / tearing */
@keyframes glitch-move-1 {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-10px, 3px); }
  40%  { transform: translate(6px, -4px); }
  60%  { transform: translate(-4px, 1px); }
  80%  { transform: translate(3px, -2px); }
  100% { transform: translate(0, 0); }
}

@keyframes glitch-move-2 {
  0%   { clip-path: inset(0 0 0 0); }
  25%  { clip-path: inset(10% 0 40% 0); }
  50%  { clip-path: inset(50% 0 15% 0); }
  75%  { clip-path: inset(20% 0 30% 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes glitch-move-3 {
  0%   { transform: scale(1.02); opacity: 0.4; }
  50%  { transform: scale(1.05); opacity: 0.2; }
  100% { transform: scale(1.0); opacity: 0.4; }
}

/* quick fade-in/out */
.screen-glitch.active {
  animation: glitch-fade 0.95s ease-out forwards;
}

@keyframes glitch-fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}



.cursor {
  color: #FF7E1B; /* or inherit */
  animation: blinkCursor 1.1s steps(2) infinite;
}
.cursor_subSection {
  color: #000000; /* or inherit */
  animation: blinkCursor 1.1s steps(2) infinite;
}
.cursorWhite {
  color: #e6e6e6; /* or inherit */
  animation: blinkCursor 1.1s steps(2) infinite;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}


.hero-content {
  text-align: center;
  margin-top: -50px;
  animation: heroIntro 1.8s ease-out both;
}

@keyframes heroIntro {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hud-button {
  display: inline-block;
  padding: 14px 36px;
  /*margin-top: 75px;*/
  color: #FF7E1B;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(145deg, #10131c, #0c0f18);
  border: 2px solid #FF7E1B;
  clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.3);
}

.hud-button:hover {
  background: #FF7E1B;
  color: #0A0F1A;
  box-shadow: 0 0 12px #FF7E1B, 0 0 24px #FF7E1B;
  transform: translateY(-2px);
}

.hud-button::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px dashed rgba(255, 92, 0, 0.4);
  clip-path: inherit;
  pointer-events: none;
}

/* HERO BTN GLITCH EFFECT */
@keyframes screenGlitch {
  0% {
    background: inherit;
    filter: none;
  }
  10% {
    filter: contrast(200%) brightness(150%) grayscale(1);
  }
  20% {
    clip-path: inset(30% 0 20% 0);
  }
  30% {
    clip-path: inset(5% 0 50% 0);
    filter: hue-rotate(45deg);
  }
  40% {
    clip-path: inset(40% 0 10% 0);
    filter: sepia(1);
  }
  50%, 100% {
    clip-path: none;
    filter: none;
  }
}

.glitch-effect.triggered {
  animation: screenGlitch 0.5s ease-in-out;
}
/* HERO BTN GLITCH EFFECT END*/




@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px #FF7E1B);
  }
  50% {
    filter: drop-shadow(0 0 20px #FF7E1B);
  
}

}

/* SUB-SECTION1 */
/* SUB-SECTION1 — HUD STYLE */
.sub-section1 {
  position: relative;
  padding: 40px 0;
  text-align: center;

  /* Your existing background/settings */
  background: rgba(5, 10, 15, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* HUD grid effect */
  overflow: hidden;
}

.sub-section1::before {
  /* TOP HUD LINE */
  content: "";
  position: absolute;
  top: 14px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #ff7e1b,
    #ff7e1b,
    transparent
  );
  box-shadow: 0 0 12px rgba(255, 126, 27, 0.4);
  opacity: 0.8;
}

.sub-section1::after {
  /* BOTTOM TECH SHAPES */
  content: "";
  position: absolute;
  bottom: 14px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #ff7e1b;
  box-shadow: 0 0 10px rgba(255, 126, 27, 0.4);

  /* angled cyberpunk shape */
  clip-path: polygon(
    0 0,
    85% 0,
    100% 100%,
    15% 100%
  );
}

/* HUD heading text */
.sub-h1 {
  position: relative;
  font-family: "Audiowide", sans-serif;
  font-size: 16px;
  color: #e9e9e9;
  letter-spacing: 0.05em;

  padding: 14px 32px;
  display: inline-block;

  background: rgba(2, 6, 10, 0.7);
  border: 1px solid rgba(255, 126, 27, 0.35);

  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

/* Brackets left and right */
.sub-h1::before,
.sub-h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #ff7e1b;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(255, 126, 27, 0.6);
}

.sub-h1::before {
  right: 100%;
  margin-right: 12px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.sub-h1::after {
  left: 100%;
  margin-left: 12px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* ----------------------------------------- */
/* Optional side HUD nodes                  */
/* ----------------------------------------- */
.hud-dot {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ff7e1b;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 126, 27, 0.8);
}

.hud-dot.left {
  left: 20px;
}

.hud-dot.right {
  right: 20px;
}

/* SUB-SECTION1 END*/

:root {
  --accent: #ff7e1b;
  --panel-bg: rgba(5, 10, 15, 0.9);
}

/* MAIN FRAME CONTAINER */
.sub-section2.hud-frame {
  position: relative;
  margin: 0px 0;
  padding: 40px 20px;
  text-align: center;

  background: var(--panel-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 2px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

/* HEADING INSIDE THE FRAME */
.sub-section2 .sub-h1 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #f4f4f4;

  background: rgba(2, 6, 10, 0.85);
  border: 1px solid rgba(255, 126, 27, 0.4);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
}

/* SMALL STRAIGHT BRACKETS ♥ */
.sub-section2 .sub-h1::before,
.sub-section2 .sub-h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 3px;
  transform: translateY(-50%);
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 126, 27, 0.5);
}

.sub-section2 .sub-h1::before {
  right: 100%;
  margin-right: 10px;
}

.sub-section2 .sub-h1::after {
  left: 100%;
  margin-left: 10px;
}

/* HUD CORNER BLOCKS (ALL 90°) */
.hud-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent);
}

/* top-left */
.hud-corner.tl {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

/* top-right */
.hud-corner.tr {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

/* bottom-left */
.hud-corner.bl {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

/* bottom-right */
.hud-corner.br {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

/* SIDE ACCENT BARS */
.hud-accent {
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 126, 27, 0.4);
}

/* left accent in the middle of the frame */
.hud-accent.left {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* right accent in the middle of the frame */
.hud-accent.right {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}


/* ABOUT */
#about {
  scroll-margin-top: 100px; /* adjust based on your header height */
}

.about .row{
  display: flex;
  flex-direction: row;
}
.about-left {
  flex: 1;
  background-image: url(../assets/images/wall-pannel2.png);
  background-size: cover;
  background-position: center;
  display: column;
  flex-direction: column;
  text-align: center;
  align-items: flex-end;
  justify-content: center;
  padding: 60px;
}

.about h2{
  color: #e6e6e6;
}
.about-right {
  flex: 1;
  padding: 48px 56px;
  color: #e6e6e6;
  background: rgba(10, 10, 10, 0.9);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Subtle grid / panel feel like the legal console */
.about-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
}

/* Orange frame lines like a console window */
.about-right::after {
  content: "";
  position: absolute;
  
  /*
  inset: 18px 24px;
  border: 1px solid rgba(255, 126, 27, 0.7);
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(255, 126, 27, 0.25);*/
  pointer-events: none;
}

/* Header bar – same idea as “LEGAL CONSOLE” */
.hud-panel-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: "Audiowide", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb15a;
  margin-bottom: 8px;
  z-index: 1;
}

.hud-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hud-tag::before {
  content: "---";
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, #ff7e1b, transparent);
}

.hud-status {
  font-size: 11px;
  color: #9da3b5;
}

/* Heading & text */
.about-heading {
  position: relative;
  z-index: 1;
  margin: 0;
}

.about-text {
  position: relative;
  z-index: 1;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #dde2f0;
}

.about-emphasis {
  margin-top: 4px;
  font-size: 15px;
  color: #ffb15a;
}




.about-text {
  font-family: 'Lexend Giga', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}
/* ABOUT END */

/* MODAL POPUP */
  .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 22, 0.95);
  backdrop-filter: blur(8px);
  overflow: auto;
}

.modal-content {
  background-color: #111820;
  margin: 10% auto;
  padding: 40px;
  border: 1px solid #FF7E1B;
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  color: #e6e6e6;
  font-family: 'Audiowide', sans-serif;
  position: relative;
  box-shadow: 0 0 10px color: #FF7E1B;
;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #FF7E1B;
  font-size: 30px;
  cursor: pointer;
}


/* MODAL POPUP END */

/* ========== SERVICES SECTION ========== */


.services {
  background:
    radial-gradient(circle at top, rgba(255, 126, 27, 0.05), transparent 60%),
    rgba(5, 10, 15, 0.96);
  border-top: 1px solid rgba(255, 126, 27, 0.3);
  border-bottom: 1px solid rgba(255, 126, 27, 0.3);
  padding: 80px 40px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* subtle HUD grid behind everything */
.services-inner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 126, 27, 0.18);
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 126, 27, 0.07) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.07) 96%);
  background-size: 80px 80px;
  mix-blend-mode: screen;
}

/* HEADER */

.services-header {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.services-tag {
  font-family: "Audiowide", sans-serif;
  font-size: 0.9rem;
  color: #ff7e1b;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-intro {
  margin-top: 10px;
  color: #e6e6e6;
  font-family: 'Lexend Giga', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 520px;
}

/* GRID – explicit breakpoints so layout is 1 / 2 / 3 columns */

.services-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr)); /* mobile: 1 column */
  align-items: stretch;
  
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* tablet: 2 columns */
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* desktop: 3 columns */
  }
}

/* SERVICE CARD */



.service-card {
  position: relative;
  padding: 22px 22px 24px;
  background: linear-gradient(
    135deg,
    rgba(10, 13, 18, 0.98),
    rgba(9, 9, 12, 0.98)
  );
  border: 1px solid rgba(255, 126, 27, 0.35);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(255, 126, 27, 0.12);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

/* corner cuts */
.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 126, 27, 0.6);
}

.service-card::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.service-card::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* header row */

.service-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.service-label {
  font-family: "Audiowide", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 126, 27, 0.8);
  letter-spacing: 0.2em;
}

.service-title {
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
  color: #f5f5f5;
  text-transform: uppercase;
  margin-left: 8px;
}

/* content */

.service-text {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d9d9d9;
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #bfbfbf;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}

.service-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7e1b;
  font-size: 0.75rem;
}

/* hover state */

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 148, 54, 0.9);
  box-shadow:
    0 0 22px rgba(255, 126, 27, 0.25),
    0 0 30px rgba(0, 0, 0, 0.9);
}

/* CTA */

.services-cta {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  text-align: center;
}

.services-cta .hud-button {
  font-size: 0.9rem;
}

/* responsive padding tweaks */

@media (max-width: 900px) {
  .services {
    padding: 60px 20px;
  }
  .services-inner::before {
    inset: 14px;
  }
}

@media (max-width: 600px) {
  .service-card {
    padding: 18px 16px 20px;
  }
  .service-title {
    font-size: 0.95rem;
  }
}

/* ========== SERVICES SECTION END ========== */


/* ================================= */
/* 🛰 CONFIGURE SECTION STYLING      */
/* ================================= */

.configure-section {
  padding: 60px 20px;
  background: #0b0e13;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* HEADER PANEL ------------------------------------ */

.configure-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.configure-header h2{
  font-family: 'Audiowide', sans-serif;
  font-size: 24px;
  color: #e6e6e6;
  margin-bottom: 12px;
}

.hud-title {
  color: #ff8c00;
  letter-spacing: 2px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* branching circuit container */
.circuit-branch {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
}

.configure-intro{
  margin-top: 10px;
  color: #e6e6e6;
  font-family: 'Lexend Giga', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}

/* ===== CONFIGURE CARDS LAYOUT ===== */

.configure-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* 👉 CARD LOGIC — IMPORTANT TRICK */
.hud-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;   /* keeps footer down */
  background: #13161f;
  box-shadow: inset 0 0 20px rgba(255,140,0,.12);
  border: 1px solid #ff8c00;
  border-radius: 12px;
  width: 230px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card-content {
  flex:1;                         /* variable part grows */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap:10px;
}
.card-content button {
  margin-top: auto;
}
.card-content .nasa-proceed {
  margin-top: auto;
  align-self: center;
}
/* orange decorative corners */
.hud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #ff8c00;

  clip-path: polygon(
    0 0, 40px 0, 0 40px,
    0 100%, 40px 100%, 0 calc(100% - 40px),
    100% 100%, 100% calc(100% - 40px), calc(100% - 40px) 100%,
    100% 0, calc(100% - 40px) 0, 100% 40px
  );

  pointer-events: none;
}

/* typography — matching your system */
.hud-card h3 {
  padding: 16px;
  margin: 0;
  font-size: 1.1rem;
  font-family: 'Audiowide', sans-serif;
  border-bottom: 1px solid #ff8c00;
}

.hud-card p {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #bfbfbf;
  text-align: left;
}

/* tags */
.hud-tags {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.hud-tags li {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 6px;
  padding-left: 12px;
  border-left: 2px solid #ff8c00;
  text-align: left;
}

/* ===== PROCEED BUTTON ===== */

.nasa-proceed {
  font-family: 'Audiowide', sans-serif;
  background: rgba(255,140,0,0.12);
  border: 1px solid #ff8c00;
  color: #ff8c00;
  padding: 8px 30px;
  letter-spacing: 3px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255,140,0,0.4);
  transition: all .3s ease;
}

/* cut corners */
.nasa-proceed::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,140,0,0.6);
  border-radius: 20px;

  clip-path: polygon(
    0 0, 16px 0, 0 16px,
    0 100%, 16px 100%, 0 calc(100% - 16px),
    100% 100%, 100% calc(100% - 16px), calc(100% - 16px) 100%,
    100% 0, calc(100% - 16px) 0, 100% 16px
  );

  pointer-events: none;
}

/* hover */
.nasa-proceed:hover {
  background: rgba(255,140,0,0.26);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,140,0,0.9);
  transform: translateY(-2px) scale(1.05);
}

/* footer container — 👉 this is key */
.card-footer {
}

/* pulse */
@keyframes proceed-beam {
  0%   { box-shadow: 0 0 6px rgba(255,140,0,.2); }
  50%  { box-shadow: 0 0 18px rgba(255,140,0,.8); }
  100% { box-shadow: 0 0 6px rgba(255,140,0,.2); }
}

.nasa-proceed {
  animation: proceed-beam 3s infinite ease-in-out;
}

/* optional soft bg gradient so not plain */
.hud-card {
  background-image: linear-gradient(rgba(255,140,0,.06), rgba(255,140,0,.02));
}

/*-- CONFIGURE SECTION --*/

/* parent behaves as column flex -------------------- */
.orbit-choice-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #13161f;
  background-image: none;
  box-shadow: inset 0 0 20px rgba(255,140,0,.12);
  border: 1px solid #ff8c00;
  border-radius: 12px;
  width: 230px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-image: linear-gradient(rgba(255,140,0,.06), rgba(255,140,0,.02));
}
.orbit-choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #ff8c00;

  clip-path: polygon(
    0 0, 40px 0, 0 40px,
    0 100%, 40px 100%, 0 calc(100% - 40px),
    100% 100%, 100% calc(100% - 40px), calc(100% - 40px) 100%,
    100% 0, calc(100% - 40px) 0, 100% 40px
  );

  pointer-events: none;
}

/* upper header panel ------------------------------- */
.card-upper{
  padding:14px;
  border-bottom:1px solid #ff8c00;
}

/* BODY GROWS BUT BTN STAYS ------------------------- */
.card-body{
  flex:1;                         
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-start;     
  padding:16px;
  gap:10px;
}
.card-body::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 126, 27, 0.18);
  pointer-events: none;
  opacity: 0.7;
  background-image: linear-gradient(transparent 95%, rgba(255, 126, 27, 0.07) 96%), linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.07) 96%);
  background-size: 30px 30px;
  mix-blend-mode: screen;
}

/* typography -------------------------------------- */
.audiowide-heading{
  font-family:'Audiowide',sans-serif;
  font-size:1.05rem;
  letter-spacing:2px;
  color:#f2f2f2;
}

.lexend-text{
  font-family:"Lexend", system-ui, -apple-system,
               BlinkMacSystemFont,"Segoe UI",sans-serif;

  font-size:0.86rem;
  line-height:1.6;
  color:#bfbfbf;

  margin:0;
}

/* proceed button pinned to bottom ----------------- */
.orbit-proceed-btn{
  position: relative;
  font-family: 'Audiowide', sans-serif;
  background: rgba(255,140,0,0.12);
  border: 1px solid #ff8c00;        /* fallback border */
  color: #ff8c00;
  padding: 8px 30px;
  letter-spacing: 3px;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255,140,0,.5);
  transition: all .3s ease;
  margin-top: 10px;
}

.orbit-proceed-btn:hover{
  background:rgba(255,140,0,.28);
  color:#fff;
  box-shadow:0 0 18px rgba(255,140,0,.9);
  transform:translateY(-2px) scale(1.03);
}

/* optional corners decoration --------------------- */
.orbit-proceed-btn::before{
  content: "";
  position: absolute;
  inset: 0;

  border: 2px solid rgba(255,140,0,0.6);
  border-radius: 22px;

  /* cut corners */
  clip-path: polygon(
    0 0, 14px 0, 0 14px,
    0 100%, 14px 100%, 0 calc(100% - 14px),

    100% 100%, 100% calc(100% - 14px), calc(100% - 14px) 100%,
    100% 0, calc(100% - 14px) 0, 100% 14px
  );

  pointer-events: none;
}

/* pulse */
@keyframes proceed-beam {
  0%   { box-shadow: 0 0 6px rgba(255,140,0,.2); }
  50%  { box-shadow: 0 0 18px rgba(255,140,0,.8); }
  100% { box-shadow: 0 0 6px rgba(255,140,0,.2); }
}

.orbit-proceed-btn {
  animation: proceed-beam 3s infinite ease-in-out;
}


/* configure section*/
@media (max-width: 768px) {
  .orbit-choice-card {
    min-height: 215px;
    width: 300px;
  }

  .orbit-choice-card .card-upper {
    padding: 10px;
  }
  .orbit-choice-card p {
    line-height: 1.4;
  }
}


/*-- CONFIGURE SECTION END --*/


/* PROJECTS */
#projects {
  scroll-margin-top: 100px;
}

.projects {
  position: relative;
  background-image: url(../assets/images/hangar.png);
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 80px 24px;
  color: #e6e6e6;
  line-height: 1.9;
  overflow: hidden;
}

/* subtle dark overlay for readability */
.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.112);
  pointer-events: none;
}

.projects-inner {
  position: relative; /* stays above overlay */
  width: 100%;
  max-width: 900px;   /* <- this is the “shrink width” */
  margin: 0 auto;
}

.projects p {
  margin: 14px auto 0;
  font-family: lexend giga, sans-serif;
  max-width: 760px; /* tighter text width for readability */
}

.projects-btn {
  margin-top: 35px;
  margin-bottom: 20px;
}

/* Mobile tweak */
@media (max-width: 600px) {
  .projects { padding: 64px 18px; }
  .projects p { line-height: 1.75; }
}
/* PROJECTS END*/

.data-log {
  font-family: 'Share Tech Mono', monospace;
  background-color: #f8f8f8;
  color: #222;
  padding: 30px;
  font-size: 0.95rem;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.data-terminal {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 30px;
  background: #0b0f1a;
  background-image: url(../assets/images/contact-pannel.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid #FF7E1B;
  box-shadow: 0 0 10px #FF7E1B;
  font-family: 'Audiowide', sans-serif;
  color: #e6e6e6;
  font-size: 10px;
  border-radius: 6px;
  position: relative;
}

.terminal-header {
  color: #FF7E1B;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
}

.log-output {
  list-style: none;
  padding: 0;
  margin: 0;
}

.log-output li {
  padding: 4px 0;
  border-left: 2px solid #FF7E1B;
  padding-left: 12px;
  animation: fadeIn 0.5s ease-in;
}

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

/* BLOG */
#blog {
  scroll-margin-top: 100px; /* adjust based on your header height */
}
.blog .row{
  /*display: flex;*/
  flex-direction: row;
}
.blog-right {
  flex: 1;
  background-image: url(../assets/images/light-terminal.png);
  background-size: cover;
  background-position: center;
  display: column;
  flex-direction: column;
  text-align: center;
  align-items: flex-end;
  justify-content: center;
  padding: 60px;
}
.blog h2{
  color: #e6e6e6;
}
.blog-left {
  flex: 1;
  color: #e6e6e6;
  padding: 60px;
  background-color: rgba(10, 10, 10, 0.85);
  text-align: center;
}


.blogSpan{
  margin: 0 auto;
}
.blog-text {
  font-family: 'Audiowide', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
}
/*BLOG END*/

/*CONTACT*/
#contact {
  position: relative;
  background: rgba(5, 10, 15, 0.96);
  padding: 0px 0;
  border-top: 1px solid rgba(255, 126, 27, 0.25);
  border-bottom: 1px solid rgba(255, 126, 27, 0.25);
  overflow: hidden;
}
/* GRID FRAME */
#contact::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255, 126, 27, 0.15);
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 126, 27, 0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.06) 96%);
  background-size: 85px 85px;
  mix-blend-mode: screen;
  z-index: 0;
}

/* Ensure content sits above grid */
#contact .row,
#contact .contact-intro-actions,
#contact .contact-data-terminal,
#contact .contact-form {
  position: relative;
  z-index: 2;
}


.contact .row{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
 
  color: #e6e6e6;
  
  padding: 0px 20px 60px;
  border-top: 1px solid rgba(255,126,27,0.35);
}

.contact h2{
  color: #e6e6e6;
  text-align: center;
  margin-top: 70px;
}

.contact-h2 {
  animation: hudFlicker 4s infinite steps(2, start);
}

@keyframes hudFlicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.7; }
  98% { opacity: 0.85; }
  99% { opacity: 0.6; }
}


.contact-intro {
  max-width: 520px;
  margin-bottom: 50px;
  text-align: center;
  font-family: lexend, system-ui, sans-serif;
  font-size: 0.9rem;
  color: #cfd3dc;
}
.uplink-modes {
  margin-top: 10px;
  display: inline-flex;
  gap: 1.5rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 126, 27, 0.5);
  background: radial-gradient(circle at top, rgba(255,126,27,.2), rgba(5,5,5,.9));
  font-family: "Audiowide", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.uplink-modes .mode {
  opacity: 0.55;
}

.uplink-modes .mode.active {
  color: #ff7e1b;
  opacity: 1;
}

.contact-meta {
  margin-top: 18px;
  font-family: "Lexend", system-ui;
  font-size: 0.75rem;
  color: #a6a6a6;
  text-align: center;
  opacity: 0.9;
}

.contact-meta span + span {
  margin-left: 1.5rem;
}

.contact-meta.small {
  margin-top: 8px;
  font-size: 0.68rem;
  opacity: 0.7;
}

.contact-meta a {
  color: #ff7e1b;
  text-decoration: none;
}
.contact-meta a:hover {
  text-decoration: underline;
}

.contact-subtext{
  font-family: lexend, system-ui, sans-serif;
  margin-top: 30px;
}
.contact-privacy {
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #8f95a3;
}

.contact-privacy a {
  color: #ff7e1b;
  text-decoration: none;
}
.contact-privacy a:hover {
  text-decoration: underline;
}

.contact-data-terminal{
  margin-top: 30px;
}
.contact .hud-button{
  font-family: audiowide, sans-serif;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #e6e6e6;
  font-family: 'Orbitron', monospace;
}
.form-group{
  text-align: left;

}
.form-group label {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #FF7E1B;
}

.form-group input,
.form-group textarea {
  background-color: #0d0d0d;
  border: 1px solid #FF7E1B;
  padding: 10px;
  font-size: 1rem;
  color: #e6e6e6;
  outline: none;
  width: 100%;
  font-family: 'Orbitron', monospace;
  resize: vertical;
  box-shadow: 0 0 10px rgba(255, 126, 27, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffaa33;
  box-shadow: 0 0 15px rgba(255, 126, 27, 0.6);
}

.form-group textarea {
  background: repeating-linear-gradient(
    0deg,
    #0d0d0d 0px,
    #0d0d0d 28px,
    rgba(255,126,27,0.05) 29px
  );
}


.contact-form {
  animation: bootIn 1.2s ease-in-out;
}
@keyframes bootIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
input:focus, textarea:focus {
  border-color: #ffaa33;
  box-shadow: 0 0 12px rgba(255, 126, 27, 0.6);
}


/*CONTACT END*/

/* FOOTER */
.footer{
background-image: url(../assets/images/commander2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0; 
  color: #e6e6e6;
}
.footer-links{
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../assets/images/body-bg2.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.footer-links li{
  display: inline-block;
}
.site-footer {
  background: #111;
  color: #aaa;
  font-family: 'Orbitron', monospace;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #222;
}
.blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
  font-family: audiowide, sans-serif;
}

/* Show when visible */
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Optional bounce/scale hover if different from glitch */
.back-to-top:hover {
  transform: scale(1.05);
}


/* FOOTER END */



/*** ABOUT PAGE ***/
#about2 {
  scroll-margin-top: 100px; /* adjust based on your header height */
}
.about-hero {
  background-image: url(../assets/images/aboutMe.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0; /* fine, but only useful if width is limited */
}

.about2 .row{
   display: flex;
  flex-direction: row;
}
.about2-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about2-left {
  flex: 1;
  background-image: url(../assets/images/contact-pannel.png);
 background-size: cover;
  background-position: center;
  display: column;
  flex-direction: column;
  text-align: left!important;
  align-items: flex-end;
  justify-content: center;
  padding: 60px;
  color: #e6e6e6;
  font-family: 'Lexend Giga', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.about2 h2{
  color: #e6e6e6;}
.about2-right {
  flex: 1;
  color: #e6e6e6;
  padding: 60px;
  background-color: rgba(10, 10, 10, 0.85);
}
.about2 .aboutBtn{
margin: 0 auto;
margin-top: 55px;
}
.ul-span{
  color: #FF7E1B;
}

#mission {
  scroll-margin-top: 100px; /* adjust based on your header height */
}
.mission {
  background-image: url(../assets/images/hangar.png);
  background-size: cover;
  background-position: center;
  display: column;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 60px;
  color: #e6e6e6;
  line-height: 1.9;
}
.mission .about-text{
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

#vision {
  scroll-margin-top: 100px; /* adjust based on your header height */
}
.vision {
  background-color: rgba(10, 10, 10, 0.85);
  background-size: cover;
  background-position: center;
  display: column;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 60px;
  color: #e6e6e6;
  line-height: 1.9;
}

.vision .about-text{
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.features {
  background-color: rgba(10, 10, 10, 0.85);
  background-size: cover;
  background-position: center;
  padding: 60px;
  color: #e6e6e6;
  text-align: center;
}
.features .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
/*.features .fBox{
  background-color: #e6e6e6;
  color: #000000;
  text-align: center;
  flex: 1 1 300px; /* responsive base width 
  min-width: 250px; /* prevents shrinking too much 
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  padding: 20px;
}
  */
.features .fBox {
  position: relative;
  background: #0f0f0f;
  border: 2px solid #FF7E1B;
  color: #e6e6e6;
  font-family: 'Audiowide', sans-serif;
  box-shadow: 0 0 10px #FF7E1B;
  flex: 1 1 300px;
  min-width: 250px;
  width: ;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  margin: 10px;
  overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);

}

/* CLIPPED CORNERS */
.features .fBox::before,
.features .fBox::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #0f0f0f;
  border: 2px solid #FF7E1B;
  box-sizing: border-box;
  z-index: 2;
}

.features .fBox::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.features .fBox::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

/* DOTS ON THE CORNERS */
.features .fBox .corner-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FF7E1B;
  border-radius: 50%;
  z-index: 3;
}

.features .fBox .corner-dot.tl {
  top: 6px;
  left: 6px;
}

.features .fBox .corner-dot.br {
  bottom: 6px;
  right: 6px;
}

  /* ========== CORE VALUES ========== */

.core-values {
  background: radial-gradient(circle at top, rgba(255, 126, 27, 0.04), transparent 60%)
              , rgba(5, 10, 15, 0.96);
  border-top: 1px solid rgba(255, 126, 27, 0.3);
  border-bottom: 1px solid rgba(255, 126, 27, 0.3);
  padding: 80px 40px;
}

.core-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* subtle HUD grid behind everything */
.core-values-inner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 126, 27, 0.16);
  pointer-events: none;
  opacity: 0.8;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 126, 27, 0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.06) 96%);
  background-size: 90px 90px;
  mix-blend-mode: screen;
}

/* header */

.core-values-header {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
  text-align: left;
}

.core-tag {
  font-family: "Audiowide", sans-serif;
  font-size: 0.9rem;
  color: #ff7e1b;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.core-intro {
  margin-top: 10px;
  color: #e6e6e6;
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               sans-serif;
  font-size: 0.98rem;
  max-width: 520px;
}

/* grid */

.core-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3x2 on desktop */
  align-items: stretch;
}

/* cards */

.core-card {
  position: relative;
  padding: 20px 22px 22px;
  background: linear-gradient(
               135deg,
               rgba(10, 13, 18, 0.98),
               rgba(9, 9, 12, 0.98)
             );
  border: 1px solid rgba(255, 126, 27, 0.35);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(255, 126, 27, 0.12);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

/* corner cuts */

.core-card::before,
.core-card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 126, 27, 0.6);
}

.core-card::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.core-card::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* header row inside card */

.core-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.core-label {
  font-family: "Audiowide", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 126, 27, 0.8);
  letter-spacing: 0.2em;
}

.core-title {
  font-family: "Audiowide", sans-serif;
  font-size: 0.95rem;
  color: #f5f5f5;
  text-transform: uppercase;
  margin-left: 10px;
  text-align: right;
}

/* text */

.core-text {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #d9d9d9;
  margin-top: 6px;
}

/* hover */

.core-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 148, 54, 0.9);
  box-shadow:
    0 0 22px rgba(255, 126, 27, 0.25),
    0 0 30px rgba(0, 0, 0, 0.9);
}

/* responsive tweaks */

@media (max-width: 1024px) {
  .core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 per row on tablet */
  }
}

@media (max-width: 700px) {
  .core-values {
    padding: 60px 20px;
  }
  .core-values-inner::before {
    inset: 14px;
  }
  .core-grid {
    grid-template-columns: minmax(0, 1fr); /* 1 per row on mobile */
  }
}

    /* ========== SERVICE SOLAR SYSTEM ========== */

.service-orbit-section {
  padding: 80px 40px;
  background:
    radial-gradient(circle at top, rgba(255, 126, 27, 0.04), transparent 60%),
    rgba(5, 10, 15, 0.97);
  border-top: 1px solid rgba(255, 126, 27, 0.35);
  border-bottom: 1px solid rgba(255, 126, 27, 0.35);
}

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

/* HUD grid overlay */
.service-orbit-inner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 126, 27, 0.18);
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 126, 27, 0.07) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.07) 96%);
  background-size: 80px 80px;
  mix-blend-mode: screen;
}

/* HEADER */

.service-orbit-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
}

.service-orbit-tag {
  font-family: "Audiowide", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7e1b;
}

.service-orbit-intro {
  margin: 10px auto 0;
  max-width: 520px;
  color: #e6e6e6;
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.95rem;
}

/* SOLAR MAP CONTAINER */

.service-orbit-map {
  position: relative;
  margin: 0 auto;
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  transition:
    transform 0.8s ease-out,
    box-shadow 0.8s ease-out;
}

/* hover on the section that wraps the map */
.service-orbit:hover .service-orbit-map {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
}

.service-orbit-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 95%, rgba(255, 126, 27, 0.06) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 126, 27, 0.06) 96%);
  background-size: 80px 80px;
  opacity: 0.45;
  mix-blend-mode: screen;
  z-index: 0;
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: -120px 80px; }
}


/* SUN */

.orbit-sun {
  position: absolute;
   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.orbit-sun-core {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffcf7a, #ff7e1b 55%, #c44808 100%);
  box-shadow:
    0 0 30px rgba(255, 126, 27, 0.9),
    0 0 60px rgba(255, 126, 27, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.orbit-sun-label {
  font-family: "Audiowide", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #0b0f16;
  padding: 0 8px;
}

/* ORBIT RINGS */

.orbit {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 126, 27, 0.35);
  transform: translate(-50%, -50%);
  pointer-events: none; /* planets themselves stay clickable */
}

.orbit-scan-sector {
   position: absolute;
  top: 50%;
  left: 50%;
  width: 470px;          /* match .orbit-6 */
  height: 470px;         /* match .orbit-6 */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background:
    conic-gradient(
      from -30deg,
      rgba(120, 255, 180, 0.22) 0deg,
      rgba(120, 255, 180, 0.32) 60deg,
      transparent 60deg,
      transparent 360deg
    );
  mix-blend-mode: screen;
  z-index: 1;
}

.orbit-scan-sector::after {
 content: "";
  position: absolute;
  inset: 0%;
  border-radius: 50%;
  border-right: 1px solid rgba(160, 255, 210, 0.55);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  opacity: 0.9;
  animation: orbit-scan-line 3.6s linear infinite;
}

@keyframes orbit-scan-line {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* orbit sizes (inner → outer) */
.orbit-1 { width: 170px; height: 170px; }
.orbit-2 { width: 230px; height: 230px; }
.orbit-3 { width: 290px; height: 290px; }
.orbit-4 { width: 350px; height: 350px; }
.orbit-5 { width: 410px; height: 410px; }
.orbit-6 { width: 470px; height: 470px; }

.orbit-label-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* PLANETS */

.planet {
  position: absolute;
  top: 50%;
  left: 100%; /* start at right side of orbit */
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-size: 160% 160%;
  background-position: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
  pointer-events: auto;
}

.planet .planet-label {
  display: none;
}

/* slight size variations */
.planet-1 { width: 22px; height: 22px; }
.planet-2 { width: 24px; height: 24px; }
.planet-3 { width: 26px; height: 26px; }
.planet-4 { width: 28px; height: 28px; }
.planet-5 { width: 30px; height: 30px; }
.planet-6 { width: 32px; height: 32px; }

/* planet color palettes – muted, earth-ish, on-theme */
.planet-1 { background-image: radial-gradient(circle at 30% 20%, #f2f5ff, #4f6fb3 55%, #1b2740); }
.planet-2 { background-image: radial-gradient(circle at 30% 20%, #ffe9c7, #c98a3a 55%, #593215); }
.planet-3 { background-image: radial-gradient(circle at 30% 20%, #e9fff1, #4da479 55%, #133326); }
.planet-4 { background-image: radial-gradient(circle at 30% 20%, #f6edf7, #a864c2 55%, #3d224f); }
.planet-5 { background-image: radial-gradient(circle at 30% 20%, #f2f2f2, #9ea3aa 55%, #26292f); }
.planet-6 { background-image: radial-gradient(circle at 30% 20%, #fff8df, #d3a64a 55%, #4b3515); }

/* LABELS */

.planet-label {
  font-family: "Audiowide", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f5f5f5;
  background: rgba(6, 10, 16, 0.95);
  border: 1px solid rgba(255, 126, 27, 0.6);
  padding: 4px 8px;
  margin-left: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  position: relative;
  transform: translateX(4px);
}

.planet-label-floating {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-9999px, -9999px); /* offscreen before JS runs */
  font-family: "Audiowide", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 8px;
  background: rgba(6, 12, 18, 0.92);
  border: 1px solid rgba(120, 255, 180, 0.7);
  box-shadow:
    0 0 12px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(80, 255, 190, 0.35);
  color: #f5fdfb;
  opacity: 0;
  filter: blur(0.4px);
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out,
    filter 0.25s ease-out;
}

/* When planet enters scan zone */
.planet-label-floating.visible {
  opacity: 1;
  filter: blur(0);
}

/* ROTATION ANIMATIONS
   We rotate the whole orbit; planet + label orbit together.
*/

.orbit-1 { animation: orbit-spin 18s linear infinite; }
.orbit-2 { animation: orbit-spin 24s linear infinite; }
.orbit-3 { animation: orbit-spin 30s linear infinite; }
.orbit-4 { animation: orbit-spin 36s linear infinite; }
.orbit-5 { animation: orbit-spin 44s linear infinite; }
.orbit-6 { animation: orbit-spin 52s linear infinite; }

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* hover: subtle glow */
.planet:hover {
  box-shadow:
    0 0 14px rgba(255, 126, 27, 0.7),
    0 0 30px rgba(0, 0, 0, 0.9);
}

/* RESPONSIVE TWEAKS */

@media (max-width: 900px) {
  .service-orbit-section {
    padding: 60px 20px;
  }
  .service-orbit-inner::before {
    inset: 14px;
  }
}

@media (max-width: 600px) {
  .service-orbit-intro {
    font-size: 0.88rem;
    padding: 20px;
  }
  .orbit-sun-core {
    width: 100px;
    height: 100px;
  }
  .orbit-1 { width: 150px; height: 150px; }
  .orbit-2 { width: 200px; height: 200px; }
  .orbit-3 { width: 250px; height: 250px; }
  .orbit-4 { width: 300px; height: 300px; }
  .orbit-5 { width: 350px; height: 350px; }
  .orbit-6 { width: 400px; height: 400px; }

  .planet-label {
    font-size: 0.55rem;
    padding: 3px 6px;
  }
   .orbit-scan-sector {
    width: 400px;
    height: 400px;
  }

  .orbit-scan-sector::after {
    inset: 1%;
  }

  .planet-label-floating {
    font-size: 0.52rem;
    padding: 3px 6px;
  }
}

.timeline{
  /*background-color: rgba(10, 10, 10, 0.85);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('../assets/images/timeline.png');*/
  background-color: #0f0f0f;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 60px;
  color: #e6e6e6;
  text-align: center;
}
.timelineP{
  font-family: lexend, system-ui, sans-serif;
}
.timeline-item1{
  border: #FF7E1B 1px solid;
  width: 60%;
  margin: 0 auto;
  padding: 20px;
}
.transmission-cta {
  padding: 20px;
  width: 100%;
  margin:0 auto;
  color: #FF7E1B;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  /*background: linear-gradient(145deg, #10131c, #0c0f18);*/
  background-color: rgba(10, 10, 10, 0.85);
   background-size: cover;
  background-position: center;
  border: 2px solid #FF7E1B;
  position: relative;
  transition: all;
}
.transmissionBtn{
  width: 350px;
  margin:20px
}



/*** ABOUT PAGE END ***/

/*  PROJECTS  */
.hero .projectsH1{
    margin-bottom: 65px;
}

.projects-hero {
  background-image: url(../assets/images/hangar-bay3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0; 
}
.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 45%,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.60) 65%,
      rgba(0,0,0,0.78) 100%
  );
  pointer-events: none;
}

.projects-hero .hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, 92%);
  text-align: center;
  padding: 0 12px;
}
.heroH1 {
  margin: 0 0 26px;
  line-height: 1.05;
}

.heroH1 .h1-span {
  display: inline-block;
  margin-top: 10px;
  opacity: 0.9;
}

.projects-hero .hero-content a {
  margin: 10px 10px 0;
}

@media (max-width: 640px) {
  .projects-hero .hero-content a {
    display: block;
    width: min(360px, 92%);
    margin: 12px auto 0;
  }
}

.project-terminal{
    background-color: rgba(10, 10, 10, 0.85);
    color: #e6e6e6;
    padding: 60px;
}

.webdesign {
  
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0; /* background-image: url(../assets/images/projects-bg1.png);fine, but only useful if width is limited */
}
.project-hud-section {
  padding: 80px 20px;
  background-image: url(../assets/images/hangar-bay2.png);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  height: auto;
  width: 100%;
  color: #00FFFF;
  text-align: center;
  align-items: center;
}
.project-intro{
  margin-bottom: 80px;
  color: #e6e6e6;
}
.project-hud-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.project-hud-card {
  background: rgba(10, 10, 10, 0.6);
  
  border: 1px solid #FF7E1B;
  padding: 30px;
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  /*color: #00FFFF;*/
  color: #e6e6e6;
  position: relative;
  font-family: "Audiowide", sans-serif;
}

.project-hud-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00FFFF88;
}

.project-hud-card img {
  width: 240px;
  height: 240px;
  border: 1px solid #00FFFF44;
  border-radius: 6px;
  margin:0 auto;
  margin: 0 auto;
 background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.hud-header {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FF8C00!important;
}

.hud-description {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.hud-status {
  font-size: 12px;
  text-transform: uppercase;
  color: #FF8C00;
  align-items: end;
}

.hud-status .deployed {
  color: #00FF99;
}

.hud-status .inprogress {
  color: #FF4444;
}


.creative-labs {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(10, 10, 10, 0.85);
  object-fit: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* change this */
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 60px 20px;
}

.creative-intro {
  color: #ffffff;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 900px;
}

.creative-hud-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  
}



/*  PROJECTS END  */

.legal-links {
  text-align: center;
  padding: 10px 0 5px;
  background: rgba(228, 227, 227, 0.1); /* slight overlay */
  font-size: 12px;
  letter-spacing: 1px;
}

.legal-links a {
  margin: 0 12px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  font-family: 'Lexend', sans-serif;
  transition: 0.3s;
}

.legal-links a:hover {
  color: #ff7e1b;
  text-shadow: 0 0 6px rgba(255,125,0,0.6);
}


/* ========= Goluza Interface Studio – Chat UI ========= */

:root {
  --gis-bg: #050609;
  --gis-panel: #0b0d12;
  --gis-panel-light: #121520;
  --gis-border: #2c323f;
  --gis-accent: #ff8a3d;
  --gis-accent-soft: rgba(255, 138, 61, 0.35);
  --gis-text-main: #f5f5f7;
  --gis-text-muted: #9ca3b8;
  --gis-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  --gis-radius-lg: 18px;
  --gis-radius-full: 999px;
  --gis-transition-fast: 0.18s ease-out;
}

/* ===== Chat bubble (phoenix button) ===== */

.gis-chat-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9990;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.gis-chat-toggle:focus-visible {
  outline: 2px solid var(--gis-accent);
  outline-offset: 4px;
}

.gis-chat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  bottom: 110px;
  right: 32px;
  background: radial-gradient(circle at 30% 20%, #ffb86b, #ff8a3d 55%, #2b1710 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gis-shadow);
  position: relative;
  transition: transform var(--gis-transition-fast), box-shadow var(--gis-transition-fast);
}

/* Phoenix in chat bubble – make it black for contrast */
.gis-chat-icon img,
.gis-chat-mini-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) contrast(1.4); /* makes it solid black */
  opacity: 0.9;
}

.gis-chat-toggle:hover .gis-chat-icon,
.gis-chat-toggle:focus-visible .gis-chat-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
}


/* Container stays as is, this just makes sure it's the orbit center */
.gis-chat-icon {
  position: relative;
  overflow: visible; /* allow orbits to be visible outside */
  background: radial-gradient(circle at 30% 20%, #ffb86b, #f37a28 40%, #3a1e10 100%);
}
.gis-energy-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 138, 61, 0.15);
  box-shadow:
    0 0 12px rgba(255, 138, 61, 0.15),
    inset 0 0 18px rgba(255, 138, 61, 0.12);
  pointer-events: none;
}

/* Orbits */
.gis-orbit {
  position: absolute;
  inset: -8px;               /* orbit slightly outside the sphere */
  border-radius: 50%;
  border: 1px dashed rgba(255, 138, 61, 0.4);
  pointer-events: none;
  animation: gis-orbit-rotate 7s linear infinite;
}

/* Second orbit - different angle / speed for atomic feel */
.gis-orbit-2 {
  inset: -17px;
  border-style: solid;
  border-color: rgba(255, 138, 61, 0.2);
  transform: rotate(25deg);
  animation-duration: 12s;
}

/* Satellite (small glowing dot) */
.gis-satellite {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #ffefe0;
  box-shadow:
    0 0 6px rgba(255, 190, 120, 0.9),
    0 0 16px rgba(255, 138, 61, 0.9);
}

/* Make second satellite a bit smaller/dimmer */
.gis-orbit-2 .gis-satellite {
  width: 6px;
  height: 6px;
  background: #ffe3c2;
  box-shadow:
    0 0 4px rgba(255, 200, 140, 0.9),
    0 0 10px rgba(255, 138, 61, 0.7);
}

/* Orbit rotation */
@keyframes gis-orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Pulse halo around bubble */
.gis-chat-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gis-accent-soft);
  opacity: 0.9;
  animation: gis-pulse 1.8s ease-out infinite;
}

@keyframes gis-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

/* If you have a phoenix SVG inside, make sure it scales nicely */
.gis-chat-icon svg {
  width: 60%;
  height: 60%;
  display: block;
}

/* ===== Chat panel ===== */

.gis-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 380px;
  height: 70vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #171c2b 0, #050609 55%);
  border-radius: var(--gis-radius-lg);
  border: 1px solid var(--gis-border);
  box-shadow: var(--gis-shadow);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: bottom right;
  transition:
    opacity var(--gis-transition-fast),
    transform var(--gis-transition-fast),
    visibility var(--gis-transition-fast);
  visibility: visible;
  z-index: 9991;
  backdrop-filter: blur(14px);
}

/* Hidden / closed state */
.gis-chat-panel.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .gis-chat-toggle {
    right: 16px;
    bottom: 20px;
  }

  .gis-chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 82px;
    max-height: 70vh;
    border-radius: 14px;
  }

  /* Prevent iOS zoom on focus */
  .gis-chat-input-row input[type="text"],
  .gis-chat-input-row textarea {
    font-size: 16px; /* minimum for iOS to NOT zoom */
  }
}

/* Hint bubble */
.gis-chat-hint {
  position: absolute;
  right: 70px; /* distance from the icon */
  bottom: 80px;
  background: rgba(255, 138, 61, 0.78);
  backdrop-filter: blur(3px);
  color: #050505;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* When visible */
.gis-chat-hint.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Header ===== */

.gis-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: linear-gradient(to right, rgba(6, 10, 24, 0.95), rgba(15, 13, 9, 0.95));
  border-bottom: 1px solid rgba(255, 138, 61, 0.16);
}

.gis-chat-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gis-energy-ring {
  width: 100px;
  height: 100px;
}

.gis-chat-icon {
  width: 52px;
  height: 52px;
}

.gis-chat-mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffb86b, #ff8a3d 55%, #2b1710 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.45);
}

.gis-chat-mini-icon svg {
  width: 70%;
  height: 70%;
}

.gis-chat-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gis-text-main);
}

.gis-chat-subtitle {
  font-size: 0.72rem;
  color: var(--gis-text-muted);
}

.gis-chat-close {
  border: none;
  background: transparent;
  color: var(--gis-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
  transition:
    background var(--gis-transition-fast),
    color var(--gis-transition-fast),
    transform var(--gis-transition-fast);
}

.gis-chat-close:hover,
.gis-chat-close:focus-visible {
  background: rgba(255, 138, 61, 0.12);
  color: var(--gis-accent);
  transform: scale(1.03);
}

.gis-chat-close:focus-visible {
  outline: 2px solid var(--gis-accent);
  outline-offset: 2px;
}

/* ===== Messages area ===== */

.gis-chat-messages {
  padding: 10px 12px 14px;
  flex: 1;
  overflow-y: auto;
  background-image: linear-gradient(
      120deg,
      rgba(255, 138, 61, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      210deg,
      rgba(255, 138, 61, 0.04) 1px,
      transparent 1px
    );
  background-size: 140px 140px;
}

/* Custom scrollbar (desktop) */
.gis-chat-messages::-webkit-scrollbar {
  width: 6px;
}
.gis-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
.gis-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 184, 0.4);
  border-radius: 999px;
}

.gis-chat-message-row {
  display: flex;
  margin-bottom: 8px;
}

.gis-chat-message-row.from-bot {
  justify-content: flex-start;
}

.gis-chat-message-row.from-user {
  justify-content: flex-end;
}

.gis-chat-message {
  max-width: 85%;
  padding: 7px 10px;
  border-radius: 11px;
  font-size: 0.82rem;
  line-height: 1.4;
  word-wrap: break-word;
  font-family: 'Lexend', system-ui, sans-serif;
}

/* Bot bubble */
.gis-chat-message.bot {
  background: rgba(13, 17, 27, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--gis-text-main);
}

/* User bubble */
.gis-chat-message.user {
  background: linear-gradient(135deg, #ff8a3d, #f7681f);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #050505;
}

/* Tiny timestamp or meta, optional */
.gis-chat-meta {
  font-size: 0.7rem;
  color: var(--gis-text-muted);
  margin-top: 2px;
}

/* ===== Input row ===== */

.gis-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 11px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(to top, rgba(5, 6, 9, 0.98), rgba(10, 12, 18, 0.98));
}

.gis-chat-input-row input[type="text"],
.gis-chat-input-row textarea {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(5, 6, 9, 0.8);
  color: var(--gis-text-main);
  font-size: 0.82rem;
  padding: 8px 12px;
  outline: none;
  resize: none;
  min-height: 36px;
  max-height: 72px;
}
.gis-chat-input-row input::placeholder,
.gis-chat-input-row textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.gis-chat-input-row input:focus,
.gis-chat-input-row textarea:focus {
  border-color: var(--gis-accent);
  box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.4);
}

/* Send button */

.gis-chat-input-row button[type="submit"] {
  border: none;
  border-radius: 999px;
  padding: 8px 11px 8px 10px;
  font-size: 0.9rem;
  cursor: pointer;
  background: radial-gradient(circle at 20% 0, #ffb86b, #ff8a3d 55%, #592210 100%);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  transition:
    transform var(--gis-transition-fast),
    box-shadow var(--gis-transition-fast),
    filter var(--gis-transition-fast);
}

.gis-chat-input-row button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  filter: brightness(1.02);
}

.gis-chat-input-row button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.6);
}

.gis-chat-input-row button[type="submit"]:focus-visible {
  outline: 2px solid var(--gis-accent);
  outline-offset: 2px;
}

/* mobile override*/
@media (max-width: 640px) {
  .gis-chat-input-row input[type="text"],
  .gis-chat-input-row textarea {
    font-size: 16px !important; /* stop iOS zoom */
  }
}