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

:root{
  --bg:#050505;
  --card:#101010;
  --accent:#E8FF00;
  --text:#bcbcbc;
  --white:#ffffff;
  --line:rgba(255,255,255,0.08);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Space Grotesk',sans-serif;
  background:var(--bg);
  color:var(--white);
  overflow-x:hidden;

  background-image:
  linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size:60px 60px;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1280px, calc(100% - 40px));
  margin:auto;
}

/* FIX HORIZONTAL SCROLL */

html,
body{
  overflow-x:hidden;
  width:100%;
}

/* NOISE */

.noise{
  position:fixed;
  inset:0;
  background:url('https://grainy-gradients.vercel.app/noise.svg');
  opacity:0.03;
  pointer-events:none;
  z-index:9999;
}

/* NAVBAR */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(20px);
  background:rgba(5,5,5,0.7);
}

.logo img{
  width:170px;
  transition:0.3s ease;
}

.logo img:hover{
  transform:scale(1.05);
}

.nav-links{
  display:flex;
  gap:35px;
}

.nav-links a{
  color:var(--text);
  transition:0.3s ease;
}

.nav-links a:hover{
  color:var(--accent);
}

.btn{
  padding:14px 28px;
  background:var(--accent);
  color:#000;
  border-radius:999px;
  font-weight:700;
  transition:0.3s ease;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 30px rgba(232,255,0,0.35);
}

.secondary-btn{
  border:1px solid var(--line);
  padding:14px 28px;
  border-radius:999px;
  transition:0.3s ease;
}

.secondary-btn:hover{
  border-color:var(--accent);
  color:var(--accent);
}

/* HERO */

.hero{
  padding:50px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.tag{
  display:inline-block;
  padding:12px 22px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--accent);
  margin-bottom:30px;
  animation:tagPulse 3s infinite;
}

.hero h1{
  font-size:clamp(3.2rem,7vw,6.5rem);
  line-height:0.9;
  letter-spacing:-4px;
  margin-bottom:25px;
}

.hero h1 span{
  color:var(--accent);
}

.hero p{
  color:var(--text);
  line-height:1.9;
  max-width:650px;
  margin-bottom:30px;
  font-size:1.05rem;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

/* HERO VISUAL */

.hero-visual{
  position:relative;
  height:700px;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
  animation:heroFloat 6s ease-in-out infinite;
}

/* BIG GLOW */

.hero-glow{
  position:absolute;
  width:700px;
  height:700px;
  background:
  radial-gradient(circle,
  rgba(232,255,0,0.16),
  transparent 70%);
  top:-250px;
  left:50%;
  transform:translateX(-50%);
  z-index:0;
}

/* IMAGE */

.wave{
  position:absolute;
  inset:0;
  background:
  url('images/Untitled design (2).png')
  center center/contain no-repeat;
  z-index:2;
  transition:0.6s ease;
  filter:
  drop-shadow(0 0 50px rgba(232,255,0,0.15));
}

.hero-visual:hover .wave{
  transform:scale(1.04);
}

/* FLOATING ICONS */

.floating-icon{
  position:absolute;
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-size:2rem;
  z-index:5;
  box-shadow:0 0 30px rgba(0,0,0,0.2);
}

.icon1{
  top:80px;
  left:40px;
  animation:float1 5s ease-in-out infinite;
}

.icon2{
  bottom:120px;
  right:40px;
  animation:float2 6s ease-in-out infinite;
}

.icon3{
  top:50%;
  left:-20px;
  animation:float3 7s ease-in-out infinite;
}

/* TEXT ANIMATION */

.hero h1{
  animation:textReveal 1s ease;
}

/* BUTTONS */

.hero-buttons .btn{
  animation:pulseGlow 2s infinite;
}

/* ANIMATIONS */

@keyframes heroFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes float1{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-18px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes float2{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(18px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes float3{

  0%{
    transform:translateX(0px);
  }

  50%{
    transform:translateX(18px);
  }

  100%{
    transform:translateX(0px);
  }

}

@keyframes pulseGlow{

  0%{
    box-shadow:0 0 0 rgba(232,255,0,0);
  }

  50%{
    box-shadow:0 0 35px rgba(232,255,0,0.35);
  }

  100%{
    box-shadow:0 0 0 rgba(232,255,0,0);
  }

}

@keyframes textReveal{

  0%{
    opacity:0;
    transform:translateY(40px);
  }

  100%{
    opacity:1;
    transform:translateY(0);
  }

}

/* GENERAL */

section{
  padding:55px 0;
}

.section-title{
  font-size:clamp(3rem,7vw,6rem);
  line-height:0.95;
  letter-spacing:-4px;
  margin-bottom:20px;
}

.section-sub{
  color:var(--text);
  line-height:1.9;
  max-width:700px;
  margin-bottom:70px;
}

/* MARQUEE */

.marquee{
  width:100%;
  margin-left:0%;
  overflow:hidden;
  background:var(--accent);
  padding:22px 0;
  position:relative;

  transform:rotate(-2deg);
  z-index:20;

  box-shadow:
  0 0 40px rgba(232,255,0,0.25);
}

/* DARK OVERLAY GLOW */

.marquee::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    90deg,
    rgba(255,255,255,0.08),
    transparent,
    rgba(255,255,255,0.08)
  );
  pointer-events:none;
}

/* TRACK */

.track{
  display:flex;
  align-items:center;
  gap:90px;
  width:max-content;

  animation:marqueeMove 18s linear infinite;
}

/* TEXT */

.track span{
  position:relative;
  font-size:1.1rem;
  font-weight:800;
  color:#000;
  white-space:nowrap;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* STAR */

.track span::after{
  content:'✦';
  color:#000;
  margin-left:90px;
  font-size:1rem;
}

/* HOVER PAUSE */

.marquee:hover .track{
  animation-play-state:paused;
}

/* ANIMATION */

@keyframes marqueeMove{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:70px;
}

/* CARD */

.service-card{
  position:relative;
  background:
  linear-gradient(180deg,#101010 0%, #080808 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:34px;
  padding:40px;
  overflow:hidden;
  transition:0.5s ease;
  isolation:isolate;
}

/* GLOW */

.service-card::before{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  background:
  radial-gradient(circle,
  rgba(232,255,0,0.10),
  transparent 70%);
  top:-140px;
  right:-140px;
  transition:0.5s ease;
}

/* HOVER */

.service-card:hover{
  transform:
  translateY(-12px)
  scale(1.02);
  border-color:rgba(232,255,0,0.25);
  box-shadow:
  0 25px 60px rgba(0,0,0,0.4);
}

.service-card:hover::before{
  transform:scale(1.2);
}

/* NUMBER */

.service-number{
  color:var(--accent);
  font-size:1rem;
  font-weight:700;
  margin-bottom:20px;
  letter-spacing:1px;
}

/* ICON */

.service-icon{
  width:75px;
  height:75px;
  border-radius:22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  margin-bottom:28px;
  backdrop-filter:blur(10px);
  transition:0.4s ease;
}

/* ICON HOVER */

.service-card:hover .service-icon{
  transform:
  rotate(-8deg)
  scale(1.08);
  background:rgba(232,255,0,0.08);
}

/* TITLE */

.service-card h3{
  font-size:2.4rem;
  line-height:1;
  margin-bottom:24px;
  max-width:300px;
}

/* TEXT */

.service-card p{
  color:var(--text);
  line-height:1.9;
  font-size:1rem;
}

/* CARD BORDER LIGHT */

.service-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:34px;
  border:1px solid rgba(255,255,255,0.05);
  pointer-events:none;
}

/* WORK */

.work-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:70px;
}

/* CARD */

.work-card{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  height:650px;
  border:1px solid rgba(255,255,255,0.08);
  background:#0d0d0d;
  isolation:isolate;
  transition:0.5s ease;
}

/* IMAGE */

.work-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:0.8s ease;
  filter:brightness(0.75);

  background:#0d0d0d;
  padding:12px;
}

/* OVERLAY */

.overlay{
  position:absolute;
  inset:0;
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.2),
    transparent
  );
  z-index:2;
}

/* CATEGORY */

.overlay span{
  color:var(--accent);
  margin-bottom:16px;
  font-size:1rem;
  font-weight:600;
  letter-spacing:1px;
  transform:translateY(20px);
  opacity:0;
  transition:0.5s ease;
}

/* TITLE */

.overlay h3{
  font-size:3rem;
  line-height:0.95;
  max-width:500px;
  transform:translateY(40px);
  opacity:0;
  transition:0.6s ease;
}

/* HOVER EFFECT */

