.about{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0px 4%;
  gap:60px;
  /* background:radial-gradient(circle at top left,#111,#000); */
  backdrop-filter:blur(4px);
  background-color: rgba(190, 190, 190, 0.306);
}

/* ===== LEFT CONTENT ===== */
.ebad{
  width:60%;
}

.ebad h1{
  margin-bottom:25px;
  color:#9a9a9a;
  display:inline-block;      /* IMPORTANT */
  overflow:hidden;           /* hide extra text */
  white-space:nowrap;        /* single line */
  /* border-right:3px solid #9a9a9a; cursor */
  width:0;
  animation:
    typing 3s steps(20, end) forwards,
    blink 0.7s infinite;
}

/* typing effect */
@keyframes typing{
  from{ width:0 }
  to{ width:20ch } /* text length ke hisaab se */
}

/* cursor blink */
@keyframes blink{
  50%{ border-color:transparent; }
}


/* About SAME SIZE + white */
.ebad h1 span{
  color:#fff;
  font-size:inherit;
  font-weight:inherit;
  
}

.ebad p{
  font-size:16px;
  line-height:1.8;
  color:#ccc;
  margin-bottom:18px;
}

.ebad span{
  display:block;
  margin:0px 0 15px;
  padding-left:15px;
  font-weight:600;
  font-size:18px;
  color:#fff;
  position:relative;
}

/* Gradient Animated Border */
.ebad span::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(
    180deg,
    #ffffff,
    #838383,
    #ffffff,
    #9c9c9c
  );
  background-size:100% 300%;
  animation:gradientMove 4s ease-in-out infinite;
  border-radius:5px;
}

/* Smooth flowing animation */
@keyframes gradientMove{
  0%{
    background-position:0% 0%;
  }
  50%{
    background-position:0% 100%;
  }
  100%{
    background-position:0% 0%;
  }
}

.ebad ul{
  padding-left:20px;
}

.ebad ul li{
  margin-bottom:12px;
  color:#bbb;
}

