/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --bg: #0d0d0d;
  --dark: #151515;
  --card: #1a1a1a;
  --text: #ffffff;
  --muted: #b5b5b5;
  --accent: #00f2c3;
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: 0.35s ease;
}

/* =========================================================
   GLOBAL RESET
========================================================= */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  cursor: none !important;
  /* Hide default cursor */
}



.custom-cursor {
  width: 25px;
  height: 25px;
  background: #00ff88c5;
  /* or your brand color */
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}


/* -------------------------------custome fonts---------------------------------- */

@font-face {
  font-family: 'MyCustomFont';
  src: url('/FONTS/Rushon\ Ground.ttf') format('woff2'),
    url('/FONTS/Rushon\ Ground.woff') format('woff'),
    url('/FONTS/Rushon\ Ground.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}






/* ===== FULLSCREEN LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* HORIZONTAL ALIGNMENT */
.bars {
  display: flex;
  align-items: flex-end;
}

/* BAR STYLE */
.loader {
  width: 5px;
  height: 35px;
  margin-left: 4px;
  border-radius: 2px;
  background-color: rgb(53, 235, 29);
  box-shadow: 0 0 10px rgb(53, 235, 29);
  animation: bounce 1s infinite ease-in-out;
}

/* DELAY ANIMATION */
.l1 {
  animation-delay: 0s;
}

.l2 {
  animation-delay: 0.1s;
}

.l3 {
  animation-delay: 0.2s;
}

.l4 {
  animation-delay: 0.3s;
}

.l5 {
  animation-delay: 0.4s;
}

.l6 {
  animation-delay: 0.5s;
}

.l7 {
  animation-delay: 0.6s;
}

/* ANIMATION */
@keyframes bounce {

  0%,
  100% {
    height: 35px;
    opacity: 1;
  }

  50% {
    height: 8px;
    opacity: 0.3;
  }
}

/* HIDE LOADER */
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}










/* NAV */
.nav {
  position: fixed;
  width: 100%;
  background: rgba(13, 13, 13, 0.295);
  backdrop-filter: blur(100px);
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  height: 32px
}

.menu a {
  margin-left: 30px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* underline */
.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover */
.menu a:hover {
  color: var(--text);
}

.menu a:hover::after {
  width: 100%;
}

/* active */
.menu a.active {
  color: var(--text);
  font-weight: 600;
}

.menu a.active::after {
  width: 100%;
}



/*===================================== nav for mobile ================================= */
/* ================= MOBILE NAV STRUCTURE FIX ================= */

@media (max-width: 768px) {

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }

  /* Hamburger LEFT */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 22px;
    height: 2px;
    background: white;
  }

  /* Logo RIGHT */
  .brand {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand span {
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    transition: 0.4s ease;
    z-index: 150;
  }

  .menu.active {
    left: 0;
  }

  .menu a {
    margin: 18px 0;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

}


.mobile-toggle {
  padding: 10px;
}



/* ================= HAMBURGER ANIMATION ================= */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-toggle span {
  transition: 0.3s ease;
}






.no-scroll {
  overflow: hidden;
}

/* Hide hamburger on desktop */
.mobile-toggle {
  display: none;
}

@media (max-width: 768px) {

  .mobile-toggle {
    display: flex;
  }

}





/* ----------------------------------------------CINEMATIC HERO-------------------------------------------------- */



#cinematic-hero {
  width: 100%;
  /* FIX 1: use 100dvh — real device height, no chrome-bar gap */
  height: 100dvh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  /* FIX 2: ensure it's flush to top */
  margin: 0 !important;
  padding: 0 !important;
  top: 0;
  left: 0;
}

/* Slides track */
#cinematic-hero .ch-slides {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

#cinematic-hero .ch-slide {
  width: 20%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slide backgrounds */
#cinematic-hero .ch-s1 {
  background: linear-gradient(135deg, #0d0d18 0%, #0a0a0f 50%, #0f0a1a 100%);
}

#cinematic-hero .ch-s2 {
  background: linear-gradient(135deg, #0a0f0a 0%, #060f06 50%, #0a1a0a 100%);
}

#cinematic-hero .ch-s3 {
  background: linear-gradient(135deg, #100a0a 0%, #0f0606 50%, #1a0a0a 100%);
}

#cinematic-hero .ch-s4 {
  background: linear-gradient(135deg, #0a0a10 0%, #06060f 50%, #0a0a18 100%);
}

#cinematic-hero .ch-s5 {
  background: linear-gradient(135deg, #10080a 0%, #0f060a 50%, #1a0810 100%);
}

/* Grid overlay */
#cinematic-hero .ch-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* Grain */
#cinematic-hero .ch-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Blobs */
#cinematic-hero .ch-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: chBlobPulse 7s ease-in-out infinite;
}

#cinematic-hero .ch-blob2 {
  animation-delay: 2s;
  animation-duration: 9s;
}

@keyframes chBlobPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.65;
  }
}

#cinematic-hero .ch-s1 .ch-blob1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 65%);
  top: -200px;
  left: -150px;
}

#cinematic-hero .ch-s1 .ch-blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 65%);
  bottom: -100px;
  right: 250px;
}

#cinematic-hero .ch-s2 .ch-blob1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.20) 0%, transparent 65%);
  top: -200px;
  left: -150px;
}

#cinematic-hero .ch-s2 .ch-blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 65%);
  bottom: -100px;
  right: 250px;
}

#cinematic-hero .ch-s3 .ch-blob1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.20) 0%, transparent 65%);
  top: -200px;
  left: -150px;
}

#cinematic-hero .ch-s3 .ch-blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.14) 0%, transparent 65%);
  bottom: -100px;
  right: 250px;
}

#cinematic-hero .ch-s4 .ch-blob1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.20) 0%, transparent 65%);
  top: -200px;
  left: -150px;
}

#cinematic-hero .ch-s4 .ch-blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 65%);
  bottom: -100px;
  right: 250px;
}

#cinematic-hero .ch-s5 .ch-blob1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.20) 0%, transparent 65%);
  top: -200px;
  left: -150px;
}

#cinematic-hero .ch-s5 .ch-blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, transparent 65%);
  bottom: -100px;
  right: 250px;
}

/* Scanline */
#cinematic-hero .ch-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  top: 0;
  animation: chScan 5s linear infinite;
}

@keyframes chScan {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

#cinematic-hero .ch-s1 .ch-scanline {
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), transparent);
}

#cinematic-hero .ch-s2 .ch-scanline {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent);
}

#cinematic-hero .ch-s3 .ch-scanline {
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
}

#cinematic-hero .ch-s4 .ch-scanline {
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
}

#cinematic-hero .ch-s5 .ch-scanline {
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent);
}

/* Floating nav inside hero — ALWAYS on top, always flush to top of viewport */
#cinematic-hero .ch-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  z-index: 50;
  /* Stronger gradient — no content bleeds through */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

#cinematic-hero .ch-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#cinematic-hero .ch-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

#cinematic-hero .ch-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #fff;
}

#cinematic-hero .ch-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}

#cinematic-hero .ch-nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-nav-links a:hover {
  color: #fff;
}

/* Slide counter */
#cinematic-hero .ch-counter {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.22);
  z-index: 50;
}

/* Left content */
#cinematic-hero .ch-left {
  position: relative;
  z-index: 10;
  padding: 140px 0 60px 80px;
  width: 520px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

#cinematic-hero .ch-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

#cinematic-hero .ch-ey-line {
  width: 30px;
  height: 1.5px;
  flex-shrink: 0;
}

#cinematic-hero .ch-ey-text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

#cinematic-hero .ch-h-solid {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 0.88;
  color: #fff;
  letter-spacing: -0.04em;
  display: block;
}

#cinematic-hero .ch-h-outline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  letter-spacing: -0.04em;
  display: block;
  margin-top: -4px;
}

#cinematic-hero .ch-divider {
  width: 52px;
  height: 2px;
  margin: 24px 0;
  border-radius: 2px;
}

#cinematic-hero .ch-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  max-width: 300px;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

#cinematic-hero .ch-btn-p {
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

#cinematic-hero .ch-btn-p:hover {
  transform: translateY(-3px);
}

#cinematic-hero .ch-s1 .ch-btn-p {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

#cinematic-hero .ch-s1 .ch-btn-p:hover {
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.55);
}

#cinematic-hero .ch-s2 .ch-btn-p {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

#cinematic-hero .ch-s2 .ch-btn-p:hover {
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.55);
}

#cinematic-hero .ch-s3 .ch-btn-p {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

#cinematic-hero .ch-s3 .ch-btn-p:hover {
  box-shadow: 0 16px 48px rgba(239, 68, 68, 0.55);
}

#cinematic-hero .ch-s4 .ch-btn-p {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
}

#cinematic-hero .ch-s4 .ch-btn-p:hover {
  box-shadow: 0 16px 48px rgba(56, 189, 248, 0.55);
}

#cinematic-hero .ch-s5 .ch-btn-p {
  background: linear-gradient(135deg, #ec4899, #a855f7);
}

#cinematic-hero .ch-s5 .ch-btn-p:hover {
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.55);
}

#cinematic-hero .ch-btn-s {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

#cinematic-hero .ch-btn-s:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-3px);
}

/* Stats */
#cinematic-hero .ch-stats {
  display: flex;
  gap: 28px;
  margin-top: 25px;
  margin-bottom: 20px;
}

#cinematic-hero .ch-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #fff;
}

#cinematic-hero .ch-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.08em;
  margin-top: 3px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-stat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

/* Photo — covers right side, anchored to bottom, no overflow clipping */
#cinematic-hero .ch-photo-wrap {
  position: absolute;
  right: -60px;
  bottom: 0;
  z-index: 20;
  height: 98%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

#cinematic-hero .ch-photo-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  /* No floating animation — image stays grounded */
}

