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

:root {
  --bg: #f7f7f4;
  --bg-soft: #ffffff;
  --black: #050505;

  --text: #0b0b0b;
  --text-muted: rgba(11, 11, 11, 0.58);
  --text-soft: rgba(11, 11, 11, 0.72);

  --card-bg: rgba(255, 255, 255, 0.86);
  --border: rgba(5, 5, 5, 0.11);

  --accent: #050505;
  --accent-soft: rgba(5, 5, 5, 0.06);
  --accent-border: rgba(5, 5, 5, 0.16);
  --accent-glow: rgba(5, 5, 5, 0.10);

  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

/* ===== Custom Scrollbar ===== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #111, #777);
  border-radius: 20px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #000, #555);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

/* ===== Firefox ===== */

* {
  scrollbar-width: thin;
  scrollbar-color: #111 var(--bg);
}
/* =========================
   NAVBAR
========================= */

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  padding: 0 26px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;

  backdrop-filter: blur(22px);

  box-shadow:
    0 14px 44px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.95);

  transition: 0.35s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}

.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.5),
      transparent
    );
  opacity: 0.42;
  mix-blend-mode: overlay;
}

.logo {
  position: relative;
  z-index: 3;
}

.logo img {
  width: 78px;
  display: block;
  filter: brightness(0);
}

/* =========================
   NAV LINKS PREMIUM
========================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 3;
}

.nav-links a {
  position: relative;

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

  min-width: 86px;
  height: 46px;

  padding: 0 18px;

  color: rgba(0,0,0,0.58);
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;

  border-radius: 999px;

  overflow: hidden;

  transition:
    color .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    background .35s cubic-bezier(.22,1,.36,1);
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.95),
      rgba(245,245,245,0.82)
    );

  border: 1px solid rgba(0,0,0,0.06);

  opacity: 0;
  transform: scale(.82);

  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 7px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background: #050505;

  transform: translateX(-50%);

  opacity: 0;

  transition:
    width .35s cubic-bezier(.22,1,.36,1),
    opacity .35s ease;
}

.nav-links a span {
  position: relative;
  z-index: 2;
}

.nav-links a:hover {
  color: #050505;

  transform:
    translateY(-3px)
    scale(1.02);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scale(1);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.nav-links a:hover::after {
  width: 34px;
  opacity: 1;
}

.nav-links a.active {
  color: #050505;
}

.nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a.active::after {
  width: 34px;
  opacity: 1;
}

/* =========================
   ACTIONS
========================= */

.nav-actions {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 14px;
}

/* LET'S TALK */

.talk-btn {
  position: relative;

  padding: 12px 22px;

  border-radius: 999px;

  background: #050505;
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  border: 1px solid #050505;

  overflow: hidden;

  transition:
    color .35s ease,
    background .35s ease,
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease;
}

.talk-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );

  transform: translateX(-120%);

  transition: .65s ease;
}

.talk-btn:hover::before {
  transform: translateX(120%);
}

.talk-btn:hover {
  background: #fff;
  color: #050505;

  transform: translateY(-4px);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.11);
}

/* MENU BUTTON */

.menu-btn {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: 1px solid rgba(0,0,0,0.08);

  background: rgba(255,255,255,0.9);

  color: #050505;

  font-size: 20px;
  cursor: pointer;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s ease;
}

.menu-btn:hover {
  background: #050505;
  color: #fff;

  transform: rotate(10deg) scale(1.05);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.16);
}

/* =========================
   OVERLAY
========================= */

.overlay {
  position: fixed;
  inset: 0;

  background: rgba(255,255,255,0.42);

  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  transition: 0.35s;

  z-index: 1001;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   OFFCANVAS
========================= */

.offcanvas {
  position: fixed;

  top: 50%;
  right: 28px;

  width: min(520px, calc(100% - 40px));
  height: min(700px, 85vh);

  z-index: 1002;

  padding: 38px;

  overflow-y: auto;

  background:
    radial-gradient(circle at top right, rgba(0,0,0,0.03), transparent 35%),
    linear-gradient(145deg, #ffffff, #f7f7f4);

  border: 1px solid rgba(0,0,0,0.08);

  border-radius: 36px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.12);

  transform:
    translateY(-50%)
    translateX(120%)
    scale(0.92)
    rotate(5deg);

  opacity: 0;

  transition: 0.55s cubic-bezier(.16,1,.3,1);
}

.offcanvas.active {
  transform:
    translateY(-50%)
    translateX(0)
    scale(1)
    rotate(0);

  opacity: 1;
}

/* CLOSE */

.close-btn {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 46px;
  height: 46px;

  border-radius: 50%;

  border: 1px solid rgba(0,0,0,0.08);

  background: #fff;

  color: #050505;

  font-size: 20px;

  cursor: pointer;

  transition: 0.35s;
}

.close-btn:hover {
  background: #050505;
  color: #fff;

  transform: rotate(90deg);
}

/* =========================
   OFFCANVAS CONTENT
========================= */

.canvas-logo img {
  width: 78px;
  margin-bottom: 54px;
  filter: brightness(0);
}

.canvas-label {
  color: #000;

  letter-spacing: 4px;

  font-size: 11px;
  font-weight: 700;

  margin-bottom: 18px;

  opacity: 0.65;
}

.offcanvas h2 {
  font-size: 34px;
  line-height: 1.12;

  color: #050505;

  margin-bottom: 20px;
}

.canvas-text {
  color: var(--text-muted);

  line-height: 1.8;
  font-size: 15px;

  margin-bottom: 32px;
}

/* LINKS */

.canvas-links {
  display: grid;
  gap: 12px;

  margin-bottom: 34px;
}

.canvas-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;

  color: #050505;

  font-size: 22px;
  font-weight: 500;

  padding: 18px 20px;

  border-radius: 18px;

  border: 1px solid transparent;

  background: rgba(0,0,0,0.02);

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

.canvas-links a::after {
  content: "↗";

  opacity: 0;

  transform: translateX(-10px);

  transition: 0.35s;
}

.canvas-links a:hover {
  background: #050505;
  color: #fff;

  transform: translateX(6px);
}

.canvas-links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* SOCIALS */

.socials {
  display: flex;
  gap: 12px;

  padding-top: 10px;
}

.socials a {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  text-decoration: none;

  color: #050505;

  border-radius: 50%;

  border: 1px solid rgba(0,0,0,0.08);

  background: #fff;

  font-size: 18px;

  transition: 0.35s;
}

.socials a:hover {
  background: #050505;
  color: #fff;

  transform: translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .navbar {
    top: 14px;

    width: calc(100% - 24px);

    height: 70px;

    padding: 0 16px;

    border-radius: 20px;
  }

  .logo img {
    width: 68px;
  }

  .talk-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .menu-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .offcanvas {
    right: 12px;

    width: calc(100% - 24px);

    height: min(720px, calc(100dvh - 24px));

    padding: 30px 24px;

    border-radius: 28px;
  }
}

@media (max-width: 520px) {

  .talk-btn {
    display: none;
  }

  .canvas-logo img {
    width: 70px;
    margin-bottom: 44px;
  }

  .offcanvas h2 {
    font-size: 28px;
  }

  .canvas-links a {
    font-size: 19px;
    padding: 15px 16px;
  }

  .socials a {
    width: 42px;
    height: 42px;
  }
}
/* =========================
   HERO SECTION
========================= */

.hero-image {
  position: relative;
  min-height: 100vh;

  padding: 150px 40px 90px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 24%),
    #050505;
}

/* BG IMAGE */

.hero-image .hero-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  filter:
    grayscale(1)
    contrast(1.05)
    brightness(0.32);

  opacity: 0.5;

  transform: scale(1.04);

  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-image .hero-bg::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.82) 40%,
      rgba(0,0,0,0.46) 100%
    ),

    linear-gradient(
      180deg,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0.88)
    );
}