.work-card:hover{
  transform:translateY(-12px);
  border-color:rgba(232,255,0,0.25);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

/* IMAGE ZOOM */

.work-card:hover img{
  transform:scale(1.08);
  filter:brightness(1);
}

/* TEXT REVEAL */

.work-card:hover .overlay span,
.work-card:hover .overlay h3{
  transform:translateY(0);
  opacity:1;
}

/* GLOW */

.work-card::before{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:
  radial-gradient(circle,
  rgba(232,255,0,0.12),
  transparent 70%);
  top:-180px;
  right:-180px;
  opacity:0;
  transition:0.6s ease;
  z-index:1;
}

.work-card:hover::before{
  opacity:1;
  transform:scale(1.2);
}

/* SHINE EFFECT */

.work-card::after{
  content:'';
  position:absolute;
  top:-120%;
  left:-40%;
  width:60%;
  height:250%;
  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  transform:rotate(20deg);
  transition:0.9s ease;
  z-index:3;
}

.work-card:hover::after{
  left:140%;
}

/* ABOUT */

.about-box{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:40px;
  padding:45px 60px 0;
  position:relative;
  overflow:hidden;
  min-height:800px;
}

.about-box::before{
  content:'';
  position:absolute;
  width:650px;
  height:650px;
  background:radial-gradient(circle, rgba(232,255,0,0.08), transparent 70%);
  right:-180px;
  top:50%;
  transform:translateY(-50%);
}

.about-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  position:relative;
}

.about-content{
  width:44%;
  position:relative;
  z-index:5;
  padding-top:20px;
}

.about-content .section-title{
  font-size:clamp(2.3rem,4vw,4.5rem);
  line-height:0.95;
  letter-spacing:-3px;
  margin-bottom:30px;
  max-width:500px;
}

.about-content .section-title span{
  color:var(--accent);
}

.about-text{
  color:var(--text);
  line-height:1.9;
  margin-bottom:25px;
  font-size:1rem;
  max-width:540px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:45px;
}

.feature{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--line);
  padding:20px;
  border-radius:20px;
  transition:0.3s ease;
}

.feature:hover{
  transform:translateY(-5px);
  border-color:rgba(232,255,0,0.3);
  background:rgba(232,255,0,0.05);
}

.about-visual{
  position:absolute;
  right:-100px;
  bottom:-80px;
  width:52%;
  height:100%;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  pointer-events:none;
}

.about-visual img{
  height:110%;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 40px rgba(232,255,0,0.10));
}

/* TESTIMONIALS */

.testimonials-section{
  padding:120px 0;
  position:relative;
}

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.section-heading span{
  color:var(--accent);
  font-size:14px;
  letter-spacing:2px;
  font-weight:700;
  display:inline-block;
  margin-bottom:18px;
}

.section-heading h2{
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:1;
  margin-bottom:20px;
  letter-spacing:-3px;
}