#cinematic-hero .ch-s1 .ch-photo-wrap img {
  filter: drop-shadow(0 0 80px rgba(99, 102, 241, 0.45)) drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
}

#cinematic-hero .ch-s2 .ch-photo-wrap img {
  filter: drop-shadow(0 0 80px rgba(34, 197, 94, 0.45)) drop-shadow(0 0 30px rgba(16, 185, 129, 0.3));
}

#cinematic-hero .ch-s3 .ch-photo-wrap img {
  filter: drop-shadow(0 0 80px rgba(239, 68, 68, 0.45)) drop-shadow(0 0 30px rgba(251, 146, 60, 0.3));
}

#cinematic-hero .ch-s4 .ch-photo-wrap img {
  filter: drop-shadow(0 0 80px rgba(56, 189, 248, 0.45)) drop-shadow(0 0 30px rgba(99, 102, 241, 0.3));
}

#cinematic-hero .ch-s5 .ch-photo-wrap img {
  filter: drop-shadow(0 0 80px rgba(236, 72, 153, 0.45)) drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
}

/* Ground glow */
#cinematic-hero .ch-ground-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 160px;
  z-index: 15;
  pointer-events: none;
}

#cinematic-hero .ch-s1 .ch-ground-glow {
  background: radial-gradient(ellipse 80% 100% at 60% 100%, rgba(99, 102, 241, 0.3) 0%, transparent 80%);
}

#cinematic-hero .ch-s2 .ch-ground-glow {
  background: radial-gradient(ellipse 80% 100% at 60% 100%, rgba(34, 197, 94, 0.3) 0%, transparent 80%);
}

#cinematic-hero .ch-s3 .ch-ground-glow {
  background: radial-gradient(ellipse 80% 100% at 60% 100%, rgba(239, 68, 68, 0.3) 0%, transparent 80%);
}

#cinematic-hero .ch-s4 .ch-ground-glow {
  background: radial-gradient(ellipse 80% 100% at 60% 100%, rgba(56, 189, 248, 0.3) 0%, transparent 80%);
}

#cinematic-hero .ch-s5 .ch-ground-glow {
  background: radial-gradient(ellipse 80% 100% at 60% 100%, rgba(236, 72, 153, 0.3) 0%, transparent 80%);
}

/* Chips */
#cinematic-hero .ch-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 25;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

#cinematic-hero .ch-chip1 {
  top: 26%;
  left: 640px;
  animation: chChipFloat 4s ease-in-out infinite;
}

#cinematic-hero .ch-chip2 {
  bottom: 28%;
  left: 569px;
  animation: chChipFloat 5s 1s ease-in-out infinite;
}

#cinematic-hero .ch-chip3 {
  bottom: 43%;
  left: 682px;
  animation: chChipFloat 7s 1s ease-in-out infinite;
}

#cinematic-hero .ch-chip4 {
  bottom: 57%;
  left: 540px;
  animation: chChipFloat 6s 1s ease-in-out infinite;
}

@keyframes chChipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Social bar */
#cinematic-hero .ch-socialbar {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
}

#cinematic-hero .ch-socialbar a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s;
}

#cinematic-hero .ch-socialbar a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.1);
}

/* Side dots */
#cinematic-hero .ch-side-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

#cinematic-hero .ch-sn {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-sd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.35s;
}

#cinematic-hero .ch-sd:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.4);
}

#cinematic-hero .ch-sd.a {
  width: 8px;
  height: 8px;
}

/* FIX 3: theme classes on the hero element itself — NOT className overwrite */
#cinematic-hero.ch-t1 .ch-sd.a {
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99, 102, 241, 1);
}

#cinematic-hero.ch-t2 .ch-sd.a {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 1);
}

#cinematic-hero.ch-t3 .ch-sd.a {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 1);
}

#cinematic-hero.ch-t4 .ch-sd.a {
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 1);
}

#cinematic-hero.ch-t5 .ch-sd.a {
  background: #ec4899;
  box-shadow: 0 0 12px rgba(236, 72, 153, 1);
}

/* Progress bar */
#cinematic-hero .ch-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 100;
  border-radius: 0 2px 2px 0;
}

#cinematic-hero.ch-t1 .ch-progress {
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

#cinematic-hero.ch-t2 .ch-progress {
  background: linear-gradient(90deg, #22c55e, #10b981);
}

#cinematic-hero.ch-t3 .ch-progress {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

#cinematic-hero.ch-t4 .ch-progress {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
}

#cinematic-hero.ch-t5 .ch-progress {
  background: linear-gradient(90deg, #ec4899, #a855f7);
}

/* Arrow buttons */
#cinematic-hero .ch-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.25s;
  user-select: none;
}

#cinematic-hero .ch-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

#cinematic-hero .ch-arrow-l {
  left: 60px;
}

#cinematic-hero .ch-arrow-r {
  right: 60px;
}

/* Scroll hint */
#cinematic-hero .ch-scroll {
  position: absolute;
  bottom: 17px;
  left: 534PX;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

#cinematic-hero .ch-scroll-box {
  width: 20px;
  height: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

