/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #e6e6e6;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}


/* NAVBAR */
.navbar {
  background-color: #0d0d0d;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.nav-logo {
  width: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: #8fdde7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #a8f0ff;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #8fdde7;
}



/* HERO */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(0, 255, 255, 0.1), transparent 70%);
  color: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #00e5ff;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: bold;
}

.highlight {
  background: linear-gradient(90deg, #ffec61, #00ff87);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
} 

.hero-description {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1rem;
  color: #88f0ff;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-buttons {
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #00e5ff;
  color: #0d0d0d;
}

.primary-btn:hover {
  background-color: #00c6d9;
}

.outline-btn {
  border: 2px solid #00e5ff;
  color: #00e5ff;
}

.outline-btn:hover {
  background-color: #00e5ff;
  color: #0d0d0d;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.pill {
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #00e5ff;
  transition: background 0.3s ease;
}

.pill:hover {
  background-color: rgba(0, 229, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-description, .hero-tagline {
    font-size: 0.95rem;
  }
}


/* ABOUT */
.about {
  padding: 4rem 2rem;
  background: #101010;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 300px;
  min-width: 250px;
}

.about-text h2 {
  color: #00ffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: #ccc;
}

.about-image img {
  width: 220px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* SPOTIFY */
.spotify-section {
  padding: 4rem 2rem;
  background: #0b0b0b;
  text-align: center;
}

.spotify-section h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

.spotify-desc {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.spotify-card iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}


/* =============================
   TECH STACK – Glassmorphism Flip Cards
============================= */
.techstack-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 2rem;
}

.tech-card {
  width: 130px;
  height: 170px;
  perspective: 1000px;
}

.tech-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.tech-card:hover .tech-card-inner,
.tech-card-inner.is-flipped {
  transform: rotateY(180deg);
}

.tech-card-front,
.tech-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  backface-visibility: hidden;
}

.tech-card-back {
  transform: rotateY(180deg);
  font-size: 0.85rem;
  line-height: 1.3rem;
}

.tech-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

/* =============================
   HIGHLIGHT SECTION – Horizontal Flex Cards
============================= */
.what-i-do {
  text-align: center;
  padding: 3rem 2rem;
}

.what-i-do h2 {
  font-size: 2.2rem;
  color: #00ffff;
  margin-bottom: 2rem;
}

.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.highlight-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00ffff;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* =============================
   SPOTIFY SECTION
============================= */
.spotify-section {
  padding: 3rem 2rem;
  text-align: center;
}

.spotify-section h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.spotify-desc {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
  font-size: 1rem;
}

.spotify-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.spotify-card {
  width: 300px;
  max-width: 100%;
}

/* =============================
   TECH STACK BADGES (With Tooltips)
============================= */
.tech-stack-section {
  padding: 3rem 2rem;
  text-align: center;
}

.tech-stack-section h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.stack-category h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #fff;
  cursor: default;
  transition: transform 0.2s;
  position: relative;
}

.badge:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.2);
}

.badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .highlight-cards,
  .spotify-grid,
  .techstack-container,
  .tech-stack {
    flex-direction: column;
    align-items: center;
  }
}




/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  background-color: #0d0d0d;
  color: #999;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 1rem;
  color: #8fdde7;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
    display: none;
    align-items: center;
  }

  .nav-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin: auto;
  }
}














/****************/
/*
ABOUT US ----------------------
*/


/* =============== ORIGIN HERO =============== */
.origin-hero{
  position:relative;
  isolation:isolate;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background:#0b0c0d;
  overflow:hidden;
  color:#e8f8ff;
}

/* neon glow blob */
.origin-hero .origin-glow{
  position:absolute; inset:auto -20% -35% -20%;
  height:60vmax;
  background:radial-gradient(ellipse at center,
              rgba(0,255,255,.16), transparent 60%);
  filter:blur(40px);
  z-index:-1;
}

/* faint grid overlay */
.origin-hero .origin-grid{
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0/28px 28px,
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0/28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.9), rgba(0,0,0,0) 75%);
  pointer-events:none;
  z-index:-1;
}

.origin-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items:center;
}