.section-heading p{
  color:var(--text);
  max-width:700px;
  margin:auto;
  line-height:1.9;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.testimonial-card{
  position:relative;
  background:linear-gradient(180deg,#101010 0%, #080808 100%);
  border:1px solid var(--line);
  border-radius:35px;
  padding:40px;
  overflow:hidden;
  transition:0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  border-color:rgba(232,255,0,0.3);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.testimonial-card::before{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(232,255,0,0.08), transparent 70%);
  top:-120px;
  right:-120px;
}

.quote-icon{
  position:absolute;
  top:20px;
  right:30px;
  font-size:5rem;
  opacity:0.05;
  font-weight:700;
}

.stars{
  color:var(--accent);
  margin-bottom:25px;
  letter-spacing:4px;
}

.testimonial-card p{
  color:var(--text);
  line-height:1.9;
  font-size:1.05rem;
  margin-bottom:35px;
}

.testimonial-user{
  display:flex;
  align-items:center;
  gap:16px;
}

.user-image{
  width:60px;
  height:60px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(232,255,0,0.3);
}

.user-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.testimonial-user h4{
  font-size:1.1rem;
  margin-bottom:4px;
}

.testimonial-user span{
  color:var(--text);
  font-size:0.92rem;
}

/* TEAM */

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

.team-card{
  background:#0d0d0d;
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  transition:0.4s ease;
}

.team-card:hover{
  transform:translateY(-8px);
  border-color:rgba(232,255,0,0.25);
}

.team-image{
  height:300px;
  overflow:hidden;
  background:#111;
}

.team-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.team-content{
  padding:28px;
}

.team-content span{
  color:var(--accent);
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:1px;
  display:block;
  margin-bottom:15px;
}

.team-content h3{
  font-size:1.7rem;
  margin-bottom:15px;
}

.team-content p{
  color:var(--text);
  line-height:1.8;
}

/* PROCESS */

.process-wrapper{
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:70px;
  position:relative;
}

.process-card{
  flex:1;
  position:relative;
  background:linear-gradient(180deg,#111 0%, #090909 100%);
  border:1px solid var(--line);
  border-radius:32px;
  padding:40px 32px;
  min-height:320px;
  overflow:hidden;
  transition:0.45s ease;
}

.process-card::before{
  content:'';
  position:absolute;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(232,255,0,0.08), transparent 70%);
  top:-120px;
  right:-120px;
}

.process-card:hover{
  transform:translateY(-12px);
  border-color:rgba(232,255,0,0.35);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.step-badge{
  position:absolute;
  top:22px;
  right:22px;
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(232,255,0,0.08);
  border:1px solid rgba(232,255,0,0.2);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.process-icon{
  font-size:3rem;
  margin-bottom:25px;
}

.process-card h3{
  font-size:2.3rem;
  margin-bottom:20px;
}

.process-card p{
  color:var(--text);
  line-height:1.9;
  font-size:1rem;
}

.process-line{
  height:3px;
  flex:0.3;
  background:linear-gradient(
    to right,
    rgba(232,255,0,0.1),
    rgba(232,255,0,1),
    rgba(232,255,0,0.1)
  );
  position:relative;
}

.process-line::after{
  content:'';
  position:absolute;
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  width:14px;
  height:14px;
  background:var(--accent);
  border-radius:50%;
  box-shadow:0 0 20px rgba(232,255,0,0.8);
}

/* CTA */

.cta{
  position:relative;
  background:linear-gradient(180deg,#0d0d0d 0%,#080808 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:45px;
  padding:130px 40px;
  text-align:center;
  overflow:hidden;
  isolation:isolate;
}

/* GLOW */

.cta::before{
  content:'';
  position:absolute;
  width:750px;
  height:750px;
  background:
  radial-gradient(circle,
  rgba(232,255,0,0.12),
  transparent 70%);
  top:-380px;
  left:50%;
  transform:translateX(-50%);
  z-index:-1;
}

/* TAG */

.cta-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 24px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  background:rgba(255,255,255,0.03);
  color:var(--accent);
  margin-bottom:35px;
  font-size:0.9rem;
  letter-spacing:1px;
  backdrop-filter:blur(12px);
}

/* HEADING */

.cta h2{
  font-size:clamp(4rem,9vw,8rem);
  line-height:0.9;
  letter-spacing:-5px;
  margin-bottom:30px;
  max-width:1100px;
  margin-inline:auto;
  position:relative;

  animation:
  ctaReveal 1s ease,
  ctaFloat 5s ease-in-out infinite;
}

.cta h2 span{
  position:relative;
  display:inline-block;

  background:linear-gradient(
    90deg,
    #d9ff00,
    #ffffff,
    #d9ff00
  );

  background-size:200% auto;

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

  animation:shineText 5s linear infinite;
}

/* TEXT */

.cta p{
  color:var(--text);
  max-width:760px;
  margin:0 auto 45px;
  line-height:1.9;
  font-size:1.08rem;
}

/* BUTTONS */

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.cta .btn{
  padding:18px 34px;
  font-size:1rem;
  box-shadow:0 0 30px rgba(232,255,0,0.15);
}

.cta .btn:hover{
  transform:translateY(-5px);
  box-shadow:0 0 40px rgba(232,255,0,0.35);
}

/* FOOTER */

footer{
  position:relative;
  padding:120px 0 40px;
  overflow:hidden;
}

/* BIG GLOW */

footer::before{
  content:'';
  position:absolute;
  width:900px;
  height:900px;
  background:
  radial-gradient(circle,
  rgba(232,255,0,0.07),
  transparent 70%);
  left:-250px;
  bottom:-500px;
  pointer-events:none;
}

/* MAIN GRID */

.footer{
  position:relative;
  display:grid;
  grid-template-columns:1.4fr 0.8fr 1fr;
  gap:90px;
  padding-bottom:55px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* LOGO */

.footer-left img{
  width:190px;
  margin-bottom:30px;
  transition:0.5s ease;
}

.footer-left img:hover{
  transform:translateY(-6px) scale(1.03);
  filter:drop-shadow(0 0 15px rgba(232,255,0,0.35));
}

/* HEADING */

.footer-left h3{
  font-size:4rem;
  line-height:0.95;
  margin-bottom:30px;
  letter-spacing:-3px;
  max-width:500px;
}

/* TEXT */

.footer-left p{
  color:var(--text);
  line-height:2;
  max-width:500px;
  font-size:1.02rem;
}

/* TITLES */

.footer-links h4,
.footer-contact h4{
  font-size:1.5rem;
  margin-bottom:30px;
  color:var(--accent);
  position:relative;
}

/* UNDERLINE ANIMATION */

.footer-links h4::after,
.footer-contact h4::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-10px;
  width:50px;
  height:2px;
  background:var(--accent);
  transition:0.4s ease;
}

.footer-links:hover h4::after,
.footer-contact:hover h4::after{
  width:90px;
}

/* LINKS */

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:var(--text);
  margin-bottom:18px;
  transition:0.35s ease;
  width:fit-content;
  position:relative;
}

.footer-links a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-3px;
  width:0%;
  height:1px;
  background:var(--accent);
  transition:0.4s ease;
}

.footer-links a:hover{
  color:var(--white);
  transform:translateX(8px);
}

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

/* CONTACT */

.footer-contact p{
  color:var(--text);
  margin-bottom:22px;
  line-height:1.8;
  transition:0.35s ease;
}

.footer-contact p:hover{
  color:var(--white);
  transform:translateX(6px);
}

/* SOCIALS */

.footer-socials{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.footer-socials a{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  transition:0.4s ease;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(10px);
}

.footer-socials a:hover{
  background:var(--accent);
  color:#000;
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(232,255,0,0.35);
}

/* BOTTOM */

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

.footer-bottom p,
.footer-bottom span{
  color:var(--text);
  font-size:0.95rem;
}

/* FLOATING ANIMATION */

.footer-left{
  animation:footerFloat 5s ease-in-out infinite;
}

@keyframes footerFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-grid,
  .services-grid,
  .work-grid,
  .team-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
  .services-grid{
  grid-template-columns:1fr;
}

.service-card h3{
  font-size:2rem;
}

.team-grid{
  grid-template-columns:repeat(2,1fr);
}

/* WORK */

.work-card{
  height:500px;
}

  /* PROCESS */

  .process-wrapper{
    flex-direction:column;
    align-items:stretch;
  }

  .process-line{
    width:3px;
    height:60px;
    margin:auto;
  }

  .process-line::after{
    right:50%;
    top:auto;
    bottom:-8px;
    transform:translateX(50%);
  }

  .process-card{
    width:100%;
    min-height:auto;
  }

  /* ABOUT */

  .about-grid{
    flex-direction:column;
  }

  .about-content{
    width:100%;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .about-box{
    padding:40px 25px;
    min-height:auto;
  }

  .about-visual{
    position:relative;
    width:100%;
    right:auto;
    bottom:auto;
    margin-top:40px;
    justify-content:center;
  }

  .about-visual img{
    max-width:400px;
    height:auto;
  }

  /* FOOTER */

  .footer{
  grid-template-columns:1fr;
  gap:60px;
}

.footer-left h3{
  font-size:3rem;
}

.footer-bottom{
  flex-direction:column;
  align-items:flex-start;
}

}

@media(max-width:768px){

  /* TESTIMONIALS */

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .testimonial-card{
    padding:28px;
  }

  .section-heading h2{
    letter-spacing:-2px;
  }

  /* PROCESS */

  .process-card{
    padding:32px 24px;
  }

  .process-card h3{
    font-size:2rem;
  }

}

@media(max-width:700px){

  .nav-links{
    display:none;
  }

  .hero h1,
  .section-title{
    letter-spacing:-2px;
  }

  .hero{
    padding:20px 0 40px;
  }

  .hero-visual{
    height:420px;
  }

  .team-grid{
  grid-template-columns:1fr;
}

  .team-image{
    height:320px;
  }

  .cta{
  padding:90px 24px;
  border-radius:30px;
}

.cta h2{
  font-size:52px;
  line-height:1;
  letter-spacing:-2px;
}

}

@keyframes tagPulse{

  0%{
    box-shadow:0 0 0 rgba(232,255,0,0);
  }

  50%{
    box-shadow:0 0 25px rgba(232,255,0,0.18);
  }

  100%{
    box-shadow:0 0 0 rgba(232,255,0,0);
  }

  
}

/* CTA HEADING ANIMATIONS */

@keyframes ctaReveal{

  0%{
    opacity:0;
    transform:translateY(60px);
  }

  100%{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes ctaFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes shineText{

  0%{
    background-position:0% center;
  }

  100%{
    background-position:200% center;
  }

}

/* REMOVE LARGE SECTION GAPS */

.services,
.work,
.about,
.testimonials,
.team,
.cta{
  margin:0;
}