#cinematic-hero .ch-scroll-box::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: chScrollDot 1.8s ease-in-out infinite;
}

@keyframes chScrollDot {

  0%,
  100% {
    opacity: 1;
    top: 6px;
  }

  60% {
    opacity: 0;
    top: 14px;
  }
}

#cinematic-hero .ch-scroll-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

/* Availability badge */
#cinematic-hero .ch-avail {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 15, 10, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 12px;
  color: rgba(74, 222, 128, 0.9);
  z-index: 50;
  font-family: 'DM Sans', sans-serif;
}

#cinematic-hero .ch-avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: chPulse 2s ease-in-out infinite;
}

@keyframes chPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}

/* Eyebrow line + divider colors */
#cinematic-hero .ch-s1 .ch-ey-line,
#cinematic-hero .ch-s1 .ch-divider {
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

#cinematic-hero .ch-s2 .ch-ey-line,
#cinematic-hero .ch-s2 .ch-divider {
  background: linear-gradient(90deg, #22c55e, #10b981);
}

#cinematic-hero .ch-s3 .ch-ey-line,
#cinematic-hero .ch-s3 .ch-divider {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

#cinematic-hero .ch-s4 .ch-ey-line,
#cinematic-hero .ch-s4 .ch-divider {
  background: linear-gradient(90deg, #38bdf8, #6366f1);
}

#cinematic-hero .ch-s5 .ch-ey-line,
#cinematic-hero .ch-s5 .ch-divider {
  background: linear-gradient(90deg, #ec4899, #a855f7);
}

/* Entrance animations */
#cinematic-hero .ch-slide.active .ch-eyebrow {
  animation: chSlideIn 0.65s 0.05s ease both;
}

#cinematic-hero .ch-slide.active .ch-h-solid:nth-child(1) {
  animation: chSlideIn 0.7s 0.15s ease both;
}

#cinematic-hero .ch-slide.active .ch-h-solid:nth-child(2) {
  animation: chSlideIn 0.7s 0.25s ease both;
}

#cinematic-hero .ch-slide.active .ch-h-outline:nth-child(3) {
  animation: chSlideIn 0.7s 0.35s ease both;
}

#cinematic-hero .ch-slide.active .ch-h-outline:nth-child(4) {
  animation: chSlideIn 0.7s 0.42s ease both;
}

#cinematic-hero .ch-slide.active .ch-divider {
  animation: chSlideIn 0.6s 0.50s ease both;
}

#cinematic-hero .ch-slide.active .ch-sub {
  animation: chSlideIn 0.6s 0.58s ease both;
}

#cinematic-hero .ch-slide.active .ch-ctas {
  animation: chSlideIn 0.6s 0.68s ease both;
}

#cinematic-hero .ch-slide.active .ch-stats {
  animation: chSlideIn 0.6s 0.78s ease both;
}

#cinematic-hero .ch-slide.active .ch-photo-wrap {
  animation: chPhotoRise 1.1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#cinematic-hero .ch-slide.active .ch-chip1 {
  animation: chChipIn 0.55s 1.0s ease both, chChipFloat 4s 1.6s ease-in-out infinite;
}

#cinematic-hero .ch-slide.active .ch-chip2 {
  animation: chChipIn 0.55s 1.2s ease both, chChipFloat 5s 1.8s ease-in-out infinite;
}