/* GRID */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay::before {
  content: "";

  position: absolute;
  inset: 0;

  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: 70px 70px;
}

/* LIGHT LINE */

.hero-overlay::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 1px;

  left: -260px;
  top: 34%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.5),
      transparent
    );

  box-shadow:
    0 0 18px rgba(255,255,255,0.22);

  animation: heroLightSweep 5s ease-in-out infinite;
}

/* NOISE */

.hero-noise {
  position: absolute;
  inset: 0;

  z-index: 2;

  background-image:
    radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);

  background-size: 36px 36px;

  opacity: 0.025;

  pointer-events: none;

  animation: noiseMove 10s linear infinite;
}

/* CURSOR LIGHT */

.hero-cursor-light {
  position: absolute;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(255,255,255,0.12), transparent 65%);

  filter: blur(22px);

  z-index: 2;

  pointer-events: none;

  opacity: 0;

  transform: translate(-50%, -50%);

  transition: opacity 0.3s;
}

/* CONTAINER */

.hero-image .hero-container {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 1180px;

  margin: auto;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 11px 18px;

  margin-bottom: 24px;

  color: #ffffff !important;

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 999px;

  background: rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.8px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-tag i {
  color: #ffffff;
}

/* TITLE */

.hero-content h1 {
  font-size: clamp(54px, 8vw, 112px);

  line-height: 0.9;

  letter-spacing: -5px;

  margin-bottom: 18px;

  color: #fff;
}

.hero-content h2 {
  font-size: clamp(22px, 3vw, 38px);

  margin-bottom: 18px;

  color: rgba(255,255,255,0.92);
}

/* TYPING */

.typing {
  color: #fff;
}

.typing::after {
  content: "|";

  margin-left: 4px;

  animation: blink 0.8s infinite;
}

/* PARAGRAPH */

.hero-content p {
  max-width: 610px;

  color: rgba(255,255,255,0.68);

  line-height: 1.9;

  font-size: 16px;
}

/* BUTTONS */

.hero-actions {
  margin-top: 34px;

  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 15px 24px;

  border-radius: 999px;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 11px;

  font-weight: 600;

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

/* PRIMARY */

.hero-btn.primary {
  background: #fff;

  color: #050505;

  border: 1px solid #fff;
}

.hero-btn.primary:hover {
  background: transparent;
  color: #fff;
}

/* SECONDARY */

.hero-btn.secondary {
  color: #fff;

  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(12px);
}

.hero-btn.secondary:hover {
  background: #fff;
  color: #050505;
}

.hero-btn:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 40px rgba(255,255,255,0.08);
}

/* BIG TEXT */

.hero-big-text {
  position: absolute;

  right: 38px;
  bottom: 28px;

  z-index: 3;

  pointer-events: none;
}

.hero-big-text span {
  font-size: clamp(62px, 12vw, 160px);

  font-weight: 950;

  letter-spacing: 10px;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,0.08);

  opacity: 0.8;

  animation: secureFloat 5s ease-in-out infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes heroLightSweep {

  0%, 45% {
    left: -260px;
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes noiseMove {
  to {
    transform: translate(36px, 36px);
  }
}

@keyframes secureFloat {

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

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .hero-image {
    min-height: 100vh;

    padding: 52vh 24px 70px;

    align-items: flex-end;
  }

  .hero-image .hero-bg {
    background-position: 60% top;
  }

  .hero-image .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.28) 30%,
        rgba(0,0,0,0.92) 65%,
        rgba(0,0,0,1) 100%
      );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-big-text {
    right: 50%;
    bottom: 42%;

    transform: translateX(50%);
  }

  .hero-big-text span {
    font-size: clamp(60px, 18vw, 120px);

    letter-spacing: 6px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .hero-image {
    min-height: 100svh;

    padding:
      30vh
      20px
      46px;

    align-items: flex-start;
  }

  .hero-content {
    margin-top: 40px;

    position: relative;
    z-index: 5;
  }

  /* TAG */

  .hero-tag {
    font-size: 11px;

    padding: 10px 16px;

    margin-bottom: 18px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.14);

    color: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);

    box-shadow:
      0 8px 24px rgba(0,0,0,0.22);
  }

  .hero-tag i {
    color: #fff;
  }

  /* TITLE */

  .hero-content h1 {
    font-size: 58px;

    line-height: 0.92;

    letter-spacing: -3px;

    margin-bottom: 14px;
  }

  .hero-content h2 {
    font-size: 20px;

    line-height: 1.4;

    margin-bottom: 16px;

    color: rgba(255,255,255,0.92);
  }

  .typing {
    display: inline-block;
  }

  /* TEXT */

  .hero-content p {
    font-size: 15px;

    line-height: 1.9;

    color: rgba(255,255,255,0.7);

    max-width: 100%;
  }

  /* BUTTONS */

  .hero-actions {
    gap: 12px;

    margin-top: 28px;

    width: 100%;
  }

  .hero-btn {
    padding: 15px 18px;

    font-size: 14px;

    border-radius: 16px;

    min-height: 52px;
  }

  .hero-btn.primary {
    flex: 1;
    justify-content: center;
  }

  .hero-btn.secondary {
    flex: 1;
    justify-content: center;
  }

  /* BIG TEXT */

  .hero-big-text {
    bottom: 60%;

    left: 50%;

    right: auto;

    transform: translateX(-50%);

    opacity: 0.24;
  }

  .hero-big-text span {
    font-size: 78px;

    letter-spacing: 5px;

    -webkit-text-stroke:
      1px rgba(255,255,255,0.08);
  }

  /* CURSOR LIGHT */

  .hero-cursor-light {
    display: none;
  }
}
/* =========================
   ABOUT + SKILLS
========================= */

.about-skills {
  position: relative;
  padding: 120px 40px;
  background: #f7f7f4;
  color: #050505;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(0,0,0,0.045), transparent 26%),
    radial-gradient(circle at 85% 72%, rgba(0,0,0,0.035), transparent 28%);
  pointer-events: none;
}

.about-container,
.skills-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: stretch;
}

/* TAG */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #050505;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.72);

  padding: 10px 16px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 22px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.section-tag i {
  color: #050505;
}

/* TEXT */

.about-left h2,
.skills-title h2 {
  color: #050505;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -2.4px;
  margin-bottom: 22px;
}

.about-left p {
  color: rgba(5,5,5,0.62);
  line-height: 1.9;
  max-width: 650px;
  font-size: 16px;
}

/* BUTTON */

.about-actions {
  margin-top: 30px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  padding: 15px 24px;

  border-radius: 999px;

  background: #050505;
  color: #fff;

  text-decoration: none;
  font-weight: 600;

  border: 1px solid #050505;

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

.about-btn:hover {
  background: #fff;
  color: #050505;
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* HIGHLIGHTS */

.about-highlights {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px 18px;

  border-radius: 18px;

  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 10px 30px rgba(0,0,0,0.035);

  transition: 0.3s;
}

.about-highlights div:hover {
  transform: translateX(6px);
  border-color: rgba(0,0,0,0.16);
}

.about-highlights i {
  color: #050505;
  font-size: 20px;
}

.about-highlights span {
  color: rgba(5,5,5,0.8);
  font-weight: 600;
}

/* RIGHT CARD */

.about-card {
  padding: 34px;
  border-radius: 30px;

  background:
    radial-gradient(circle at top right, rgba(0,0,0,0.045), transparent 34%),
    rgba(255,255,255,0.86);

  border: 1px solid rgba(0,0,0,0.08);

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

.about-card h3 {
  color: #050505;
  font-size: 28px;
  margin-bottom: 24px;
}

.about-service {
  display: flex;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-service:last-child {
  border-bottom: 0;
}

.about-service span {
  color: #050505;
  font-weight: 800;
  opacity: 0.42;
}

.about-service h4 {
  color: #050505;
  font-size: 19px;
  margin-bottom: 7px;
}

.about-service p {
  color: rgba(5,5,5,0.56);
  line-height: 1.6;
}

/* =========================
   SKILLS
========================= */

.skills-container {
  margin-top: 96px;
  overflow: visible;
}

.skills-title {
  text-align: center;
  margin-bottom: 40px;
}

.skills-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.skill-category {
  min-height: 265px;

  padding: 24px 20px;

  border-radius: 24px;

  background:
    radial-gradient(circle at top right, rgba(0,0,0,0.035), transparent 38%),
    rgba(255,255,255,0.86);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 14px 36px rgba(0,0,0,0.045);

  transition: 0.35s cubic-bezier(.16,1,.3,1);

  position: relative;
  overflow: hidden;
}

.skill-category:hover {
  transform: translateY(-10px);
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}

.skill-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #050505;

  font-size: 17px;
  margin-bottom: 18px;
}

.skill-category h3 i {
  font-size: 22px;
  color: #050505;
}

.skill-category ul {
  list-style: none;
}

.skill-category li {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(5,5,5,0.68);

  font-size: 14px;
  line-height: 1.5;

  padding: 8px 10px;

  border-radius: 10px;

  transition: 0.3s;
}

.skill-category li i {
  width: 22px;
  text-align: center;

  color: rgba(5,5,5,0.72);

  font-size: 15px;

  transition: 0.3s;
}

.skill-category li:hover {
  background: rgba(0,0,0,0.045);
  color: #050505;
  transform: translateX(6px);
}

.skill-category li:hover i {
  color: #050505;
}

/* ARROWS */

.skills-arrow,
.skills-dots {
  display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .skills-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-skills {
    padding: 82px 18px;
  }

  .about-left h2,
  .skills-title h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-card {
    padding: 26px;
    border-radius: 26px;
  }

  .skills-slider {
    position: relative;
    padding: 22px 54px 0;
    max-width: 100%;
    overflow: visible;
  }

  .skills-categories {
    display: flex;
    gap: 0;
    overflow: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
    border-radius: 26px;
  }

  .skill-category {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 285px;
    border-radius: 24px;
  }

  .skills-arrow {
    display: grid;
    place-items: center;

    position: absolute;
    top: 52%;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,0.1);

    background: #fff;
    color: #050505;

    z-index: 8;
    cursor: pointer;

    box-shadow: 0 12px 28px rgba(0,0,0,0.08);

    transition: 0.3s;
  }

  .skills-arrow:hover {
    background: #050505;
    color: #fff;
  }

  .skills-prev {
    left: 6px;
    transform: translateY(-50%);
  }

  .skills-next {
    right: 6px;
    transform: translateY(-50%);
  }

  .skills-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .skills-dots button {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.3s;
  }

  .skills-dots button.active {
    width: 24px;
    background: #050505;
  }
}

@media (max-width: 430px) {
  .about-skills {
    padding: 70px 16px;
  }

  .section-tag {
    font-size: 11px;
    padding: 9px 14px;
  }

  .about-left h2,
  .skills-title h2 {
    font-size: 34px;
  }

  .about-btn {
    width: 100%;
    justify-content: center;
  }

  .skills-slider {
    padding: 20px 48px 0;
  }

  .skills-prev {
    left: 2px;
  }

  .skills-next {
    right: 2px;
  }

  .skill-category {
    min-height: 295px;
    padding: 22px 18px;
  }
}
/* =========================
   PROJECTS SECTION
========================= */

.projects {
  position: relative;
  padding: 120px 40px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.projects-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.08), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.projects-bg::before {
  content: "";
  position: absolute;
  inset: 0;

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

  background-size: 72px 72px;

  opacity: 0.6;
}

.projects-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
}

/* =========================
   HEAD
========================= */

.projects-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.projects .section-tag {
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
}

.projects .section-tag i {
  color: #fff;
}

.projects-head h2 {
  color: #fff;

  font-size: clamp(40px, 5vw, 70px);

  line-height: 0.95;

  letter-spacing: -2.5px;

  margin-bottom: 18px;
}

.projects-head p {
  color: rgba(255,255,255,0.62);

  line-height: 1.85;
}

/* =========================
   GRID
========================= */

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

/* =========================
   CARD
========================= */

.project-card {
  position: relative;

  border-radius: 30px;

  overflow: hidden;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 18px 50px rgba(0,0,0,0.38);

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  backface-visibility: hidden;
  transform: translateZ(0);
}

.project-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255,255,255,0.18);

  box-shadow:
    0 24px 70px rgba(0,0,0,0.5),
    0 0 24px rgba(255,255,255,0.04);
}

/* FEATURED */

.project-card.featured {
  grid-column: span 2;

  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
}

/* =========================
   IMAGE
========================= */

.project-image {
  position: relative;

  height: 330px;

  overflow: hidden;

  background: #111;
}

.project-card.featured .project-image {
  height: 100%;
  min-height: 430px;
}

.project-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top, rgba(0,0,0,0.68), transparent 58%),
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 44%);

  z-index: 2;
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.55s cubic-bezier(.16,1,.3,1),
    filter 0.55s cubic-bezier(.16,1,.3,1);

  will-change: transform;
}

.project-card:hover .project-image img {
  transform: scale(1.045);

  filter:
    contrast(1.03)
    saturate(1.03);
}

/* =========================
   CONTENT
========================= */

.project-content {
  position: relative;
  z-index: 3;

  padding: 34px;
}

.project-category {
  display: inline-flex;

  color: rgba(255,255,255,0.82) !important;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.project-content h3 {
  color: #fff;

  font-size: 31px;

  line-height: 1.1;

  letter-spacing: -0.8px;

  margin-bottom: 14px;
}

.project-content p {
  color: rgba(255,255,255,0.62);

  line-height: 1.75;

  margin-bottom: 30px;
}

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

.project-btn {
  width: fit-content;

  color: #fff;

  text-decoration: none;

  padding: 13px 19px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.14);

  background: rgba(255,255,255,0.045);

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.project-btn i {
  transition: transform 0.3s ease;
}

.project-btn:hover {
  color: #050505;

  background: #fff;

  border-color: #fff;

  transform: translateY(-2px);
}

.project-btn:hover i {
  transform: translateX(4px);
}

/* =========================
   MORE BUTTON
========================= */

.projects-more {
  display: flex;
  justify-content: center;

  margin-top: 42px;
}

.projects-more a {
  color: #fff;

  text-decoration: none;

  padding: 15px 25px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.16);

  background: rgba(255,255,255,0.06);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.projects-more a:hover {
  color: #050505;

  background: #fff;

  transform: translateY(-3px);
}

/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(45px);

  transition:
    opacity 0.8s cubic-bezier(.16,1,.3,1),
    transform 0.8s cubic-bezier(.16,1,.3,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.projects-grid .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.projects-grid .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.projects-grid .reveal:nth-child(3) {
  transition-delay: 0.3s;
}

.projects-grid .reveal:nth-child(4) {
  transition-delay: 0.4s;
}

.projects-grid .reveal:nth-child(5) {
  transition-delay: 0.5s;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .projects-grid,
  .project-card.featured {
    grid-template-columns: 1fr;
  }

  .project-card.featured {
    grid-column: span 1;
  }

  .project-card.featured .project-image {
    min-height: 330px;
  }
}

@media (max-width: 600px) {

  .projects {
    padding: 84px 18px;
  }

  .projects-head {
    margin-bottom: 38px;
  }

  .projects-head h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .projects-head p {
    font-size: 14px;
  }

  .projects-grid {
    gap: 20px;
  }

  .project-card {
    border-radius: 24px;
  }

  .project-image,
  .project-card.featured .project-image {
    height: 245px;
    min-height: 245px;
  }

  .project-content {
    padding: 24px;
  }

  .project-content h3 {
    font-size: 26px;
  }

  .project-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .project-btn,
  .projects-more a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
  position: relative;

  padding: 120px 40px;

  background:
    linear-gradient(to bottom, #f7f7f4, #ffffff);

  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.05), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.04), transparent 30%);
}

.contact-container {
  position: relative;
  z-index: 2;

  max-width: 1180px;

  margin: auto;
}

/* =========================
   HEAD
========================= */

.contact-head {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 56px;
}

.contact-head h2 {
  color: #050505;

  font-size: clamp(42px, 5vw, 72px);

  letter-spacing: -3px;

  line-height: 0.98;

  margin-bottom: 18px;
}

.contact-head p {
  color: rgba(5,5,5,0.58);

  line-height: 1.9;
}

/* =========================
   WRAPPER
========================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

/* =========================
   CARDS
========================= */

.contact-info,
.contact-form {
  position: relative;

  padding: 36px;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.76)
    );

  border: 1px solid rgba(0,0,0,0.08);

  backdrop-filter: blur(18px);

  overflow: hidden;

  box-shadow:
    0 24px 60px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);

  transition: 0.4s cubic-bezier(.16,1,.3,1);
}

.contact-info:hover,
.contact-form:hover {
  transform: translateY(-8px);

  box-shadow:
    0 34px 80px rgba(0,0,0,0.08);
}

/* GLOW */

.contact-glow {
  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  top: -100px;

  background: rgba(0,0,0,0.06);

  filter: blur(70px);
}

/* =========================
   LEFT SIDE
========================= */

.contact-info h3 {
  position: relative;

  color: #050505;

  font-size: 32px;

  margin-bottom: 16px;
}

.contact-info > p {
  position: relative;

  color: rgba(5,5,5,0.58);

  line-height: 1.85;

  margin-bottom: 34px;
}

/* =========================
   CONTACT ITEMS
========================= */

.contact-items {
  position: relative;

  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 17px;

  border-radius: 20px;

  text-decoration: none;

  color: #050505;

  background: rgba(0,0,0,0.025);

  border: 1px solid rgba(0,0,0,0.06);

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

.contact-item:hover {
  transform: translateX(8px);

  background: #050505;

  color: #fff;

  border-color: #050505;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}

.contact-item i {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #050505;

  background: rgba(255,255,255,0.8);

  font-size: 18px;

  transition: 0.35s;
}

.contact-item:hover i {
  background: #fff;
  color: #050505;
}

.contact-item span {
  display: block;

  color: rgba(5,5,5,0.5);

  font-size: 13px;

  margin-bottom: 4px;

  transition: 0.3s;
}

.contact-item:hover span {
  color: rgba(255,255,255,0.62);
}

.contact-item strong {
  font-size: 14px;

  transition: 0.3s;
}

/* =========================
   SOCIAL
========================= */

.contact-social {
  position: relative;

  display: flex;
  gap: 12px;

  margin-top: 32px;
}

.contact-social a {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #050505;

  text-decoration: none;

  border: 1px solid rgba(0,0,0,0.08);

  background: rgba(255,255,255,0.85);

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

.contact-social a:hover {
  color: #fff;

  background: #050505;

  border-color: #050505;

  transform: translateY(-6px) rotate(6deg);

  box-shadow:
    0 16px 34px rgba(0,0,0,0.14);
}

/* =========================
   FORM
========================= */

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  display: grid;
  gap: 10px;
}

.input-group label {
  color: rgba(5,5,5,0.72);

  font-size: 14px;
  font-weight: 600;
}

/* INPUTS */

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;

  border: 1px solid rgba(0,0,0,0.08);

  outline: none;

  border-radius: 18px;

  padding: 17px;

  color: #050505;

  background: rgba(0,0,0,0.025);

  transition: 0.3s cubic-bezier(.16,1,.3,1);

  font-size: 15px;
}

.input-group textarea {
  min-height: 165px;
  resize: vertical;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(5,5,5,0.34);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: rgba(0,0,0,0.18);

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(0,0,0,0.05);
}

.input-group select option {
  background: #fff;
  color: #050505;
}

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

.send-btn {
  width: fit-content;

  border: none;

  cursor: pointer;

  padding: 16px 26px;

  border-radius: 999px;

  background: #050505;

  color: #fff;

  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: 0.35s cubic-bezier(.16,1,.3,1);
}

.send-btn:hover {
  transform: translateY(-5px);

  background: #111;

  box-shadow:
    0 24px 44px rgba(0,0,0,0.16);
}

.send-btn i {
  transition: 0.3s;
}

.send-btn:hover i {
  transform: translateX(5px);
}

/* =========================
   LIGHT SWEEP
========================= */

.contact-form::before,
.contact-info::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.5),
      transparent
    );

  transform: translateX(-120%);

  transition: 0.9s;
}

.contact-form:hover::before,
.contact-info:hover::before {
  transform: translateX(120%);
}

.contact-item,
.contact-social a,
.send-btn {
  position: relative;
  z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .contact-wrapper,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .contact {
    padding: 84px 18px;
  }

  .contact-head h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .contact-info,
  .contact-form {
    padding: 26px;

    border-radius: 26px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-item strong {
    word-break: break-word;
  }

  .contact-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .send-btn {
    width: 100%;
    justify-content: center;
  }
}
.footer {
  position: relative;
  padding: 0 40px 28px;
  background: #050505;
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.07), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.045), transparent 34%),
    linear-gradient(180deg, #080808, #000);
}

.footer-marquee {
  position: relative;
  z-index: 2;
  margin: 0 -40px 70px;
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.footer-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: footerMarquee 24s linear infinite;
}

.footer-marquee span {
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  white-space: nowrap;
}

.footer-marquee img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@keyframes footerMarquee {
  to {
    transform: translateX(-50%);
  }
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.15fr 0.9fr;
  gap: 34px;
}

.footer-logo img {
  width: 90px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-left p {
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 320px;
}

.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 1px;
}

.footer a {
  text-decoration: none;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff !important;
  transform: translateX(6px);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}

.footer-contact i {
  color: #fff;
  min-width: 18px;
  opacity: 0.75;
}

.footer-social div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.045);
}

.footer-social a:hover {
  background: #ffffff;
  color: #050505;
  border-color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(255,255,255,0.12);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 45px auto 0;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p,
.footer-bottom span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 0 18px 24px;
  }

  .footer-marquee {
    margin: 0 -18px 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-left p {
    margin: auto;
  }

  .footer-contact a {
    justify-content: center;
  }

  .footer-social div {
    justify-content: center;
  }

  .footer a:hover {
    transform: none;
  }
}
/* =========================
   PROJECTS ARCHIVE PAGE
========================= */

.projects-page {
  position: relative;
  min-height: 100vh;
  padding: 160px 40px 110px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.projects-page-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.075), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.045), transparent 25%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.projects-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.65;
}

.projects-page-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
}

/* HEAD */

.projects-page-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}

.projects-page .section-tag {
  color: #fff;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
}

.projects-page .section-tag i {
  color: #fff;
}

.projects-page-head h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 20px;
}

.projects-page-head p {
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
}

/* CONTROLS */

.projects-controls {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.projects-search {
  max-width: 580px;
  width: 100%;
  height: 60px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
}

.projects-search i {
  color: rgba(255,255,255,0.82);
}

.projects-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
}

.projects-search input::placeholder {
  color: rgba(255,255,255,0.36);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.76);
  padding: 12px 19px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #050505;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* GRID */

.all-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* IMPORTANT FIX: reveal + hover without conflict */

.all-project-card {
  --reveal-y: 34px;
  --hover-y: 0px;

  position: relative;
  border-radius: 28px;
  overflow: hidden;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);

  opacity: 0;
  transform: translateY(calc(var(--reveal-y) + var(--hover-y)));

  transition:
    opacity 0.7s cubic-bezier(.16,1,.3,1),
    transform 0.55s cubic-bezier(.16,1,.3,1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  backface-visibility: hidden;
  will-change: transform, opacity;
}

.all-project-card.show {
  --reveal-y: 0px;
  opacity: 1;
}

.all-project-card:hover {
  --hover-y: -8px;
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.52),
    0 0 24px rgba(255,255,255,0.04);
}

.all-project-card.hide {
  display: none;
}

/* IMAGE */

.all-project-img {
  height: 245px;
  position: relative;
  overflow: hidden;
  background: #111;
}

.all-project-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.68), transparent 58%),
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 45%);
  pointer-events: none;
  z-index: 2;
}

.all-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(.16,1,.3,1),
    filter 0.65s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.all-project-card:hover .all-project-img img {
  transform: scale(1.045);
  filter: contrast(1.03) saturate(1.03);
}

/* CONTENT */

.all-project-content {
  padding: 25px;
}

.all-project-content span {
  color: rgba(255,255,255,0.78) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.all-project-content h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  margin: 13px 0;
}

.all-project-content p {
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 23px;
  font-size: 14px;
}

.all-project-content a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  transition: 0.3s ease;
}

.all-project-content a:hover {
  color: #050505;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.all-project-content a i {
  transition: 0.3s ease;
}

.all-project-content a:hover i {
  transform: translateX(4px);
}

.no-projects {
  display: none;
  text-align: center;
  color: rgba(255,255,255,0.58);
  margin-top: 30px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .all-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .projects-page {
    padding: 135px 18px 80px;
  }

  .projects-page-head h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .projects-page-head p {
    font-size: 14px;
  }

  .all-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .all-project-card {
    border-radius: 24px;
  }

  .all-project-img {
    height: 235px;
  }

  .all-project-content {
    padding: 23px;
  }

  .all-project-content h3 {
    font-size: 26px;
  }

  .all-project-content a {
    width: 100%;
    justify-content: center;
  }

  .projects-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .projects-filter::-webkit-scrollbar {
    height: 5px;
  }

  .projects-filter::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 999px;
  }
}
/* =========================
   CAREER SECTION MIXED
========================= */

.career-pro {
  position: relative;
  padding: 130px 40px;
  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      #050505 0%,
      #0d0d0d 18%,
      #f5f5f2 58%,
      #ffffff 100%
    );
}

/* BACKGROUND */

.career-pro .career-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 15% 12%, rgba(255,255,255,0.09), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at 50% 85%, rgba(0,0,0,0.05), transparent 28%);
}

.career-pro .career-bg::before {
  content: "";

  position: absolute;
  inset: 0;

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

  background-size: 72px 72px;

  opacity: 0.35;
}

.career-container {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: auto;
}

/* =========================
   HEAD
========================= */

.career-head {
  text-align: center;

  max-width: 790px;

  margin: 0 auto 60px;
}

.career-head .section-tag {
  color: #fff;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.13);
}

.career-head .section-tag i {
  color: #fff;
}

.career-head h2 {
  color: #fff;

  font-size: clamp(42px, 5vw, 74px);

  line-height: 1;

  letter-spacing: -3px;

  margin-bottom: 18px;
}

.career-head p {
  color: rgba(255,255,255,0.62);

  line-height: 1.85;
}

/* =========================
   SHOWCASE
========================= */

.career-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-bottom: 90px;
}

.showcase-card {
  position: relative;

  padding: 30px;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.11);

  backdrop-filter: blur(10px);

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-5px);

  border-color: rgba(255,255,255,0.18);

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

.showcase-card span {
  color: rgba(255,255,255,0.52);

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.showcase-card strong {
  display: block;

  font-size: 50px;

  margin: 14px 0 10px;

  color: #fff;
}

.showcase-card p {
  color: rgba(255,255,255,0.62);

  line-height: 1.75;

  font-size: 14px;
}

/* =========================
   TIMELINE
========================= */

.career-timeline-pro {
  position: relative;

  display: grid;

  gap: 30px;
}

/* LINE */

.career-timeline-pro::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 0;
  bottom: 0;

  width: 2px;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.16),
      rgba(0,0,0,0.08)
    );

  transform: translateX(-50%);
}

/* PROGRESS */

.career-progress {
  position: absolute;

  left: 50%;
  top: 0;

  width: 2px;
  height: 0;

  background:
    linear-gradient(
      to bottom,
      #fff,
      #050505
    );

  transform: translateX(-50%);

  opacity: 0.7;

  transition: height 0.12s linear;
}

/* =========================
   CARD
========================= */

.career-card-pro {
  --career-reveal-y: 30px;
  --career-hover-y: 0px;

  position: relative;

  width: calc(50% - 56px);

  min-height: 235px;

  padding: 28px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.82)
    );

  border: 1px solid rgba(0,0,0,0.06);

  backdrop-filter: blur(10px);

  box-shadow:
    0 12px 32px rgba(0,0,0,0.05);

  opacity: 0;

  transform:
    translateY(calc(var(--career-reveal-y) + var(--career-hover-y)));

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.22,1,.36,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;

  will-change: transform, opacity;
}

.career-card-pro.reveal.show {
  --career-reveal-y: 0px;

  opacity: 1;
}

.career-card-pro:nth-child(even) {
  margin-right: auto;
}

.career-card-pro:nth-child(odd) {
  margin-left: auto;
}

.career-card-pro:hover {
  --career-hover-y: -5px;

  border-color: rgba(0,0,0,0.10);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.07);
}

/* DOT */

.career-card-pro::before {
  content: "";

  position: absolute;

  top: 38px;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #050505;

  border: 4px solid #fff;

  box-shadow:
    0 0 14px rgba(0,0,0,0.14);
}

.career-card-pro:nth-child(even)::before {
  right: -65px;
}

.career-card-pro:nth-child(odd)::before {
  left: -65px;
}

/* LOGO */

.career-logo-pro {
  width: 74px;
  height: 74px;

  border-radius: 22px;

  display: grid;
  place-items: center;

  margin-bottom: 18px;

  background: rgba(0,0,0,0.03);

  border: 1px solid rgba(0,0,0,0.06);

  overflow: hidden;
}

.career-logo-pro img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.career-logo-pro.text-logo {
  color: #050505;

  font-weight: 900;

  letter-spacing: 1px;

  font-size: 20px;
}

/* YEAR */

.career-year {
  position: absolute;

  top: 28px;
  right: 26px;

  color: rgba(5,5,5,0.42);

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

/* CONTENT */

.career-company {
  display: inline-block;

  color: rgba(5,5,5,0.54);

  font-size: 13px;

  margin-bottom: 8px;
}

.career-content-pro h3 {
  color: #050505;

  font-size: 26px;

  line-height: 1.15;

  margin-bottom: 12px;

  padding-right: 80px;
}

.career-content-pro p {
  color: rgba(5,5,5,0.62);

  line-height: 1.75;

  font-size: 14px;
}

.career-content-pro ul {
  margin-top: 15px;

  display: grid;

  gap: 8px;

  list-style: none;
}

.career-content-pro li {
  position: relative;

  padding-left: 18px;

  color: rgba(5,5,5,0.58);

  line-height: 1.55;

  font-size: 13px;
}

.career-content-pro li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #050505;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

  .career-showcase {
    grid-template-columns: 1fr;
  }

  .career-timeline-pro::before,
  .career-progress {
    left: 28px;
  }

  .career-card-pro,
  .career-card-pro:nth-child(even),
  .career-card-pro:nth-child(odd) {
    width: 100%;

    margin-left: 0;
    margin-right: 0;

    padding-left: 92px;
  }

  .career-card-pro:nth-child(even)::before,
  .career-card-pro:nth-child(odd)::before {
    left: 20px;
    right: auto;
  }

  .career-logo-pro {
    position: absolute;

    left: 24px;
    top: 68px;

    width: 46px;
    height: 46px;

    border-radius: 14px;
  }

  .career-year {
    position: static;

    display: inline-block;

    margin-bottom: 12px;
  }

  .career-content-pro h3 {
    padding-right: 0;
  }
}

@media (max-width: 600px) {

  .career-pro {
    padding: 90px 18px;
  }

  .career-head {
    margin-bottom: 36px;
  }

  .career-head h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .career-showcase {
    margin-bottom: 60px;
  }

  .showcase-card {
    padding: 24px;
    border-radius: 24px;
  }

  .showcase-card strong {
    font-size: 38px;
  }

  .career-timeline-pro {
    gap: 22px;
  }

  .career-card-pro,
  .career-card-pro:nth-child(even),
  .career-card-pro:nth-child(odd) {
    padding: 22px 18px 22px 74px;

    border-radius: 24px;

    min-height: auto;
  }

  .career-timeline-pro::before,
  .career-progress {
    left: 23px;
  }

  .career-card-pro:nth-child(even)::before,
  .career-card-pro:nth-child(odd)::before {
    left: 15px;
    top: 30px;
  }

  .career-logo-pro {
    left: 18px;
    top: 62px;

    width: 42px;
    height: 42px;

    border-radius: 13px;
  }

  .career-content-pro h3 {
    font-size: 22px;
  }

  .career-content-pro p,
  .career-content-pro li {
    font-size: 13px;
  }
}


.project-hero {
  padding: 150px 40px 60px;
  text-align: center;
  background: var(--bg);
}

.project-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  margin-bottom: 20px;
}

.project-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 20px;
}

.project-hero p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
}

.project-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: var(--accent);
  color: black;
}

.btn.primary:hover {
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

/* =========================
   PROJECT INNER PAGE
========================= */

.project-live {
  position: relative;
  padding: 160px 40px 120px;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.08), transparent 26%),
    radial-gradient(circle at 85% 40%, rgba(255,255,255,0.045), transparent 28%),
    linear-gradient(180deg, #050505 0%, #000 100%);
  color: #fff;
  overflow: hidden;
}

.project-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
  pointer-events: none;
}

.project-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: auto;
}

.project-header h1 {
  color: #fff;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -5px;
  margin-bottom: 22px;
}

.project-header p {
  color: rgba(255,255,255,0.66);
  margin-top: 20px;
  line-height: 1.9;
  font-size: 16px;
}

.actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.35s cubic-bezier(.22,1,.36,1);
  font-weight: 700;
}

.btn.primary {
  background: #fff;
  color: #050505;
  border: 1px solid #fff;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn.primary:hover {
  background: transparent;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #050505;
  border-color: #fff;
}

/* VIEWER */

.website-viewer {
  position: relative;
  z-index: 2;
  margin-top: 76px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0b0b;
  max-width: 1200px;
  margin-inline: auto;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.72),
    0 0 40px rgba(255,255,255,0.035);
}

.browser-bar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.35;
}

.browser-bar p {
  margin-left: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.website-content {
  background: #050505;
}

.website-content img {
  width: 100%;
  display: block;
}

.website-content img:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* RESPONSIVE */

@media (max-width: 700px) {
  .project-live {
    padding: 140px 18px 85px;
  }

  .project-header h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .project-header p {
    font-size: 14px;
    line-height: 1.8;
  }

  .actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .website-viewer {
    margin-top: 54px;
    border-radius: 22px;
  }

  .browser-bar {
    height: 52px;
  }

  .browser-bar p {
    font-size: 12px;
  }
}
/* PROGRESS RING - BLACK & WHITE STYLE */

.scroll-progress {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background:
    conic-gradient(
      #ffffff var(--scroll-progress, 0deg),
      rgba(255,255,255,0.08) var(--scroll-progress, 0deg)
    );

  opacity: 1;

  transition: background 0.15s linear;
}

.scroll-progress::after {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(0,0,0,0.96),
      rgba(15,15,15,0.92)
    );

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* =========================
   SCROLL TO TOP
========================= */

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(0,0,0,0.78);

  backdrop-filter: blur(14px);

  color: white;

  z-index: 999;

  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  transform: translateY(18px) scale(0.9);

  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(.16,1,.3,1),
    background 0.3s ease,
    box-shadow 0.3s ease;

  overflow: hidden;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

/* ICON */

.scroll-top i {
  position: relative;
  z-index: 3;

  font-size: 18px;

  color: white;

  transition: 0.3s;
}

/* HOVER */

.scroll-top:hover {
  background: white;

  color: black;

  transform: translateY(-6px) scale(1.05);

  box-shadow:
    0 14px 34px rgba(255,255,255,0.12);
}

.scroll-top:hover i {
  color: black;

  transform: translateY(-3px);
}

/* =========================
   PROGRESS RING
========================= */

.scroll-progress {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background:
    conic-gradient(
      #ffffff 0deg,
      #ffffff var(--scroll-progress, 0deg),
      rgba(255,255,255,0.12) var(--scroll-progress, 0deg),
      rgba(255,255,255,0.12) 360deg
    );

  transition: 0.15s linear;
}

.scroll-progress::after {
  content: "";

  position: absolute;

  inset: 5px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(0,0,0,0.96),
      rgba(15,15,15,0.92)
    );

  border: 1px solid rgba(255,255,255,0.06);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .scroll-top {
    width: 52px;
    height: 52px;

    right: 16px;
    bottom: 16px;
  }

  .scroll-top i {
    font-size: 16px;
  }
}
/* =========================
   ADVANCED PORTFOLIO CHATBOT
========================= */

.portfolio-chatbot {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 1200;
}

/* TOGGLE */

.chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  outline: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(18px);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,0.26);
  transition: 0.35s cubic-bezier(.22,1,.36,1);
}

.chat-toggle i {
  position: relative;
  z-index: 2;
}

.chat-toggle:hover {
  transform: translateY(-6px);
  background: #000;
  box-shadow: 0 22px 55px rgba(0,0,0,0.32);
}

.chat-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px #22c55e;
  z-index: 3;
}

.chat-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid #22c55e;
  border-radius: 50%;
  animation: chatPulse 1.5s infinite;
}

@keyframes chatPulse {
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* WINDOW */

.chat-window {
  position: absolute;
  right: 0;
  bottom: 76px;

  width: 390px;
  height: 560px;

  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 120px);

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 38%),
    linear-gradient(145deg, rgba(15,15,15,0.97), rgba(7,7,7,0.95));

  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 35px 110px rgba(0,0,0,0.50);

  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transition: 0.45s cubic-bezier(.22,1,.36,1);
}

.chat-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* HEAD */

.chat-head {
  flex: 0 0 auto;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #050505;
  font-size: 16px;
  flex: 0 0 auto;
}

.chat-title {
  flex: 1;
  min-width: 0;
}

.chat-title strong {
  color: #fff;
  font-size: 14px;
}

.chat-title p {
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  margin-top: 4px;
}

.chat-title p span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 5px;
}

.chat-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
  flex: 0 0 auto;
}

.chat-close:hover {
  background: #fff;
  color: #050505;
  transform: rotate(90deg);
}

/* BODY */

.chat-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.chat-body::-webkit-scrollbar {
  width: 5px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}

/* MESSAGES */

.bot-msg,
.user-msg {
  padding: 13px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 88%;
  animation: msgPop 0.32s cubic-bezier(.22,1,.36,1);
}

@keyframes msgPop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-msg {
  align-self: flex-start;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}

.user-msg {
  align-self: flex-end;
  background: #fff;
  color: #050505;
  border-bottom-right-radius: 6px;
}

.bot-msg a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* QUICK QUESTIONS */

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.quick-questions button {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.84);
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease;
}

.quick-questions button:hover {
  background: #fff;
  color: #050505;
  transform: translateY(-2px);
}

/* TYPING */

.typing-msg {
  align-self: flex-start;
  width: fit-content;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.08);
}

.typing-msg span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.65);
  border-radius: 50%;
  margin: 0 2px;
  animation: typingDot 0.9s infinite;
}

.typing-msg span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-msg span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingDot {
  50% {
    transform: translateY(-4px);
    opacity: 0.45;
  }
}

/* FORM */

.chat-form {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.chat-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
  border-radius: 999px;
  padding: 13px 15px;
  transition: 0.3s ease;
}

.chat-form input::placeholder {
  color: rgba(255,255,255,0.36);
}

.chat-form input:focus {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

.chat-form button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  cursor: pointer;
  transition: 0.3s ease;
  flex: 0 0 auto;
}

.chat-form button:hover {
  transform: rotate(-10deg) scale(1.05);
}

/* MOBILE */

@media (max-width: 600px) {
  .portfolio-chatbot {
    right: 16px;
    bottom: 98px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 20px;
  }

  .chat-window {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 88px;

    width: auto;
    height: min(620px, calc(100dvh - 108px));
    max-height: none;

    border-radius: 24px;
  }

  .chat-head {
    padding: 14px;
  }

  .bot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .chat-body {
    padding: 14px;
    gap: 10px;
  }

  .bot-msg,
  .user-msg {
    max-width: 92%;
    font-size: 13px;
    padding: 12px 13px;
  }

  .quick-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quick-questions button {
    font-size: 11px;
    padding: 9px 10px;
  }

  .chat-form {
    padding: 12px;
  }

  .chat-form input {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .quick-questions {
    grid-template-columns: 1fr;
  }

  .chat-window {
    left: 8px;
    right: 8px;
  }
}
/* Floating Buttons Alignment Fix */
.portfolio-chatbot,
.scroll-top {
  right: 24px;
}

.scroll-top {
  bottom: 24px;
}

.portfolio-chatbot {
  bottom: 94px;
}

/* خلي زرار الشات نفس عرض ومركز الاسكرول */
.chat-toggle,
.scroll-top {
  width: 62px;
  height: 62px;
}

/* Mobile */
@media (max-width: 600px) {
  .portfolio-chatbot,
  .scroll-top {
    right: 16px;
  }

  .scroll-top {
    bottom: 18px;
  }

  .portfolio-chatbot {
    bottom: 88px;
  }

  .chat-toggle,
  .scroll-top {
    width: 56px;
    height: 56px;
  }

  .chat-toggle {
    border-radius: 20px;
  }
}
/* =========================
   DARK MARQUEE
========================= */

.marquee {
  width: 100%;

  overflow: hidden;

  padding: 34px 0;

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #0a0a0a 100%
    );

  position: relative;
}

/* GRID OVERLAY */

.marquee::before,
.marquee::after {
  content: "";

  position: absolute;

  top: 0;

  width: 140px;
  height: 100%;

  z-index: 3;
}

.marquee::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #050505,
      transparent
    );
}

.marquee::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #050505,
      transparent
    );
}

/* subtle grid */

.marquee .grid-overlay {
  position: absolute;
  inset: 0;

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

  background-size: 70px 70px;

  opacity: 0.45;

  pointer-events: none;
}

/* TRACK */

.marquee-track {
  display: flex;
  align-items: center;

  gap: 54px;

  width: max-content;

  animation: scrollMarquee 22s linear infinite;

  will-change: transform;
}

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

/* TEXT */

.marquee-track span {
  font-size: 18px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255,255,255,0.72);

  white-space: nowrap;

  position: relative;

  transition: 0.3s ease;
}

.marquee-track span:hover {
  color: white;

  transform: translateY(-2px);
}

/* DOT */

.marquee-track span::after {
  content: "•";

  margin-left: 54px;

  color: rgba(255,255,255,0.18);

  font-size: 20px;
}

/* ANIMATION */

@keyframes scrollMarquee {

  0% {
    transform: translateX(0);
  }

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

/* MOBILE */

@media (max-width: 600px) {

  .marquee {
    padding: 26px 0;
  }

  .marquee-track {
    gap: 38px;
  }

  .marquee-track span {
    font-size: 14px;

    letter-spacing: 1.5px;
  }

  .marquee-track span::after {
    margin-left: 38px;
  }

  .marquee::before,
  .marquee::after {
    width: 70px;
  }
}
html {
  scroll-behavior: smooth;
}

.about-ultra-page {
  background: #f7f7f4;
  color: #050505;
  overflow: hidden;
}

/* HERO */

.about-ultra-hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 40px 100px;
  display: flex;
  align-items: center;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.about-ultra-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.09), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.05), transparent 30%),
    linear-gradient(180deg, #050505, #000);
}

.about-ultra-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 72px 72px;
}

.about-ultra-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  text-align: center;
}

.dark-tag {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
}

.about-ultra-hero h1 {
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -5px;
  margin: 26px 0;
}

.about-ultra-hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.34);
}

.about-ultra-hero p {
  max-width: 760px;
  margin: auto;
  color: rgba(255,255,255,0.66);
  line-height: 1.9;
  font-size: 17px;
}

.about-hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-hero-stats div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.about-hero-stats strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

.about-hero-stats span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

/* MANIFEST */

.about-manifest {
  padding: 110px 40px;
  background: #f7f7f4;
}

.manifest-card {
  max-width: 1180px;
  margin: auto;
  padding: 38px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.06);
}

.manifest-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.manifest-label span {
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(5,5,5,0.48);
}

.manifest-label i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #050505;
  color: #fff;
}

.manifest-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.manifest-grid h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.manifest-grid h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.35);
}

.manifest-text {
  display: grid;
  gap: 18px;
}

.manifest-text p {
  color: rgba(5,5,5,0.62);
  line-height: 1.9;
  font-size: 17px;
}

/* CAPABILITIES */

.about-capabilities {
  padding: 0 40px 120px;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
  transition: 0.4s cubic-bezier(.22,1,.36,1);
}

.capability-card:hover,
.capability-card.active {
  background: #050505;
  color: #fff;
  transform: translateY(-8px);
}

.capability-card span {
  color: rgba(5,5,5,0.38);
  font-size: 12px;
  letter-spacing: 3px;
}

.capability-card:hover span,
.capability-card.active span {
  color: rgba(255,255,255,0.45);
}

.capability-card i {
  display: block;
  font-size: 30px;
  margin: 28px 0 20px;
}

.capability-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.capability-card p {
  color: rgba(5,5,5,0.58);
  line-height: 1.8;
}

.capability-card:hover p,
.capability-card.active p {
  color: rgba(255,255,255,0.62);
}

/* TIMELINE */

.about-timeline {
  padding: 120px 40px;
  background: #050505;
  color: #fff;
}

.timeline-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.timeline-head h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 18px 0;
}

.timeline-head p {
  color: rgba(255,255,255,0.62);
}

.timeline-list {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s cubic-bezier(.22,1,.36,1);
}

.timeline-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.timeline-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #050505;
  font-weight: 900;
  overflow: hidden;
}

.timeline-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.timeline-item span {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 26px;
  margin: 10px 0 6px;
}

.timeline-item h4 {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  margin-bottom: 12px;
}