/* Left */
.origin-kicker{
  display:inline-block;
  letter-spacing:.2em;
  font-size:.9rem;
  color:#41f3ff;
  opacity:.85;
  margin-bottom:.75rem;
}

.origin-title{
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight:800;
  line-height:1.05;
  margin:0 0 1rem;
}
.origin-title .ink{
  background:linear-gradient(90deg,#ffe066,#39ffb6);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 18px rgba(0,255,200,.25);
}

.origin-lede{
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  color:#cfefff;
  margin-bottom:1rem;
}
.origin-body{
  color:#b8dbe4;
  margin:.55rem 0;
}

.origin-pills{
  display:flex; flex-wrap:wrap; gap:.6rem;
  margin:1.2rem 0 2rem;
}
.origin-pills .pill{
  padding:.45rem .85rem;
  border:1px solid rgba(0,255,255,.35);
  border-radius:999px;
  color:#7cf7ff;
  background:rgba(0,255,255,.08);
  font-size:.9rem;
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease;
}
.origin-pills .pill:hover{
  background:rgba(0,255,255,.18);
  transform:translateY(-2px);
}

/* CTA */
.origin-cta{ display:flex; gap:.8rem; flex-wrap:wrap; }
.origin-btn{
  display:inline-block;
  padding:.85rem 1.2rem;
  border-radius:.8rem;
  background:#00e6ff; color:#071316;
  font-weight:600; text-decoration:none;
  box-shadow:0 0 0 0 rgba(0,230,255,.5);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.origin-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 24px 0 rgba(0,230,255,.35);
}
.origin-btn.outline{
  background:transparent;
  color:#7ef3ff;
  border:2px solid #00e6ff;
}
.origin-btn.outline:hover{
  background:#00e6ff; color:#071316;
}

/* Right media */
.origin-media{ position:relative; }
.media-frame{
  border-radius:1.25rem;
  overflow:hidden;
  box-shadow:0 10px 50px rgba(0,0,0,.45), 0 0 30px rgba(0,255,255,.12);
  transform: rotate(-1deg);
}
.media-frame img{
  display:block;
  width:100%;
  height:auto;
  filter: saturate(1.03) contrast(1.02);
}

/* floating badge */
.media-badge{
  position:absolute; right:-10px; bottom:-14px;
  background:rgba(0,255,255,.12);
  border:1px solid rgba(0,255,255,.35);
  backdrop-filter: blur(8px);
  color:#9ff9ff;
  padding:.55rem .9rem;
  border-radius:.75rem;
  font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 0 18px rgba(0,255,255,.15);
}
.media-badge span{ color:#fff; }

/* scroll cue */
.scroll-cue{
  display:grid; place-items:center;
  margin-top: clamp(2rem, 6vw, 3rem);
  opacity:.8;
}
.scroll-cue span{ font-size:.85rem; color:#8fefff; }
.scroll-cue i{
  margin-top:.4rem;
  width:2px; height:26px; background:#00e6ff;
  position:relative; overflow:hidden; border-radius:2px;
}
.scroll-cue i::after{
  content:""; position:absolute; inset:auto 0 0 0;
  height:60%; background:linear-gradient(#00e6ff, transparent);
  animation: drip 1.4s linear infinite;
}
@keyframes drip{ from{transform:translateY(-120%);} to{transform:translateY(0);} }

/* Reveal on view */
.reveal{ opacity:0; transform: translateY(16px); transition:opacity .5s ease, transform .5s ease; }
.reveal.show{ opacity:1; transform:none; }

/* Responsive */
@media (max-width: 980px){
  .origin-wrap{ grid-template-columns:1fr; }
  .media-frame{ max-width:520px; margin:0 auto; transform:none; }
  .media-badge{ position:static; display:inline-block; margin-top:.8rem; }
}




/***********VISIONNNNNNNNNN888*/

.vision-mission-section {
  background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  padding: 5rem 2rem;
  text-align: center;
  color: #e0e0e0;
  position: relative;
}

.section-heading {
  font-size: 2.4rem;
  color: #00ffff;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.vision-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.mission-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.box {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 255, 255, 0.1);
}

.box h2 {
  color: #00ffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

@media (max-width: 768px) {
  .mission-boxes {
    flex-direction: column;
    align-items: center;
  }
}





/********BELIEFS GRID*****************?*/

.beliefs-section {
  padding: 5rem 2rem;
  background: #0f0f0f;
  text-align: center;
  color: #e0e0e0;
}

.beliefs-intro {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-style: italic;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.belief-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease;
}

.belief-card:hover {
  transform: translateY(-8px) scale(1.02);
}


.belief-card h3 {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.belief-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dcdcdc;
}

@media (max-width: 768px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
}








/*timeline.css*/

/* Timeline Layout */
.timeline-section {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
}

.timeline {
  position: relative;
  margin: 2rem auto;
  padding-left: 2rem;
  border-left: 2px solid rgba(0, 255, 255, 0.3);
  max-width: 900px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}

.timeline-dot {
  position: absolute;
  left: -11px;
  top: 8px;
  width: 18px;
  height: 18px;
  background-color: #00ffff;
  border: 2px solid #0d0d0d;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-img {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.timeline-img:hover {
  transform: scale(1.05);
}

.timeline-text {
  flex: 1;
}

.timeline-text h3 {
  margin-bottom: 0.5rem;
  color: #00ffff;
  font-size: 1.4rem;
}

.timeline-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Optional animation */
.timeline-item {
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive timeline */
@media (max-width: 768px) {
  .timeline {
    padding-left: 0;
    border-left: none;
  }

  .timeline-item {
    padding-left: 0;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 1rem;
  }
}








/*EXPERIMENT SECTION*/

.experiments-section {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  text-align: center;
}

.experiments-section .section-title {
  font-size: 2.2rem;
  color: #00ffff;
  margin-bottom: 1.5rem;
}

.experiments-desc {
  color: #ccc;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.experiments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.experiment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  width: 280px;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.experiment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

.experiment-card h3 {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.experiment-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

.status-tag {
  display: inline-block;
  font-size: 0.8rem;
  background-color: rgba(0, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  color: #00ffff;
  font-weight: bold;
}



@media (max-width: 600px) {
  .experiments-grid {
    flex-direction: column;
    align-items: center;
  }

  .experiment-card {
    width: 90%;
  }
}






/*88888888888WHATS NEXTT88888888888888**/

.whats-next {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #0e0e0e;
  color: #eee;
}

.whats-next .section-title {
  font-size: 2.2rem;
  color: #00ffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.next-description {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.future-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.future-card {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.future-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.future-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.future-card.stay-tuned {
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  color: #00ffff;
  font-weight: bold;
  font-size: 1rem;
}

.future-card.stay-tuned span {
  font-size: 2rem;
}










/*8888888888888888
888888888888888******************
PROJECTS SECTION
***********************************/

/* PROJECTS PAGE STYLES */

.projects-section {
  padding: 4rem 2rem;
  background: #0d0d0d;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ffff;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #00ffff;
  border-radius: 25px;
  color: #00ffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #00ffff;
  color: #0d0d0d;
}

/* Project Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  perspective: 1000px;
  transition: transform 0.4s ease;
}

.project-card:hover .card-inner {
  transform: rotateY(5deg) scale(1.02);
}

.card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease;
  padding: 1.5rem;
  text-align: center;
}

.card-inner img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #00ffff;
}

.project-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.project-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid #00ffff;
  border-radius: 20px;
  color: #00ffff;
  transition: 0.3s ease;
}

.project-link:hover {
  background: #00ffff;
  color: #0d0d0d;
}


/*SPOTLIGHT*/
.spotlight { padding: 4rem 2rem; }
.spotlight-card {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1.2fr 1.4fr;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,255,255,.12);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0,255,255,.10);
}
.spotlight-media{
  overflow:hidden; border-radius:12px;
  background:#000;              /* letterbox bars */
  aspect-ratio:16/9;
  max-height: clamp(220px, 48vh, 420px);
}
.spotlight-media video{
  width:100%; height:100%;
  object-fit:contain;           /* shows whole video */
}


.spotlight-content h3 { margin-bottom: .5rem; color: #00ffff; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: .5rem 0 1rem; }
.pill { padding: .35rem .7rem; border:1px solid #00ffff55; border-radius:999px; font-size:.85rem; color:#aefcff; }

.psogrid { display: grid; gap: 1rem; grid-template-columns: repeat(3,1fr); }
.psogrid h4 { color: #e6feff; margin-bottom: .25rem; }
.metrics { margin: .25rem 0 0; padding-left: 1rem; color:#cfcfcf; }
.metrics li { margin:.15rem 0; }

.cta-row { display:flex; gap: .75rem; margin-top: 1rem; }
.btn-outline, .btn-ghost{
  padding:.65rem 1.1rem;border-radius:10px;text-decoration:none;transition:.25s;
  border:2px solid #00ffff; color:#00ffff; display:inline-block;
}
.btn-outline:hover{ background:#00ffff; color:#0d0d0d; }
.btn-ghost{ border-color:#00ffff44; color:#aefcff;  }
.btn-ghost:hover{ border-color:#00ffffaa; color:#eaffff; }

@media (max-width: 900px){
  .spotlight-card{ grid-template-columns: 1fr; }
  .psogrid{ grid-template-columns: 1fr; }
}





/* Secret Project */
.secret-project {
  text-align: center;
  margin: 5rem auto 3rem;
}

#unlock-secret {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px dashed #00ffff;
  color: #00ffff;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

#unlock-secret:hover {
  background-color: #00ffff;
  color: #0d0d0d;
}

.locked-card {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  display: inline-block;
  color: #fff;
}

.locked-card.hidden {
  display: none;
}

.locked-card img {
  max-width: 200px;
  margin-top: 1rem;
  border-radius: 12px;
}

.testimonials {
  padding: 4rem 2rem;
  background: #0d0d0d;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.testimonial-card p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 1rem;
}

.testimonial-card span {
  font-weight: 600;
  color: #00ffff;
}











/*888888888888888888************************
SERVICESSSSSSSSSS
88888888888888888888888*********??8*?*/


/* ==============================
   SERVICES – HERO / INTRO
============================== */
:root{
  --bg:#0d0d0d;
  --cyan:#00ffff;
  --text:#e6e6e6;
  --muted:#bdbdbd;
}

.services-hero{
  position: relative;
  isolation: isolate;
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  overflow: hidden;
}

.services-hero .container{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  color: #94ffff;
  opacity: .85;
  margin-bottom: .65rem;
}

.hero-title{
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-title .grad{
  background: linear-gradient(90deg, #76fff7, #b88cff 50%, #76fff7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(0,255,255,.25);
  animation: hueShift 8s linear infinite;
}

@keyframes hueShift{
  0%{ filter:hue-rotate(0deg); }
  100%{ filter:hue-rotate(360deg); }
}

.hero-intro{
  max-width: 780px;
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.hero-tag{
  margin: 0 auto 1.8rem;
}
.hero-tag span{
  display:inline-block;
  padding:.5rem .9rem;
  border:1px solid rgba(0,255,255,.35);
  border-radius: 999px;
  color:#bffcff;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
  font-size: .95rem;
}

/* CTA buttons */
.hero-cta{
  display:flex;
  justify-content:center;
  gap:.8rem;
  margin: 1.2rem 0 1.8rem;
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost{
  display:inline-block;
  padding:.85rem 1.2rem;
  border-radius:12px;
  text-decoration:none;
  transition: .25s ease;
  border:2px solid var(--cyan);
}
.btn-primary{
  background: var(--cyan);
  color:#0d0d0d;
  font-weight:700;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow:0 8px 24px rgba(0,255,255,.25); }
.btn-ghost{
  color:#afffff;
  border-color: rgba(0,255,255,.45);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover{ border-color: var(--cyan); color:#eaffff; }

/* Pills row */
.hero-pills{
  list-style:none; padding:0; margin: .5rem auto 0;
  display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center;
}
.hero-pills li{
  padding:.45rem .75rem;
  border:1px solid rgba(0,255,255,.25);
  border-radius:999px;
  color:#cfffff; font-size:.85rem;
  background: rgba(255,255,255,.03);
}

/* Decorative grid + orbs */
.hero-decor{ position:absolute; inset:0; pointer-events:none; }
.hero-grid{
  background:
    repeating-linear-gradient(
      to right,
      rgba(0,255,255,.06) 0 1px,
      transparent 1px 80px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(0,255,255,.05) 0 1px,
      transparent 1px 80px
    );
  mask: radial-gradient(ellipse at 50% -20%, #000 45%, transparent 75%);
  animation: gridFloat 18s linear infinite;
  z-index: -2;
}
@keyframes gridFloat{
  from{ transform: translateY(0); }
  to{ transform: translateY(-80px); }
}
.orb{
  width: 460px; height: 460px; border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle at 30% 30%, #7ffcff55, transparent 60%),
              radial-gradient(circle at 70% 70%, #b98cff44, transparent 60%);
  opacity:.35; z-index: -1;
}
.orb-1{ left:-120px; top:-60px; }
.orb-2{ right:-140px; bottom:-100px; }

/* Motion prefs */
@media (prefers-reduced-motion: reduce){
  .hero-grid{ animation: none; }
  .hero-title .grad{ animation: none; }
}

/* Small screens */
@media (max-width: 520px){
  .hero-cta{ gap:.6rem; }
  .btn-primary, .btn-ghost{ width:100%; text-align:center; }
}










/* ========== SERVICES OVERVIEW ========== */
.services-overview{
  position:relative;
  padding: clamp(3.5rem, 6vw, 6rem) 1.5rem;
  background:#0b0c0d;
  color:#e9fdff;
  overflow:hidden;
  isolation:isolate;
}
.services-overview .sv-glow{
  position:absolute; inset:-30% -25% auto -25%;
  height:60vmax;
  background:radial-gradient(ellipse at 40% 40%, rgba(0,255,255,.14), transparent 55%);
  filter:blur(42px);
  z-index:-1;
}
.services-overview .section-title{
  text-align:center;
  font-size: clamp(1.8rem, 4.8vw, 2.6rem);
  color:#00ffff;
  text-shadow:0 0 16px rgba(0,255,255,.3);
  margin:0 0 .6rem;
}
.section-sub{
  text-align:center;
  color:#bfefff;
  opacity:.9;
  max-width:760px;
  margin:0 auto 2.2rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.services-grid{
  --min: 280px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min),1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width:1200px;
  margin:0 auto;
}

.service-card{
  position:relative;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(0,255,255,.15);
  border-radius:1rem;
  padding:1.25rem 1.25rem 1.15rem;
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(0,255,255,.35);
  box-shadow: 0 18px 60px rgba(0,255,255,.12), 0 10px 40px rgba(0,0,0,.45);
}

.svc-head{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.6rem;
}
.svc-icon{
  display:grid; place-items:center;
  width:42px; height:42px;
  border-radius:10px;
  background:rgba(0,255,255,.12);
  border:1px solid rgba(0,255,255,.25);
  color:#aefcff;
  font-size:1.25rem;
  text-shadow:0 0 10px rgba(0,255,255,.25);
}
.svc-title{
  font-size:1.15rem;
  font-weight:700;
  line-height:1.2;
  margin:0;
  color:#dcfeff;
}

.svc-desc{
  color:#cdefff;
  opacity:.95;
  margin:.25rem 0 .6rem;
  font-size:.98rem;
}

.svc-points{
  margin:0 0 .8rem 0;
  padding-left:1.05rem;
  color:#bde8f1;
}
.svc-points li{
  margin:.25rem 0;
  line-height:1.45;
}

.svc-tags{
  display:flex; flex-wrap:wrap; gap:.5rem;
  margin-bottom:.9rem;
}
.svc-tags .pill{
  padding:.35rem .7rem;
  border-radius:999px;
  font-size:.85rem;
  color:#7ef3ff;
  background:rgba(0,255,255,.08);
  border:1px solid rgba(0,255,255,.25);
  backdrop-filter: blur(6px);
}

/* CTAs */
.svc-cta{
  display:inline-block;
  padding:.7rem 1.05rem;
  border-radius:.8rem;
  background:#00e6ff;
  color:#041315;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 0 0 0 rgba(0,230,255,.45);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.svc-cta:hover{
  transform: translateY(-2px);
  box-shadow:0 0 22px rgba(0,230,255,.35);
}
.svc-cta.outline{
  background:transparent;
  color:#7ef3ff;
  border:2px solid #00e6ff;
}
.svc-cta.outline:hover{
  background:#00e6ff; color:#041315;
}

/* Responsive love */
@media (max-width: 640px){
  .svc-head{ align-items:flex-start; }
  .svc-icon{ width:38px; height:38px; font-size:1.1rem; }
  .svc-title{ font-size:1.05rem; }
  .svc-desc{ font-size:.95rem; }
}












/* ========== PROCESS ========== */
.process{
  position:relative;
  padding: clamp(3.5rem, 6vw, 6rem) 1.25rem;
  background:#0b0c0d;
  color:#e9fdff;
  overflow:hidden;
  isolation:isolate;
}
.process .proc-glow{
  position:absolute; inset:-35% -25% auto -25%;
  height:60vmax;
  background:radial-gradient(ellipse at 60% 30%, rgba(0,255,255,.12), transparent 55%);
  filter:blur(46px);
  z-index:-1;
}
.process .section-title{
  text-align:center;
  font-size: clamp(1.8rem, 4.8vw, 2.6rem);
  color:#00ffff;
  margin:0 0 .5rem;
  text-shadow:0 0 16px rgba(0,255,255,.28);
}
.process .section-sub{
  text-align:center;
  max-width:780px;
  margin:0 auto 2rem;
  color:#c9f9ff;
  opacity:.9;
}

/* Stepper */
.process-steps{
  --track: rgba(0,255,255,.18);
  --bubble: rgba(255,255,255,.06);
  list-style:none;
  margin:0 auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  display:grid;
  grid-template-columns: repeat(5, minmax(200px,1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  max-width:1200px;
  position:relative;
}

.process-steps::before{
  /* horizontal track behind bubbles (desktop) */
  content:"";
  position:absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  top: 58px;
  height:2px;
  background: linear-gradient(90deg, var(--track), transparent 20%, var(--track) 40%, transparent 60%, var(--track) 80%);
  filter: drop-shadow(0 0 6px rgba(0,255,255,.25));
  z-index:0;
}

.process-step{
  background: var(--bubble);
  border:1px solid rgba(0,255,255,.15);
  border-radius:1rem;
  padding:1rem;
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.process-step:hover{
  transform: translateY(-6px);
  border-color: rgba(0,255,255,.32);
  box-shadow:0 16px 54px rgba(0,255,255,.12), 0 10px 40px rgba(0,0,0,.4);
}

.step-bubble{
  position:relative;
  display:flex; align-items:center; justify-content:center; gap:.4rem;
  width:110px; height:54px;
  margin:-1.1rem auto .6rem auto;
  background:rgba(0,255,255,.1);
  border:1px solid rgba(0,255,255,.25);
  border-radius:999px;
  box-shadow: inset 0 0 18px rgba(0,255,255,.1);
}
.step-num{
  width:28px; height:28px;
  display:grid; place-items:center;
  background:#00e6ff; color:#041315;
  border-radius:50%;
  font-weight:800;
  font-size:.95rem;
  box-shadow:0 0 12px rgba(0,230,255,.45);
}
.step-ico{
  font-size:1.15rem; color:#b6fbff;
  text-shadow:0 0 10px rgba(0,255,255,.25);
}

.step-title{
  text-align:center;
  margin:.2rem 0 .35rem;
  font-size:1.05rem; font-weight:800; color:#dffcff;
}
.step-desc{
  text-align:center; color:#cfefff;
  font-size:.95rem; line-height:1.5;
}

.step-pills{
  display:flex; flex-wrap:wrap; gap:.45rem;
  justify-content:center;
  margin-top:.65rem;
}
.step-pills .pill{
  padding:.3rem .65rem;
  border-radius:999px;
  background:rgba(0,255,255,.08);
  border:1px solid rgba(0,255,255,.22);
  color:#93f8ff; font-size:.8rem;
}

/* Responsive */
@media (max-width: 980px){
  .process-steps{
    grid-template-columns: repeat(2, minmax(220px,1fr));
  }
  .process-steps::before{ display:none; }
}
@media (max-width: 560px){
  .process-steps{
    grid-template-columns: 1fr;
  }
  .step-bubble{ margin-top:-1.4rem; }
}







/* ========= CTA Section ========= */
.cta{
  position:relative;
  padding: clamp(3rem, 6vw, 6rem) 1.25rem;
  background:#0b0c0d;
  overflow:hidden;
  isolation:isolate;
}

/* subtle grid backdrop */
.cta::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 60% -10%, rgba(0,255,255,.12), transparent 45%),
    linear-gradient(transparent 98%, rgba(0,255,255,.06) 0) top/100% 36px,
    linear-gradient(90deg, transparent 98%, rgba(0,255,255,.06) 0) left/36px 100%;
  opacity:.6;
  pointer-events:none;
  z-index:0;
}

/* floating glows */
.cta-glow{
  position:absolute; filter: blur(48px);
  width:42vmax; height:42vmax; border-radius:50%;
  opacity:.28; z-index:0;
}
.cta-glow-1{ background:radial-gradient(circle, rgba(0,255,255,.35), transparent 60%); top:-18vmax; left:-12vmax; }
.cta-glow-2{ background:radial-gradient(circle, rgba(0,153,255,.28), transparent 60%); bottom:-20vmax; right:-18vmax; }

/* card */
.cta-card{
  position:relative; z-index:1;
  max-width: 1000px; margin:0 auto;
  padding: clamp(2rem, 5.5vw, 3rem);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(0,255,255,.18);
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 0 30px rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  text-align:center;
  color:#e9fdff;
}

.cta-kicker{
  letter-spacing:.22em; text-transform:uppercase;
  font-weight:700; font-size:.8rem;
  color:#8fefff; opacity:.9; margin-bottom:.3rem;
}

.cta-title{
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height:1.1; margin:.2rem 0 .8rem;
}
.cta-title .accent{
  background: linear-gradient(90deg,#a7fff7 0%, #00ffff 35%, #ffe56b 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 0 22px rgba(0,255,255,.25);
}

.cta-sub{
  max-width:760px; margin:0.5rem auto 1.25rem;
  color:#c9f9ff; opacity:.9; font-size: clamp(1rem, 2.2vw, 1.125rem);
}

/* bullets */
.cta-bullets{
  display:flex; flex-wrap:wrap; gap:.75rem 1rem;
  justify-content:center; list-style:none; padding:0; margin:0 0 1.5rem;
  color:#d9feff;
}

/* actions */
.cta-actions{
  display:flex; flex-wrap:wrap; gap:.75rem;
  align-items:center; justify-content:center;
  margin-bottom: 1.25rem;
}
.btn-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.25rem; border-radius: 999px;
  font-weight:700; letter-spacing:.02em;
  border:1px solid rgba(0,255,255,.28);
  color:#9dfcff; background: rgba(255,255,255,.05);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  backdrop-filter: blur(6px);
  text-decoration: none;
}
.btn-cta.primary{
  background: #00ffff; color:#041315; border-color: transparent;
  box-shadow: 0 0 18px rgba(0,255,255,.35);
}
.btn-cta.primary:hover{ transform: translateY(-2px) scale(1.02); box-shadow:0 8px 28px rgba(0,255,255,.35); }
.btn-cta.ghost:hover{ background: rgba(0,255,255,.12); color:#eaffff; text-decoration: none;}
.btn-cta.soft{ background: rgba(255,255,255,.06); text-decoration: none;}
.btn-cta.soft:hover{ background: rgba(255,255,255,.12); text-decoration: none;}

/* badges */
.cta-badges{
  display:flex; flex-wrap:wrap; gap:.5rem .75rem;
  justify-content:center; margin-top:.4rem;
}
.badge{
  padding:.45rem .75rem; border-radius:999px;
  background: rgba(0,255,255,.08);
  border:1px solid rgba(0,255,255,.22);
  color:#93f8ff; font-size:.85rem; white-space:nowrap;
}

/* toast */
.toast{
  position: fixed; left:50%; bottom: 2rem; transform: translateX(-50%) translateY(20px);
  padding:.65rem 1rem; border-radius:.75rem;
  background: rgba(0, 255, 255, .14);
  border: 1px solid rgba(0,255,255,.25);
  color:#eaffff; font-weight:700; backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  opacity:0; pointer-events:none; transition: opacity .25s ease, transform .25s ease;
  z-index:50;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* responsive */
@media (max-width: 720px){
  .cta-bullets{ flex-direction:column; gap:.4rem; }
}
