@keyframes chSlideIn {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes chPhotoRise {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chChipIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}











/* ============================================================
   MOBILE HERO — Full screen image, text at bottom
   ► Image fills entire 100dvh — face is FULLY VISIBLE & CLEAN
   ► Gradient starts ONLY from collar/chest (~62% down)
   ► Text overlaid at bottom, NO black background panel
   ► Exactly matches the reference photo
============================================================ */
@media (max-width: 768px) {

  /* Hero: stays full screen height */
  #cinematic-hero {
    height: 100dvh !important;
    min-height: 100dvh !important;
  }

  #cinematic-hero .ch-slides {
    height: 100% !important;
  }

  /* Slide: full screen, relative for absolute children */
  #cinematic-hero .ch-slide {
    position: relative;
    width: 20%;
    height: 100%;
    overflow: hidden;
    display: block; /* back to block — not flex */
  }

  /* ══════════════════════════════════════════
     PHOTO — fills entire slide like wallpaper
     Face is top-center, fully intact
  ══════════════════════════════════════════ */
  #cinematic-hero .ch-photo-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    right: 0 !important;
    bottom: 0 !important;
    top: 0 !important;
    left: 0 !important;
    display: block !important;
    pointer-events: none;
    z-index: 5;
  }

  #cinematic-hero .ch-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  /* ══════════════════════════════════════════
     GRADIENT OVERLAY — collar level downward ONLY
     Top 62% = face area = stays 100% transparent
     From 62% → bottom = darkens to show text
  ══════════════════════════════════════════ */
  #cinematic-hero .ch-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent         0%,
      transparent        60%,   /* face fully clean until here */
      rgba(0,0,0, 0.45)  72%,   /* collar — gentle start */
      rgba(0,0,0, 0.82)  84%,   /* chest — text starts here */
      rgba(0,0,0, 0.95)  93%,
      rgba(0,0,0, 1.00) 100%
    );
  }

  /* ══════════════════════════════════════════
     TEXT BLOCK — pinned to bottom, over gradient
     No background color at all — pure overlay
  ══════════════════════════════════════════ */
  #cinematic-hero .ch-left {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 95% !important;
    height: auto !important;
    padding: 0 22px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 20;
    background: none !important;   /* NO black panel */
    backdrop-filter: none !important;
  }

  /* Hide eyebrow label on mobile — keep it clean */
  #cinematic-hero .ch-eyebrow {
    display: none;
  }

  /* BIG headlines — bold like the reference */
  #cinematic-hero .ch-h-solid {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #fff;
  }

  #cinematic-hero .ch-h-outline {
    font-size: clamp(28px, 9.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  /* Divider — hidden to save space */
  #cinematic-hero .ch-divider {
    display: none;
  }

  /* Sub text — single line tagline */
  #cinematic-hero .ch-sub {
    font-size: 13px;
    color: rgba(255,255,255, 0.65);
    line-height: 1.5;
    margin-top: 10px;
    max-width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* CTA buttons row */
  #cinematic-hero .ch-ctas {
    margin-top: 16px;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  #cinematic-hero .ch-btn-p,
  #cinematic-hero .ch-btn-s {
    padding: 11px 24px;
    font-size: 13px;
  }

  /* Stats — hidden on mobile, keeps layout clean */
  #cinematic-hero .ch-stats {
    display: none;
  }

  /* ══ DECORATIVES ══ */
  #cinematic-hero .ch-ground-glow { display: none; }
  #cinematic-hero .ch-socialbar   { display: none; }
  #cinematic-hero .ch-side-nav    { display: none; }
  #cinematic-hero .ch-chip        { display: none; }
  #cinematic-hero .ch-scroll      { display: none; }

  #cinematic-hero .ch-blob1 {
    width: 260px !important; height: 260px !important;
    top: -60px !important;   left: -80px !important;
  }
  #cinematic-hero .ch-blob2 {
    width: 200px !important; height: 200px !important;
    bottom: auto !important; top: 20px !important;
    right: -50px !important;
  }

  #cinematic-hero .ch-grid     { z-index: 3; }
  #cinematic-hero .ch-grain    { z-index: 4; }
  #cinematic-hero .ch-scanline { z-index: 6; }

  /* Navbar */
  #cinematic-hero .ch-nav {
    padding: 12px 18px;
    z-index: 100;
  }
  #cinematic-hero .ch-nav-links { display: none; }

  /* Arrows — mid screen */
  #cinematic-hero .ch-arrow {
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
  }
  #cinematic-hero .ch-arrow-l { left: 8px;  width: 32px; height: 32px; font-size: 13px; }
  #cinematic-hero .ch-arrow-r { right: 8px; width: 32px; height: 32px; font-size: 13px; }

  #cinematic-hero .ch-counter { font-size: 10px; top: 16px; z-index: 100; }

  /* Available badge — right side, just above text */
  #cinematic-hero .ch-avail {
    bottom: auto;
    top: 58%;
    right: 12px;
    font-size: 10px;
    padding: 5px 10px;
    z-index: 25;
  }
  #cinematic-hero .ch-avail-dot { width: 5px; height: 5px; }

  #cinematic-hero .ch-progress { z-index: 100; }
}

/* ── Tiny phones ≤ 390px ── */
@media (max-width: 390px) {
  #cinematic-hero .ch-h-solid   { font-size: clamp(28px, 10vw, 40px); }
  #cinematic-hero .ch-h-outline { font-size: clamp(24px, 9vw,  34px); }
  #cinematic-hero .ch-left      { padding: 0 16px 24px; }
  #cinematic-hero .ch-sub       { font-size: 12px; }
}























/*====================================== SOCIAL BAR ======================================*/
.socialbar1 {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 10;
}

.antisocial {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: .4s;
  text-decoration: none;
}

.social:hover {
  transform: translateX(12px) scale(1.15);
}

.facebook:hover {
  background: #1877F2;
}

.instagram:hover {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.linkedin:hover {
  background: #0A66C2;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .social-bar {
    display: none;
  }
}


/* mobile hidden social bar */

@media (max-width: 768px) {
  .socialbar1 {
    display: none;
  }
}






/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 100px 20px;
  background: #0d0d0d;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 100px;
  margin-bottom: 10px;
}

.process-subtitle {
  color: #999;
  margin-bottom: 70px;
}

/* ================= TIMELINE ================= */

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: auto;
  margin-top: 80px;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2a2a2a;
}

.timeline-progress {
  position: absolute;
  top: 28px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #6da8ff;
  transition: width .4s ease;
}

/* steps */

.process-step {
  width: 25%;
  text-align: center;
  opacity: .5;
  transition: .4s;
  cursor: pointer;
}

.process-step.active {
  opacity: 1;
}

/* circle */

.circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 2px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: 600;
  position: relative;
  z-index: 5;
  transition: .3s;
  margin-bottom: 20px;
}

.process-step:hover .circle {
  border-color: #fff;
  transform: scale(1.1);
}

/* description */

.process-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: .3s;
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  padding: 0 10px;
}

.process-step.active .process-desc {
  opacity: 1;
  transform: translateY(0);
}

.process-step.active .circle {
  border-color: #6da8ff;
}

/* ================= MOBILE VERTICAL PROCESS ================= */

@media (max-width:768px) {

  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    max-width: 400px;
    margin: auto;
    padding-left: 40px;
  }

  /* vertical line */

  .timeline-line {
    top: 0;
    left: 28px;
    width: 2px;
    height: 100%;
  }

  /* animated vertical progress */

  .timeline-progress {
    top: 0;
    left: 28px;
    width: 2px;
    height: 0%;
  }

  /* step */

  .process-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 0.5;
  }

  /* circle alignment */

  .circle {
    margin: 0 0 20px 10px;
  }

  /* text */

  .process-desc {
    max-width: 100%;
    font-size: 13px;
  }

}

/* ================= BACKGROUND GLOW ================= */

.process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25;
  animation: floatMove 18s infinite ease-in-out;
}

.shape1 {
  background: linear-gradient(45deg, #7f5af0, #2cb67d);
  top: -100px;
  left: -120px;
}

.shape2 {
  background: linear-gradient(45deg, #ff6b6b, #f7b267);
  bottom: -120px;
  right: -120px;
  animation-delay: 4s;
}

.shape3 {
  background: linear-gradient(45deg, #3a86ff, #8338ec);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 8s;
}

@keyframes floatMove {

  0% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-60px) scale(1.1)
  }

  100% {
    transform: translateY(0) scale(1)
  }

}

.process-container {
  position: relative;
  z-index: 2;
}





















/* tools section */

/* SECTION BACKGROUND */
.tools-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #111111, #1a1a2e, #16213e);
  color: white;
}

/* BIG GLITCH HEADING */
.tools-section h2 {
  /* font-family:'Rubik Glitch', cursive; */
  font-size: 80px;
  margin-bottom: 50px;
  letter-spacing: 4px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* BIG TYPING TEXT */
.typing-container {
  font-family: 'MyCustomFont', sans-serif;
  font-size: 89px;
  font-weight: 900;
  min-height: 90px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 8px;
}

/* BIGGER CURSOR */
.cursor {
  display: inline-block;
  margin-left: 8px;
  width: 6px;
  height: 70px;
  background: white;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}




@media (max-width:768px) {

  .tools-section h2 {
    font-size: 38px;
    margin-bottom: 23px;
    letter-spacing: 4px;
  }

  .typing-container {
    font-size: 48px;
    min-height: 60px;
  }

  .cursor {
    width: 3px;
    height: 40px;
  }

}





/* ================= PORTFOLIO SECTION ================= */

/* ================= PORTFOLIO SECTION ================= */

.portfolio-section {
  padding: 110px 8%;
  background: #0d0d0d;
}

/* HEADER */

.portfolio-header {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
}

.portfolio-header span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-header h2 {
  font-size: 38px;
  margin-top: 10px;
}

.portfolio-header p {
  font-size: 14px;
  margin-top: 10px;
  color: var(--muted);
}

/* GRID */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */

.portfolio-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .35s ease;
}

/* IMAGE */

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .8s ease, transform .8s ease;
}

/* when revealed */

.portfolio-card.reveal.active img {
  opacity: 1;
  transform: scale(1);
}

/* OVERLAY */

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

/* TEXT */

.portfolio-overlay h3 {
  font-size: 22px;
  margin-bottom: 4px;
  text-decoration: none;
  color: #ffffff;
}

.portfolio-overlay p {
  font-size: 14px;
  color: #ccc;
}

.portfolio-overlay span {
  font-size: 13px;
  margin-top: 8px;
  color: var(--accent);
}





/* HOVER FADE LAYER */

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.322);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

.portfolio-card:hover::before {
  opacity: 1;
}

/* make sure text stays above */

.portfolio-overlay {
  position: absolute;
  z-index: 2;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width:768px) {

  .portfolio-section {
    padding: 80px 6%;
  }

  .portfolio-header h2 {
    font-size: 28px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-card {
    height: 260px;
  }

}



/* SCROLL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .3s;
}

.delay-3 {
  transition-delay: .45s;
}

















/* SECTIONS */
.section {
  padding: 140px 8%;
}

.section.dark {
  background: var(--dark);
}

.label {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin: 12px 0 60px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* WORK SECTION */
.work-section {
  padding: 50px 16%;
}

@media (max-width: 768px) {
  .work-section {
    padding: 50px 5%;
  }
}

/* HEADER */
.work-header {
  max-width: 720px;
  margin-bottom: 100px;
}

.work-header p {
  margin-top: 18px;
  color: var(--muted);
}

/* CAPABILITIES */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.capability-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 26px;
  padding: 40px;
  min-height: 260px;
  transition: transform 0.4s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
}

.cap-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.capability-card h3 {
  margin: 14px 0 10px;
}

.capability-card p {
  font-size: 14px;
  color: var(--muted);
}

/* CATEGORY GLOWS */
.capability-card.branding::after,
.capability-card.social::after,
.capability-card.print::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  border-radius: 26px;
  pointer-events: none;
}

.capability-card.branding::after {
  background: linear-gradient(120deg, #00ffd5, transparent);
}

.capability-card.social::after {
  background: linear-gradient(120deg, #7b61ff, transparent);
}

.capability-card.print::after {
  background: linear-gradient(120deg, #ff9f43, transparent);
}

/* 
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
} */

.card-link,
.card-link:link,
.card-link:visited,
.card-link:hover,
.card-link:active {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}



/* DIVIDER */
.work-divider {
  margin: 140px 0 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* RECENT WORK */
.recent-work-block {
  width: 100%;
}

.recent-work-block h3 {
  font-size: 28px;
  margin: 14px 0 16px;
}

.recent-desc {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 60px;
}

/* RECENT GRID */
.recent-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}



/* Tablet */
@media (max-width: 1100px) {
  .recent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .recent-grid {
    grid-template-columns: 1fr;
  }
}

/* RECENT CARD */
.recent-card {
  background: #1a1a1a;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s ease;
  text-decoration: none;
}

.recent-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.recent-img {
  height: 220px;
  overflow: hidden;
}

.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.recent-card:hover img {
  transform: scale(1.08);
}

/* INFO */
.recent-info {
  padding: 26px;
}

.recent-info h4 {
  margin: 10px 0 6px;
  text-decoration: none;
  color: white;
}

.recent-info p {
  font-size: 13px;
  color: var(--muted);
}

/* CATEGORY PILL */
.pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
  margin: 4px;
}

.pill.branding {
  background: rgba(0, 255, 213, 0.15);
  color: var(--accent);
}

.pill.social {
  background: rgba(123, 97, 255, 0.15);
  color: #7b61ff;
}

.pill.print {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
}

/* CTA */

/* CTA CENTERING */
/* BEAUTIFUL CTA BUTTON */
.cta-btn {
  margin: 90px 0;
  justify-content: center;
  position: relative;
  padding: 16px 46px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #522d2d;
  background: linear-gradient(135deg,
      #00ffd5,
      #4dfbe2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 0px 20px rgba(0, 255, 213, 0.35),
    inset 0 0 0 rgba(255, 255, 255, 0);
  transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
}


.btn.primary {
  background: rgb(49, 180, 255);
  color: #fff;

}


/* SUBTLE SHINE */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: left 0.8s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 255, 213, 0.45);
}

.cta-btn:hover::before {
  left: 120%;
}

/* ARROW */
.cta-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(6px);
}

/* FOCUS (ACCESSIBILITY) */
.cta-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(0, 255, 213, 0.4),
    0 18px 40px rgba(0, 255, 213, 0.45);
}














/* CLIENT SECTION WRAPPER */
.client-section {
  display: flex;
  justify-content: space-between;
  padding: 100px 10%;
  min-height: 60vh;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #f8f9fc 100%);
}

/* LEFT SIDE */
.client-section .client-left {
  width: 40%;
}

.client-section .client-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.client-section .client-left span {
  color: #4a90e2;
}

.client-section .client-left p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff;
}

.client-section .client-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: #4a90e2;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.client-section .client-btn:hover {
  transform: translateY(-4px);
}

/* RIGHT SIDE */
.client-section .client-right {
  width: 55%;
  display: flex;
  gap: 30px;
  height: 500px;
  overflow: hidden;

  mask-image: linear-gradient(to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

/* COLUMN */
.client-section .client-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 200px;
}

/* CARD */
.client-section .client-card {
  background: #1a1a22;
  border: 1px solid rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.08);
  color: #eee;
  padding: 25px;
  border-radius: 20px;

  text-align: center;
  transition: 0.3s ease;
}

.client-section .client-card:hover {
  transform: translateY(-6px);
}

.client-section .client-card img {
  width: 50px;
  margin-bottom: 15px;
}

.client-section .client-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

.client-section .client-stars {
  color: gold;
}



.client-section {
  position: relative;
  background: #0f0f12;
  overflow: hidden;
}

.client-section::before,
.client-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  filter: blur(140px);
  opacity: 0.3;
  z-index: 0;
}

.client-section::before {
  background: #00ff88;
  /* neon green */
  top: -150px;
  left: -150px;
}

.client-section::after {
  background: #00e0ff;
  /* neon cyan */
  bottom: -150px;
  right: -150px;
}

.client-section .client-card:hover {
  box-shadow:
    0 0 20px rgba(0, 255, 136, 0.4),
    0 0 40px rgba(0, 255, 136, 0.2);
  transform: translateY(-6px);

}


/* ===========================client mobile view section==========================  */


/* ================================= */
/* PREMIUM MOBILE CLIENT EXPERIENCE  */
/* ================================= */

@media (max-width: 768px) {

  .client-section {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 6%;
    text-align: center;
    overflow: hidden;
    background: #0b0b0f;
  }

  /* LEFT TEXT ON TOP */
  .client-section .client-left {
    width: 100%;
    z-index: 5;
  }

  .client-section .client-left h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
  }

  .client-section .client-left span {
    color: #00ff88;
  }

  .client-section .client-left p {
    font-size: 14px;
    color: #bcbcbc;
    margin: 15px 0 25px;
  }

  .client-section .client-btn {
    background: linear-gradient(90deg, #00ff88, #00e0ff);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .client-section .client-btn:hover {
    transform: scale(1.05);
  }

  /* RIGHT SIDE BECOMES BACKGROUND */
  .client-section .client-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 40px;
    opacity: 0.25;
    filter: blur(6px);
    z-index: 1;
    pointer-events: none;
  }

  .client-section .client-column {
    animation: autoScroll 20s linear infinite;
  }

  .client-section .client-column:nth-child(2) {
    animation-duration: 25s;
  }

  .client-section .client-column:nth-child(3) {
    animation-duration: 22s;
  }

  /* Cards minimal for background look */
  .client-section .client-card {
    background: #14141a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
  }

  /* Remove glow blobs */
  .client-section::before,
  .client-section::after {
    display: none;
  }

}

/* Vertical Auto Scroll */
@keyframes autoScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* ================================= */
/* MOBILE TEXT CHANGE ONLY           */
/* ================================= */


@media (max-width: 768px) {

  .client-section {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 8%;
  }

  /* Hide original text */
  .client-section .client-left h2,
  .client-section .client-left p {
    display: none;
  }

  .client-section .client-left {
    position: relative;
    z-index: 5;
  }

  /* First line */
  .client-section .client-left::before {
    content: "Trusted by many successful brand leaders";
    display: block;

    font-size: 16px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);

    margin-bottom: -11px;
  }

  /* Strong hook */
  .client-section .client-left::after {
    content: "You are next.";
    display: block;

    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;

    background: linear-gradient(90deg, #00ff88, #00e0ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 30px;

    text-shadow: 0 0 25px rgba(0, 255, 170, 0.25);
  }

  /* Button below everything */
  .client-section .client-btn {
    margin-bottom: 15px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    background: linear-gradient(90deg, #00ff88, #00e0ff);
    color: #000;
    box-shadow: 0 8px 30px rgba(0, 255, 170, 0.25);
  }

}


@media (max-width: 768px) {

  /* Increase space between hook text and button */
  .client-section .client-left::after {
    margin-bottom: 50px;
    /* increase this value if needed */
  }

  /* OR if you're not using ::after anymore */
  .client-section .client-btn {
    margin-top: 40px;
    /* adjust spacing here */
  }

}














/* contact section */

.contact-section1 {
  position: relative;
  padding: 120px 10%;
  background: #0f0f0f;
  font-family: 'Poppins', sans-serif;
  color: white;
  isolation: isolate;
  /* 👈 This protects footer */
}

.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE PREMIUM TEXT */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #00ffae;
}

.sub-text {
  opacity: 0.7;
  margin-bottom: 40px;
  font-size: 15px;
}

/* ICON BUTTONS */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-btn i {
  font-size: 18px;
  color: #00ffae;
}

.icon-btn:hover {
  background: linear-gradient(45deg, #00ffae, #00bfff);
  color: black;
  transform: translateX(10px);
}

/* RIGHT FORM */
.contact-right {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-right h3 {
  margin-bottom: 25px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.contact-right textarea {
  resize: none;
  height: 120px;
}

.contact-right button {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(45deg, #00ffae, #00bfff);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 174, 0.4);
}

/* FLOATING SHAPES */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 10s infinite ease-in-out;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: #00ffae;
  top: -50px;
  left: -100px;
}

.shape2 {
  width: 250px;
  height: 250px;
  background: #00bfff;
  bottom: -80px;
  right: -50px;
  animation-delay: 3s;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: #ff00ff;
  top: 50%;
  left: 50%;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media(max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


































/* FOOTER */
.footer {
  position: relative;
  width: 100%;
  padding: 120px 8% 50px;
  background: #0b0b0b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  isolation: isolate;
}

/* Soft Background Glow */
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00ffd5;
  filter: blur(160px);
  opacity: 0.08;
  top: -150px;
  left: -100px;
  z-index: -1;
}

/* Layout */
.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* Labels */
.footer-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00ffd5;
  margin-bottom: 15px;
  display: block;
}

/* Brand */
.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

/* Social */
.footer-right {
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  text-decoration: none;
}

.social-btn i {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

/* Hover */
.social-btn:hover {
  transform: translateY(-6px);
  background: #00ffd5;
}

.social-btn:hover i {
  color: #000;
}

/* Bottom */
.footer-bottom {
  margin-top: 80px;
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .2s;
}

.delay-2 {
  transition-delay: .4s;
}