.timeline-item p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s cubic-bezier(.22,1,.36,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-hero-stats,
  .manifest-grid,
  .about-capabilities {
    grid-template-columns: 1fr;
  }

  .about-ultra-hero,
  .about-manifest,
  .about-timeline {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 600px) {
  .about-ultra-hero {
    padding-top: 145px;
  }

  .about-ultra-hero h1 {
    font-size: 54px;
    letter-spacing: -2.5px;
  }

  .manifest-card {
    padding: 26px;
    border-radius: 28px;
  }

  .about-capabilities {
    padding: 0 18px 90px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-logo {
    width: 58px;
    height: 58px;
  }
}

.about-ultra-page {
  background: #f7f7f4;
  color: #050505;
  overflow: hidden;
}

/* HERO */

.about-ultra-hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 40px 105px;
  display: flex;
  align-items: center;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.about-ultra-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.1), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.055), transparent 30%),
    linear-gradient(180deg, #050505, #000);
}

.about-ultra-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  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: 72px 72px;
}

.hidden-signal {
  position: absolute;
  right: 8%;
  bottom: 14%;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  user-select: none;
}

.about-ultra-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  text-align: center;
}

.about-mini-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
}

.about-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.dark-tag {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
}

.about-ultra-hero h1 {
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -5px;
  margin: 26px 0;
}

.about-ultra-hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.36);
}

.about-ultra-hero p {
  max-width: 780px;
  margin: auto;
  color: rgba(255,255,255,0.66);
  line-height: 1.9;
  font-size: 17px;
}

.about-hero-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-hero-stats div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.about-hero-stats strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

.about-hero-stats span {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

/* MANIFEST */

.about-manifest {
  padding: 110px 40px;
  background: #f7f7f4;
}

.manifest-card {
  max-width: 1180px;
  margin: auto;
  padding: 38px;
  border-radius: 36px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.06);
}

.manifest-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.manifest-label span {
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(5,5,5,0.48);
}

.manifest-label i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #050505;
  color: #fff;
}

.manifest-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.manifest-grid h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.manifest-grid h2 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.35);
}

.manifest-text {
  display: grid;
  gap: 18px;
}

.manifest-text p {
  color: rgba(5,5,5,0.62);
  line-height: 1.9;
  font-size: 17px;
}

/* CREATIVE ENGINE */

.creative-engine {
  position: relative;
  padding: 120px 40px;
  background: #050505;
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
}

.engine-bg-text {
  position: absolute;
  inset: auto 0 24px 0;
  text-align: center;
  font-size: clamp(42px, 9vw, 130px);
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
}

.engine-left {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.engine-left h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 22px 0;
}

.engine-left p {
  color: rgba(255,255,255,0.62);
  line-height: 1.9;
  font-size: 16px;
}

.engine-orbit {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}

.ring-one {
  width: 78%;
  height: 78%;
  animation: rotateOrbit 18s linear infinite;
}

.ring-two {
  width: 56%;
  height: 56%;
  animation: rotateOrbitReverse 14s linear infinite;
}

.orbit-core {
  width: 150px;
  height: 150px;
  border-radius: 42px;
  background: #fff;
  color: #050505;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 0 30px 80px rgba(255,255,255,0.08);
}

.orbit-core i {
  font-size: 34px;
}

.orbit-item {
  position: absolute;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.82);
  animation: floatOrbit 4s ease-in-out infinite;
}

.item-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.item-2 { right: 5%; top: 48%; animation-delay: .4s; }
.item-3 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: .8s; }
.item-4 { left: 5%; top: 48%; animation-delay: 1.2s; }

@keyframes rotateOrbit {
  to { transform: rotate(360deg); }
}

@keyframes rotateOrbitReverse {
  to { transform: rotate(-360deg); }
}

@keyframes floatOrbit {
  0%,100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

/* SKILLS CAROUSEL */

.skills-carousel-section {
  position: relative;
  padding: 115px 0;
  background: #f7f7f4;
  overflow: hidden;
}

.skills-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
  padding: 0 40px;
}

.skills-head h2 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin: 18px 0;
}

.skills-head p {
  color: rgba(5,5,5,0.58);
  line-height: 1.8;
}

.skills-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 30px;
}

.skills-carousel::before,
.skills-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 170px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.skills-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f7f7f4, transparent);
}

.skills-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f7f7f4, transparent);
}

.skills-carousel-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: skillsFlow 26s linear infinite;
  will-change: transform;
}

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

.skill-chip {
  width: 170px;
  height: 130px;
  flex: 0 0 auto;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.045);
  transition: 0.35s cubic-bezier(.22,1,.36,1);
}

.skill-chip:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 70px rgba(0,0,0,0.1);
}

.skill-chip i {
  font-size: 42px;
}

.skill-chip span {
  font-size: 13px;
  font-weight: 800;
  color: rgba(5,5,5,0.72);
}

.html i { color: #e34f26; }
.css i { color: #1572b6; }
.js i { color: #f7df1e; filter: drop-shadow(0 0 1px rgba(0,0,0,0.3)); }
.react i { color: #61dafb; }
.angular i { color: #dd0031; }
.bootstrap i { color: #7952b3; }
.tailwind i { color: #06b6d4; }
.php i { color: #777bb4; }
.laravel i { color: #ff2d20; }
.node i { color: #339933; }
.api i { color: #111827; }
.mysql i { color: #00758f; }
.mongo i { color: #47a248; }
.security i { color: #111111; }
.linux i { color: #111111; }
.python i { color: #3776ab; }
.wordpress i { color: #21759b; }
.shopify i { color: #7ab55c; }
.webflow i { color: #146ef5; }
.photoshop i { color: #31a8ff; }

@keyframes skillsFlow {
  to {
    transform: translateX(-50%);
  }
}

/* CORE MODULES */

.core-modules {
  max-width: 1180px;
  margin: 110px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-card {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
  transition: 0.4s cubic-bezier(.22,1,.36,1);
}

.module-card:hover,
.module-card.active {
  transform: translateY(-8px);
  background: #050505;
  color: #fff;
}

.module-card span {
  color: rgba(5,5,5,0.38);
  font-size: 12px;
  letter-spacing: 3px;
}

.module-card:hover span,
.module-card.active span {
  color: rgba(255,255,255,0.45);
}

.module-card h3 {
  font-size: 28px;
  margin: 18px 0 12px;
}

.module-card p {
  color: rgba(5,5,5,0.58);
  line-height: 1.8;
}

.module-card:hover p,
.module-card.active p {
  color: rgba(255,255,255,0.62);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s cubic-bezier(.22,1,.36,1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .creative-engine,
  .manifest-grid,
  .about-hero-stats,
  .core-modules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-ultra-hero {
    padding: 140px 18px 80px;
    min-height: auto;
  }

  .about-mini-photo {
    width: 82px;
    height: 82px;
    border-radius: 24px;
  }

  .about-ultra-hero h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  .about-ultra-hero p {
    font-size: 14px;
  }

  .about-hero-stats {
    margin-top: 34px;
  }

  .about-manifest,
  .creative-engine,
  .skills-carousel-section {
    padding: 80px 18px;
  }

  .manifest-card {
    padding: 26px;
    border-radius: 28px;
  }

  .manifest-grid h2,
  .engine-left h2,
  .skills-head h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .skills-head {
    padding: 0;
  }

  .skills-carousel {
    margin-left: -18px;
    margin-right: -18px;
  }

  .skills-carousel::before,
  .skills-carousel::after {
    width: 55px;
  }

  .skill-chip {
    width: 138px;
    height: 112px;
    border-radius: 24px;
  }

  .skill-chip i {
    font-size: 34px;
  }

  .skill-chip span {
    font-size: 12px;
  }

  .engine-orbit {
    width: 100%;
    max-width: 330px;
  }

  .orbit-core {
    width: 115px;
    height: 115px;
    border-radius: 32px;
  }

  .orbit-item {
    font-size: 12px;
    padding: 10px 13px;
  }

  .core-modules {
    padding: 0 18px;
    margin: 80px auto;
  }

  .hidden-signal {
    right: 18px;
    bottom: 40px;
    font-size: 8px;
    letter-spacing: 3px;
  }
}