/* ===== RIGHT SIDE ===== */
.bilal{
  width:40%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* ===== ANIMATION ===== */
.container {
    position:absolute;
    top: 20%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle{
    position: absolute;
    margin-top:100px;
    background: transparent;
    width: calc(var(--i) * 2.9vmin);
    aspect-ratio: 1;
    border-radius:50%;
    border:3px solid gray;
    transform:rotateX(70deg) translateZ(50px);
    animation: animate 3s ease-in-out calc(var(--i) * 0.08s) infinite;
    box-shadow:0 0 15px rgb(105,105,105),
    inset 0 0 15px rgb(138,138,138);  
}

@keyframes animate{
    0%,100%{
        transform: rotateX(70deg) translateZ(50px) translateY(0);
    }
    50% {
        transform:rotateX(70deg) translateZ(50px) translateY(-70vmin);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .about{flex-direction:row;}
  .ebad,.bilal{width:100%;}
  .circle{
    position: absolute;
    margin-top:100px;
    background: transparent;
    width: calc(var(--i) * 1.6vmin);
    aspect-ratio: 1;
    border-radius:50%;
    border:3px solid gray;
    transform:rotateX(90deg) translateZ(50px);
    animation: animate 3s ease-in-out calc(var(--i) * 0.08s) infinite;
    box-shadow:0 0 15px rgb(105,105,105),
    inset 0 0 12px rgb(138,138,138);  
}
}

@media (max-width:992px){
  .about{flex-direction:column;}
  .ebad,.bilal{width:100%;}
  .container{margin-top:200px;}
  .circle{
    position: absolute;
    margin-top:100px;
    background: transparent;
    width: calc(var(--i) * 2.9vmin);
    aspect-ratio: 1;
    border-radius:50%;
    border:3px solid gray;
    transform:rotateX(70deg) translateZ(50px);
    animation: animate 3s ease-in-out calc(var(--i) * 0.08s) infinite;
    box-shadow:0 0 15px rgb(105,105,105),
    inset 0 0 15px rgb(138,138,138);  
}
}

@media (max-width:768px){
  .about{flex-direction:column;}
  .container{margin-top:300px;}
  .circle{
    position: absolute;
    margin-top:100px;
    background: transparent;
    width: calc(var(--i) * 2.9vmin);
    aspect-ratio: 1;
    border-radius:50%;
    border:3px solid gray;
    transform:rotateX(70deg) translateZ(50px);
    animation: animate 3s ease-in-out calc(var(--i) * 0.08s) infinite;
    box-shadow:0 0 15px rgb(105,105,105),
    inset 0 0 15px rgb(138,138,138);  
}
}
.ebad h1{
  font-size:30px;
  margin-top:25px;
  color:#9a9a9a; /* Multi Fusion color */
  display:flex;
  gap:10px;
  
}

@media (max-width:375px){
  
 .ebad h1{
  font-size:30px;
  margin-top:25px;
  color:#9a9a9a; /* Multi Fusion color */
  display:flex;
  gap:10px;
}
}

:root {
  /* --bg:       #afafb153; */
  --surface:  #0d0d14;
  --card:     #111118;
  --border:   rgba(161, 159, 159, 0);
  --text:     #e8e8f0;
  --muted:    #6b6b7a;
  --accent:   #00f5a0;
  --accent2:  #7b5ea7;
  --accent3:  #ff6b35;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  backdrop-filter:blur(4px);
  background-color: rgba(156, 155, 155, 0.224);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  cursor: none;
  overflow-x: hidden;
}
/* HERO */
  .hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;   /* left aligned text */
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.services-header {
  text-align: center;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-header .section-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.services-header .section-label::before {
  display: none;
}

.services-section {
  padding: 8rem 4rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,245,160,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,245,160,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
  }
  @keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,245,160,0.12), transparent 70%);
    top: -100px; right: -100px;
    animation-delay: 0s;
  }
  .hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,94,167,0.15), transparent 70%);
    bottom: 0; left: 10%;
    animation-delay: -4s;
  }
  @keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  .hero-title .line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
  }
  .hero-title .line:nth-child(1) { animation-delay: 0.5s; }
  .hero-title .line:nth-child(2) { animation-delay: 0.7s; color: var(--accent); }
  .hero-title .line:nth-child(3) { animation-delay: 0.9s; color: var(--muted); }

  .hero-desc {
    max-width: 500px;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(243, 243, 247, 0.678);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.1s;
    position: relative; z-index: 1;
  }

  .hero-stats {
    display: flex; gap: 4rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.3s;
    position: relative; z-index: 1;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
  }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  .scroll-indicator {
    position: absolute; bottom: 3rem; left: 4rem;
    display: flex; align-items: center; gap: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease forwards 1.5s;
    opacity: 0;
  }
  .scroll-line {
    width: 60px; height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; width: 60px; }
    50% { opacity: 0.4; width: 30px; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SECTION BASE */
  section { position: relative; z-index: 1; }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.01em;
  }

  /* ABOUT SECTION */
  .about-section {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 500px;
  }
  .about-card {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 2px;
  }
  .about-card-main {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0d0d12, #111118);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .orbit-container {
    width: 300px; height: 300px;
    position: relative;
    animation: rotate 20s linear infinite;
  }
  .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
  }
  .orbit-ring-1 {
    inset: 0;
    border-color: rgba(172, 174, 173, 0.619);
  }
  .orbit-ring-2 {
    inset: 40px;
    border-color: rgba(123,94,167,0.2);
    animation: rotateReverse 15s linear infinite;
  }
  .orbit-ring-3 {
    inset: 80px;
    border-color: rgba(214, 213, 213, 0.39);
    animation: rotate 10s linear infinite;
  }
  .orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--bg);
    animation: rotateReverse 20s linear infinite;
  }
  .orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    top: -5px; left: 50%;
    transform: translateX(-50%);
  }
  .dot-green { background: var(--accent); box-shadow: 0 0 15px var(--accent); }
  .dot-purple { background: var(--accent2); box-shadow: 0 0 15px var(--accent2); }
  .dot-orange { background: var(--accent3); box-shadow: 0 0 15px var(--accent3); }

  @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes rotateReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

  .floating-badge {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: badgeFloat 4s ease-in-out infinite;
  }
  .badge-1 { bottom: 20px; right: -20px; animation-delay: 0s; border-left: 2px solid var(--accent); }
  .badge-2 { top: 30px; left: -20px; animation-delay: -2s; border-left: 2px solid var(--accent2); }
  .badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--text); display: block; }
  @keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .about-text p {
    color: rgba(232,232,240,0.6);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  .about-text .highlight { color: var(--accent); font-weight: 400; }
  .values-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2.5rem;
  }
  .value-item {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.2rem;
    border-radius: 2px;
    border-top: 2px solid var(--accent);
    transition: transform 0.3s;
  }
  .value-item:hover { transform: translateY(-4px); }
  .value-item:nth-child(2) { border-top-color: var(--accent2); }
  .value-item:nth-child(3) { border-top-color: var(--accent3); }
  .value-item:nth-child(4) { border-top-color: #989a9a; }
  .value-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }
  .value-desc { font-size: 0.9rem; color: var(--text); }

  /* SERVICES */
  .services-section { padding: 8rem 4rem; background: var(--surface); }
  .services-header { text-align: center; margin-bottom: 5rem; }
  .services-header .section-label { justify-content: center; }
  .services-header .section-label::before { display: none; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
  }
  .service-card {
    background: var(--surface);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: background 0.4s;
    group: true;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0,245,160,0.03));
    opacity: 0;
    transition: opacity 0.4s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover { background: var(--card); }

  .service-card:nth-child(2)::before { background: linear-gradient(135deg, transparent, rgba(123,94,167,0.05)); }
  .service-card:nth-child(3)::before { background: linear-gradient(135deg, transparent, rgba(255,107,53,0.05)); }
  .service-card:nth-child(4)::before { background: linear-gradient(135deg, transparent, rgba(78,205,196,0.05)); }
  .service-card:nth-child(5)::before { background: linear-gradient(135deg, transparent, rgba(255,210,50,0.05)); }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--border);
    line-height: 1;
    position: absolute;
    top: 1.5rem; right: 2rem;
    transition: color 0.4s;
  }
  .service-card:hover .service-num { color: rgba(255,255,255,0.05); }

  .service-icon {
    width: 56px; height: 56px;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    position: relative; z-index: 1;
  }
  .icon-green { background: rgba(0,245,160,0.1); color: var(--accent); border: 1px solid rgba(0,245,160,0.2); }
  .icon-purple { background: rgba(123,94,167,0.1); color: var(--accent2); border: 1px solid rgba(123,94,167,0.2); }
  .icon-orange { background: rgba(255,107,53,0.1); color: var(--accent3); border: 1px solid rgba(255,107,53,0.2); }
  .icon-teal { background: rgba(78,205,196,0.1); color: #4ecdc4; border: 1px solid rgba(78,205,196,0.2); }
  .icon-yellow { background: rgba(255,210,50,0.1); color: #ffd232; border: 1px solid rgba(255,210,50,0.2); }
  .icon-blue { background: rgba(100,160,255,0.1); color: #64a0ff; border: 1px solid rgba(100,160,255,0.2); }

  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    position: relative; z-index: 1;
  }
  .service-desc {
    font-size: 0.9rem;
    color: rgba(232,232,240,0.5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    position: relative; z-index: 1;
  }
  .tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.2rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
  }
  .service-card:hover .tag {
    border-color: rgba(202, 206, 204, 0.603);
    color: rgba(232,232,240,0.7);
  }

  .service-arrow {
    position: absolute;
    bottom: 2.5rem; right: 2.5rem;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    transition: all 0.3s;
    z-index: 1;
  }
  .service-card:hover .service-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translate(3px, -3px);
  }

  /* TEAM */
  .team-section { padding: 8rem 4rem; }
  .team-header { margin-bottom: 4rem; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .team-card {
    position: relative; overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: transform 0.4s;
  }
  .team-card:hover { transform: translateY(-8px); }
  .team-avatar {
    width: 100%;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
  }
  .avatar-bg-1 { background: linear-gradient(135deg, #001a0d, #004d2c); }
  .avatar-bg-2 { background: linear-gradient(135deg, #0d001a, #2c0052); }
  .avatar-bg-3 { background: linear-gradient(135deg, #1a0500, #4d1800); }
  .avatar-bg-4 { background: linear-gradient(135deg, #001a1a, #00424d); }

  .avatar-initial {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(176, 170, 170, 0.15);
  }
  .avatar-emoji { position: absolute; font-size: 3rem; }
  .team-info { padding: 1.5rem; }
  .team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
  }
  .team-role {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }
  .team-bio {
    font-size: 0.85rem;
    color: rgba(232,232,240,0.5);
    line-height: 1.7;
    margin-top: 0.8rem;
  }

  /* PROCESS */
  .process-section {
    padding: 8rem 4rem;
    background: var(--surface);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  .process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
  }
  .step-num-outer {
    width: 56px; height: 56px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }
  .step-num-outer:hover {
    border-color: var(--accent);
    background: rgba(137, 138, 138, 0.1);
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
  }
  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  .step-desc {
    font-size: 0.8rem;
    color: rgba(232,232,240,0.4);
    line-height: 1.7;
  }

  /* TECH STACK */
  .tech-section { padding: 6rem 4rem; }
  .tech-header { margin-bottom: 3rem; }
  .tech-scroll {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  }
  .tech-track {
    display: flex; gap: 1.5rem;
    animation: techScroll 25s linear infinite;
    width: max-content;
  }
  .tech-track-reverse { animation: techScrollRev 20s linear infinite; margin-top: 1rem; }
  @keyframes techScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes techScrollRev {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
  .tech-pill {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    transition: all 0.3s;
    background: var(--card);
  }
  .tech-pill:hover {
    color: var(--accent);
    border-color: rgba(170, 172, 171, 0.3);
  }

  /* CTA / FOOTER */
  .cta-section {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,245,160,0.06), transparent);
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 1;
    position: relative; z-index: 1;
    margin-bottom: 1.5rem;
  }
  .cta-title span { color: var(--accent); }
  .cta-sub {
    color: rgba(232,232,240,0.5);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative; z-index: 1;
  }
  .cta-buttons {
    display: flex; gap: 1rem; justify-content: center;
    position: relative; z-index: 1;
  }
  .btn-primary {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    cursor: none;
    transition: all 0.3s;
  }
  .btn-primary:hover {  background: linear-gradient(to right , rgba(211, 211, 211, 0.295),rgba(165, 165, 165, 0.313),rgba(126, 126, 126, 0.322),rgba(61, 61, 61, 0.308));    
; transform: translateY(-2px); }
  .btn-secondary {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    cursor: none;
    transition: all 0.3s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.3); }

  /* Reveal animation on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Highlight line animation */
  .underline-anim {
    position: relative;
    display: inline-block;
  }
  .underline-anim::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 1s ease;
  }
  .visible .underline-anim::after { width: 100%; }

  @media (max-width: 900px) {
    nav { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    .hero, .about-section, .services-section, .team-section, .process-section, .tech-section, .cta-section { padding: 5rem 2rem; }
    .about-section { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }