@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* =========================================
   ROOT VARIABLES - FYNLO PALETTE
   ========================================= */
:root {
  --green-deep: #0a1f13;
  --green-dark: #122d1a;
  --green-mid: #1a4028;
  --green-bright: #16a34a;
  --lime: #a8e442;
  --lime-dark: #8bc832;
  --lime-glow: #c6f135;
  --white: #ffffff;
  --off-white: #f5f9f2;
  --light-green-bg: #edf7e6;
  --card-bg: #f8fbf5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-sky: #bfdbfe;
  --blue-bright: #3b82f6;
  --font-main: 'Manrope', 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.13);
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px;
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
}

.section-title.white {
  color: var(--white);
}

.section-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 14px;
  max-width: 540px;
}

.section-sub.white {
  color: rgba(255, 255, 255, .65);
}

.text-lime {
  color: var(--lime);
}

.text-green {
  color: var(--green-bright);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--green-deep);
}

.btn-lime:hover {
  background: var(--lime-glow);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 228, 66, .4);
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  border: 1.5px solid var(--gray-200);
}

.btn-white:hover {
  border-color: var(--lime);
  background: var(--off-white);
}

.btn-dark {
  background: var(--green-deep);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--green-mid);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12.5px;
}

.btn-arrow::after {
  content: ' →';
}

/* =========================================
   NAV BAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: rgba(10, 31, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 228, 66, 0.08);
}

.navbar.scrolled {
  background: rgba(8, 20, 13, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 5%;
  border-bottom: 1px solid rgba(168, 228, 66, .15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
}

.nav-logo span {
  color: var(--lime);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hamburger button */
.hamburger {
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(168, 228, 66, .15);
  border-color: var(--lime);
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.hamburger span:nth-child(1) {
  width: 20px;
}

.hamburger span:nth-child(2) {
  width: 13px;
}

.hamburger span:nth-child(3) {
  width: 20px;
}

.hamburger.active span:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.active span:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MENU BACKDROP
   ========================================= */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(5, 15, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: none;
}

.menu-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

/* =========================================
   MENU DRAWER (slide-in from right)
   ========================================= */
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(6, 20, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 2px solid transparent;
  border-image: linear-gradient(to bottom, rgba(168, 228, 66, 0.1), var(--lime), rgba(168, 228, 66, 0.1)) 1;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .65);
  display: none;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.menu-drawer.open {
  display: flex;
  transform: translateX(0);
}

/* Lime glow top-right */
.menu-drawer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168, 228, 66, .15) 0%, transparent 70%);
  pointer-events: none;
}

/* Green glow bottom-left */
.menu-drawer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(22, 163, 74, .1) 0%, transparent 70%);
  pointer-events: none;
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.drawer-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
}

.drawer-logo span {
  color: var(--lime);
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drawer-close:hover {
  background: var(--lime);
  color: var(--green-deep);
  border-color: var(--lime);
  transform: rotate(90deg);
  box-shadow: 0 0 18px rgba(168, 228, 66, .4);
}

/* Drawer Nav Links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 18px 0;
  gap: 2px;
  flex: 1;
  position: relative;
  z-index: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 23px;
  font-weight: 900;
  color: rgba(255, 255, 255, .72);
  transition: all 0.28s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  position: relative;
  letter-spacing: -.5px;
  opacity: 0;
  transform: translateX(18px);
}

.menu-drawer.open .drawer-link {
  animation: drawerLinkIn 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.menu-drawer.open .drawer-link:nth-child(1) {
  animation-delay: 0.12s;
}

.menu-drawer.open .drawer-link:nth-child(2) {
  animation-delay: 0.18s;
}

.menu-drawer.open .drawer-link:nth-child(3) {
  animation-delay: 0.24s;
}

.menu-drawer.open .drawer-link:nth-child(4) {
  animation-delay: 0.30s;
}

.menu-drawer.open .drawer-link:nth-child(5) {
  animation-delay: 0.36s;
}

@keyframes drawerLinkIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-link::before {
  content: "[" attr(data-num) "]";
  font-family: 'Outfit', monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 1px;
  opacity: .95;
  min-width: 32px;
  transition: all 0.25s;
}

.drawer-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--lime);
  border-radius: 0 2px 2px 0;
  transition: height 0.28s ease;
}

.drawer-link:hover {
  background: rgba(168, 228, 66, .07);
  color: var(--white);
  transform: translateX(6px);
  text-shadow: 0 0 15px rgba(168, 228, 66, 0.6);
}

.drawer-link:hover::before {
  transform: scale(1.05);
  opacity: 1;
}

.drawer-link:hover::after {
  height: 55%;
}

/* Divider */
.drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 228, 66, .18), transparent);
  margin: 18px 20px 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Drawer Status Grid */
.drawer-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.dsg-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dsg-label {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dsg-val {
  font-size: 11px;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.1px;
}

.dsg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 8px #16a34a;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

/* Hire Me CTA */
.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 20px;
  padding: 14px 22px;
  background: var(--lime);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: .3px;
}

.drawer-cta:hover {
  background: var(--lime-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 228, 66, .35);
}

/* Social icons */
.drawer-socials {
  display: flex;
  gap: 10px;
  padding: 18px 20px 8px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.drawer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.28s ease;
}

.drawer-socials a:hover {
  background: var(--lime);
  color: var(--green-deep);
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(168, 228, 66, .3);
}

/* Bottom copyright */
.drawer-tag {
  font-size: 10px;
  color: rgba(255, 255, 255, .22);
  padding: 10px 20px 22px;
  position: relative;
  z-index: 1;
  letter-spacing: .3px;
  flex-shrink: 0;
}

/* =========================================
   HERO SECTION — BOLD EDITORIAL
   ========================================= */
.hero-editorial {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #06130b;
  /* Dark backdrop matching the deep tech theme */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}

/* Giant background text */
.hero-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  user-select: none;
  line-height: 0.75;
  margin-top: -100px;
  /* Shift text slightly upwards behind shoulders */
  z-index: 2;
}

.hero-bg-text span {
  font-size: clamp(80px, 12vw, 195px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.035);
  /* Translucent white/grey for dark theme visibility */
  text-transform: uppercase;
  letter-spacing: -4px;
  display: inline-block;
  white-space: nowrap;
  animation: nameTracking 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Skill Orbit concentric rings (Perfect Round / Background Backdrop) */
.hero-orbits-container {
  position: absolute;
  top: 68%;
  /* Shifted downwards to keep top arcs clear of the header area */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 1300px;
  max-height: 1300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* background backdrop */
  pointer-events: none;
  animation: orbitsReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  /* Thin, solid light path visible on dark bg */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Colorful Highlight Arc Segments (matching reference image) */
.orbit-ring::before,
.orbit-ring::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border: 2px solid transparent;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-outer::before {
  border-top-color: #3b82f6;
  /* Blue highlight */
  opacity: 0.65;
}

.orbit-outer::after {
  border-bottom-color: #10b981;
  /* Green highlight */
  opacity: 0.55;
}

.orbit-middle::before {
  border-left-color: #f97316;
  /* Orange highlight */
  opacity: 0.65;
}

.orbit-middle::after {
  border-right-color: #a8e442;
  /* Lime highlight */
  opacity: 0.65;
}

.orbit-inner::before {
  border-top-color: #a855f7;
  /* Purple highlight */
  opacity: 0.7;
}

.orbit-outer {
  width: 1040px;
  height: 1040px;
  animation: orbitRotateClockwise 100s linear infinite;
}

.orbit-middle {
  width: 840px;
  height: 840px;
  animation: orbitRotateCounterClockwise 80s linear infinite;
}

.orbit-inner {
  width: 640px;
  height: 640px;
  animation: orbitRotateClockwise 60s linear infinite;
}

/* Intermediate Wrapper for perimeter offset and counter-rotation */
.orbit-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 10;
}

.orbit-outer .orbit-icon-wrapper {
  --r: 520px;
  animation: wrapperCounterClockwiseOuter 100s linear infinite;
}

.orbit-middle .orbit-icon-wrapper {
  --r: 420px;
  animation: wrapperClockwiseMiddle 80s linear infinite;
}

.orbit-inner .orbit-icon-wrapper {
  --r: 320px;
  animation: wrapperCounterClockwiseInner 60s linear infinite;
}

/* Individual Icon Styles (Perfect circles facing camera) */
.orbit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(168, 228, 66, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 12px rgba(168, 228, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 12;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.orbit-icon:hover {
  transform: scale(1.15) !important;
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(168, 228, 66, 0.45);
}

/* Keyframe animations */
@keyframes orbitRotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitRotateCounterClockwise {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Outer icons wrapper counter-rotates */
@keyframes wrapperCounterClockwiseOuter {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(-360deg);
  }
}

/* Middle icons wrapper clockwise counter-rotates */
@keyframes wrapperClockwiseMiddle {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(360deg);
  }
}

/* Inner icons wrapper counter-rotates */
@keyframes wrapperCounterClockwiseInner {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1 * var(--angle))) rotate(-360deg);
  }
}

/* Animated Backdrop Blobs */
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.blob-1,
.blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: blobFloat 14s infinite alternate ease-in-out;
}

.blob-1 {
  background: #a8e442;
  top: 5%;
  left: -10%;
}

.blob-2 {
  background: #16a34a;
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, -60px) scale(1.2);
  }

  100% {
    transform: translate(-60px, 80px) scale(0.9);
  }
}

/* Subtle wavy green line decoration */
.hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(100, 200, 100, .18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(60, 160, 60, .12) 0%, transparent 60%);
  pointer-events: none;
}

/* Center photo - aligned absolutely to the bottom */
.hero-photo-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 90vh;
  max-height: 780px;
  width: 100%;
  pointer-events: none;
  /* Let clicks pass through if needed */
}

.hero-person-img {
  width: auto;
  max-width: 95%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin-bottom: -4px;
  /* Hide any minor rendering pixel gap */
  pointer-events: auto;
  animation: photoReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both, ambientPhotoFloat 8s ease-in-out infinite 1.5s;
}

/* TOP LEFT: Available badge */
.hero-ed-badge {
  position: absolute;
  top: 90px;
  left: 5%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 40, 15, .9);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  letter-spacing: .5px;
  z-index: 10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 228, 66, .3);
  animation: badgePop 0.6s cubic-bezier(.34, 1.56, .64, 1) 0.3s both, badgeFloat 4s ease-in-out infinite 0.9s;
}

.hero-ed-badge i {
  color: var(--lime);
  font-size: 13px;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }

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

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }

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

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

/* TOP RIGHT: Hire Me button */
.hero-ed-hire {
  position: absolute;
  top: 90px;
  right: 5%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a2810;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .3px;
  z-index: 10;
  border: 1.5px solid rgba(168, 228, 66, .25);
  transition: all 0.3s ease;
  animation: badgePop 0.6s cubic-bezier(.34, 1.56, .64, 1) 0.4s both, ctaPulse 4.5s ease-in-out infinite 1s;
}

.hero-ed-hire:hover {
  background: var(--lime);
  color: #0a2810;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 24px rgba(168, 228, 66, .45) !important;
}

/* BOTTOM LEFT: description + socials */
.hero-ed-left {
  position: absolute;
  bottom: 50px;
  left: 5%;
  z-index: 10;
  max-width: 220px;
  animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-ed-desc {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  /* Light grey on dark bg */
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: .1px;
}

.hero-ed-socials {
  display: flex;
  gap: 10px;
}

.hero-ed-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  /* Transparent white backdrop */
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  /* Soft white border */
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.28s ease;
}

.hero-ed-socials a:hover {
  background: var(--lime);
  color: #06130b;
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(168, 228, 66, 0.35);
}

/* BOTTOM RIGHT: quote + stats */
.hero-ed-right {
  position: absolute;
  bottom: 50px;
  right: 5%;
  z-index: 10;
  max-width: 220px;
  text-align: right;
  animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-ed-quote {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero-ed-quote strong {
  color: var(--lime);
  font-weight: 800;
}

.hero-ed-stats {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  /* White numbers on dark */
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  /* Soft grey/white labels */
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}




/* Responsive Editorial Hero */
.hero-mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-editorial {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Hide desktop-specific hero components on mobile */
  .hero-bg-text,
  .hero-orbits-container,
  .hero-photo-wrap,
  .hero-ed-badge,
  .hero-ed-left,
  .hero-ed-right {
    display: none !important;
  }

  /* Mobile-Specific Hero Layout Styling */
  .hero-mobile-only {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    padding: 10px 5% 20px;
    box-sizing: border-box;
    z-index: 10;
  }

  .hero-mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .hm-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hm-badge {
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
  }

  .hm-badge .badge-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    border-radius: 50%;
    animation: dotPulse 1.8s infinite;
  }

  .hm-title-hi {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
  }

  .hm-title-name {
    font-size: clamp(36px, 9.5vw, 44px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    text-transform: none;
  }

  .hm-title-name span {
    color: var(--lime);
  }

  .hm-subtitle-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
    align-items: flex-start;
  }

  .hm-sub-row {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
  }

  .hm-sub-row .pipe {
    color: var(--lime);
    font-weight: 900;
  }

  .hm-sub-row .bullet {
    color: var(--lime);
    font-weight: 900;
  }

  .hm-desc-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    text-align: left;
  }

  .hm-desc-text .green-text {
    color: var(--lime);
    font-weight: 700;
  }

  .hm-action-row {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .hm-action-row .btn-pill {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    background: var(--lime);
    color: #06130b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(168, 228, 66, 0.3);
  }

  .hm-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: flex-start;
    width: 100%;
  }

  .hm-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.28s ease;
  }

  .hm-social-row a:hover {
    border-color: var(--lime);
    background: rgba(168, 228, 66, 0.08);
    transform: translateY(-2px);
  }

  /* Mobile Circular Orbits and Photo section */
  .hm-photo-orbits-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 10px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hm-orbits-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hm-orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(168, 228, 66, 0.12);
    border-radius: 50%;
  }

  .circle-1 {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
  }

  .circle-2 {
    width: 260px;
    height: 260px;
  }

  .circle-3 {
    width: 320px;
    height: 320px;
  }

  .hm-orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
  }

  .dot-1 {
    right: 25px;
    top: 25px;
  }

  .dot-2 {
    left: 20px;
    bottom: 50px;
  }

  .dot-3 {
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
  }

  .hm-orbit-icon-wrapper {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #030d06;
    border: 1px solid rgba(168, 228, 66, 0.3);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 0 10px rgba(168, 228, 66, 0.2);
  }

  /* Icon placements relative to their circles */
  .icon-code {
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .icon-palette {
    left: 20px;
    bottom: 8px;
  }

  .icon-monitor {
    right: 12px;
    top: 36px;
  }

  .icon-video {
    right: -10px;
    bottom: 90px;
  }

  .hm-photo-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 290px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
  }

  .hm-person-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
  }

  /* Mobile 3-Column Stats Card styling */
  .hm-stats-card {
    display: flex;
    justify-content: space-between;
    background: rgba(12, 32, 19, 0.85);
    border: 1px solid rgba(168, 228, 66, 0.15);
    border-radius: 20px;
    padding: 16px 12px;
    margin-top: 24px;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
  }

  .hm-stat-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .hm-stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hm-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #a8e442;
    margin-bottom: 6px;
  }

  .hm-stat-num {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
  }

  .hm-stat-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  .hm-stat-line {
    width: 16px;
    height: 2px;
    background: var(--lime);
    margin-top: 4px;
    border-radius: 2px;
  }

  /* Prevent text wrapping on About section bio cards on mobile */
  .about-bio-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}



/* =========================================
   ABOUT / STATS SECTION  (white bg, 2-col)
   ========================================= */
.about-section {
  background: var(--white);
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.label-tag-green {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-bright);
  letter-spacing: .12em;
  background: rgba(22, 163, 74, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.about-title-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-title-heading span {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 85%;
}

.about-copy {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 24px;
}

.about-copy strong {
  color: var(--gray-900);
  font-weight: 800;
}

/* Bio details Grid */
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bio-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid rgba(22, 163, 74, 0.05);
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.bio-grid-item:hover {
  border-color: rgba(22, 163, 74, 0.15);
  background: rgba(22, 163, 74, 0.02);
  transform: translateY(-2px);
}

.bio-grid-item i {
  color: var(--green-bright);
  font-size: 15px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.bio-grid-item h6 {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.bio-grid-item p {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
  line-height: 1.4;
}

.about-desc-extra {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  border-left: 3px solid var(--lime);
  padding-left: 12px;
  margin-bottom: 24px;
}

/* Badges styling */
.about-badges-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-tag-badge {
  background: rgba(168, 228, 66, 0.08);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.12);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.about-tag-badge:hover {
  background: var(--green-bright);
  color: #fff;
  border-color: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

/* Right column layout */
.about-right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stats items */
.stats-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.stat-item-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card-icon {
  font-size: 14px;
  color: rgba(22, 163, 74, 0.4);
  position: absolute;
  top: 20px;
  right: 20px;
}

.stat-num-val {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -1.5px;
}

.stat-num-val span {
  color: var(--green-bright);
  font-size: 80%;
  margin-left: 2px;
}

.stat-lbl-text {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Platform card */
.platform-activity-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.platform-activity-card:hover {
  border-color: var(--green-bright);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.pac-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.pac-content {
  flex: 1;
}

.pac-content h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gray-900);
}

.pac-content p {
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 2px;
}

.pac-status-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-bright);
  background: rgba(22, 163, 74, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pac-status-badge i {
  font-size: 8px;
  animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Skills progress telemetry card */
.skills-telemetry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 20px;
}

.stc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-400);
  letter-spacing: .08em;
}

.stc-pulsing-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lime);
}

.telemetry-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin: 16px 0 12px;
  border-bottom: 2px solid rgba(22, 163, 74, 0.08);
  padding-bottom: 4px;
}

.telemetry-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--lime-glow), var(--green-bright));
  border-radius: 3px 3px 0 0;
  opacity: .85;
  transition: all 0.25s ease;
}

.telemetry-bar:hover {
  opacity: 1;
  transform: scaleY(1.08);
  filter: brightness(1.05);
}

.telemetry-footer-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--gray-900);
}

.telemetry-footer-label span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 4px;
}

/* =========================================
   "EVERYTHING YOU NEED" BANNER (centered green text)
   ========================================= */
.need-banner {
  background: transparent;
  padding: 60px 7% 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: none;
}

.need-banner::before {
  display: none;
}

.need-banner .section-title {
  color: var(--gray-900);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  /* tighter spacing for ultra bold editorial look */
}

.btn-need-hire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: #061009;
  font-size: 15px;
  font-weight: 900;
  /* Bolder font */
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 6px 24px rgba(168, 228, 66, 0.25);
}

.btn-need-hire:hover {
  background: #c6f135;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 228, 66, 0.4);
}

.btn-need-hire i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

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

/* =========================================
   FEATURES SHOWCASE SECTION (sky photo + accordion)
   ========================================= */
.features-section {
  background: var(--white);
  padding: 20px 0 80px;
}

.features-hero-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 5% 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.fhs-left {
  position: relative;
  background: #061009;
  overflow: hidden;
}

.fhs-left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.features-hero-strip:hover .fhs-left img {
  transform: scale(1.06);
}

.fhs-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 16, 9, 0.4), rgba(6, 16, 9, 0.8));
  z-index: 1;
}

.fhs-right {
  background: #061009;
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.feature-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-accordion-item:last-child {
  border-bottom: none;
}

.fai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fai-title {
  font-size: 16.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.fai-title i {
  color: var(--lime);
  font-size: 18px;
  opacity: 0.85;
}

.feature-accordion-item:hover .fai-title {
  color: #fff;
}

.fai-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.feature-accordion-item.active .fai-icon {
  background: var(--lime);
  border-color: var(--lime);
  color: #061009;
  transform: rotate(180deg);
}

.fai-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), margin .3s ease;
}

.feature-accordion-item.active .fai-body {
  max-height: 100px;
  margin-top: 12px;
}

/* 5 premium service cards below */
.feature-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin: 0 5%;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-bright);
  box-shadow: 0 12px 30px rgba(10, 40, 15, 0.06);
}

.feat-card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(168, 228, 66, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: all 0.5s ease;
  z-index: -1;
}

.feat-card:hover .feat-card-glow {
  transform: scale(1.8);
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green-bright);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feat-card:hover .feat-icon-wrap {
  background: var(--green-bright);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.feat-card h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* =========================================
   "YOUR TRUSTED PARTNER" (lime-bg section)
   ========================================= */
.trusted-section {
  background: var(--light-green-bg);
  padding: 80px 7%;
}

.trusted-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.trusted-header .label-tag {
  color: var(--green-bright);
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.trusted-big-card {
  background: var(--lime);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.tbc-top {
  display: flex;
  flex-direction: column;
}

.tbc-num {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 0.9;
  letter-spacing: -3px;
}

.tbc-sub {
  font-size: 13.5px;
  color: var(--green-deep);
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Checklist layout */
.tbc-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
}

.tbc-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(10, 31, 19, 0.85);
}

.tbc-check-item i {
  color: var(--green-deep);
  font-size: 15px;
}

.tbc-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(10, 31, 19, 0.1);
  padding-top: 16px;
}

.tbc-stars {
  display: flex;
  gap: 4px;
  color: var(--green-deep);
  font-size: 12px;
}

.tbc-review {
  font-size: 11px;
  color: var(--green-deep);
  font-weight: 700;
  opacity: 0.75;
}

.trusted-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trusted-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.trusted-card.dark {
  background: var(--green-deep);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.03);
}

.tc-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
  font-weight: 800;
  margin-bottom: 16px;
}

.tc-skills-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-skill-name {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, .75);
  width: 96px;
  white-space: nowrap;
}

.tc-skill-bar-wrap {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}

.tc-skill-bar {
  height: 100%;
  background: var(--lime);
  border-radius: 50px;
  transition: width 1s ease;
}

.tc-skill-percent {
  font-size: 10.5px;
  color: var(--lime);
  font-weight: 800;
  width: 30px;
  text-align: right;
}

.tc-percent {
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  margin-bottom: 12px;
}

.tc-title {
  font-size: 14.5px;
  font-weight: 850;
  color: var(--white);
  margin-bottom: 8px;
}

.tc-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* Testimonial quote card */
.testimonial-card {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  color: var(--white);
  grid-column: span 2;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.tc-quote-mark {
  font-size: 52px;
  color: var(--lime);
  line-height: 0.5;
  margin-bottom: 8px;
  font-family: serif;
}

.tc-quote-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 22px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 228, 66, 0.25);
}

.tc-author-name {
  font-size: 13.5px;
  font-weight: 800;
}

.tc-author-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

/* =========================================
   WHY USERS TRUST (white section, centered)
   ========================================= */
.why-section {
  background: var(--white);
  padding: 90px 7%;
  text-align: center;
}

.why-section .label-tag {
  justify-content: center;
  display: flex;
}

.why-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/* Scroll-driven grid zoom portfolio transition */
.skills-scroll-container {
  position: relative;
  min-height: 800vh;
  /* gives enough scroll height for master grid + 10 details zoom phases */
  background: var(--off-white);
  padding: 0;
}

.skills-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}

.sticky-header {
  position: relative;
  top: 0;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  z-index: 15;
  width: 100%;
}

.sticky-header .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-deep) 0%, #16a34a 50%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
}

.sticky-header .label-tag {
  color: var(--green-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

/* Master view grid containing theme boxes in Bento Layout */
.skills-grid-master {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1.5vh;
  width: 100%;
  max-width: 1550px;
  padding: 0 2%;
  margin-top: 0;
  height: 72vh;
  z-index: 2;
  transition: transform 0.1s ease, opacity 0.1s ease;
  transform-origin: center center;
}

.sgm-item {
  border-radius: var(--radius-lg);
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sgm-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.sgm-item h4 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.sgm-item p {
  font-size: 11.5px;
  line-height: 1.4;
  opacity: 0.95;
}

.sgm-item i {
  font-size: 20px;
}

/* Bento Grid Spans */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-normal {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-extra-wide {
  grid-column: span 3;
  grid-row: span 1;
}

/* Screen height media query for dynamic scaling on shorter screens */
@media (max-height: 880px) {
  .sticky-header {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .sticky-header .section-title {
    font-size: clamp(22px, 3vw, 34px);
  }

  .skills-grid-master {
    gap: 12px;
  }

  .sgm-item {
    padding: 12px 15px;
    gap: 6px;
  }

  .sgm-item h4 {
    font-size: clamp(16px, 1.8vw, 21px);
    letter-spacing: -0.8px;
  }

  .sgm-item p {
    font-size: 11px;
    line-height: 1.35;
  }

  .sgm-item i {
    font-size: 18px;
  }
}

@media (max-height: 730px) {
  .sticky-header {
    margin-top: 10px;
    margin-bottom: 25px;
  }

  .sticky-header .section-title {
    font-size: clamp(18px, 2.5vw, 26px);
  }

  .skills-grid-master {
    gap: 8px;
  }

  .sgm-item {
    padding: 10px 12px;
    gap: 4px;
  }

  .sgm-item h4 {
    font-size: clamp(14px, 1.6vw, 18px);
    letter-spacing: -0.5px;
  }

  .sgm-item p {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .sgm-item i {
    font-size: 16px;
  }
}

/* Themes: Lime, Green, White, Soft Green colors */
.sgm-lime {
  background: var(--lime);
  color: var(--green-deep);
}

.sgm-green {
  background: var(--green-deep);
  color: var(--white);
}

.sgm-white {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--gray-200);
}

.sgm-soft {
  background: #e8f5e0;
  color: #16a34a;
}

.sgm-mid {
  background: #16a34a;
  color: var(--white);
}

/* Active Zooming Box Outline Stroke (Stock) */
.sgm-item.zooming-box {
  box-shadow: 0 0 0 5px var(--green-deep) !important;
}

.sgm-lime.zooming-box {
  box-shadow: 0 0 0 5px var(--green-deep) !important;
}

.sgm-green.zooming-box {
  box-shadow: 0 0 0 5px var(--lime) !important;
}

.sgm-soft.zooming-box {
  box-shadow: 0 0 0 5px var(--green-deep) !important;
}

.sgm-mid.zooming-box {
  box-shadow: 0 0 0 5px var(--lime) !important;
}

.sgm-white.zooming-box {
  box-shadow: 0 0 0 5px var(--green-deep) !important;
}

/* Absolute full screen detail overlays */
.skills-detail-overlays {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

.skill-detail-page {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 135px 8% 50px 8%;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transform-origin: center center;
}

.ssc-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.ssc-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.ssc-left .sbc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f5e0;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ssc-left h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--gray-900);
}

.ssc-left p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
}

.ssc-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-bright);
  background: #e8f5e0;
  padding: 5px 12px;
  border-radius: 50px;
}

.ssc-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.portfolio-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.pmg-item {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 12px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pmg-item:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  box-shadow: 0 8px 24px rgba(22, 163, 74, .05);
}

.pmg-item img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.pmg-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
  display: block;
}

/* Expanded 3-Column Bento Detailed Layout for Pinned Zoom Screens */
.ssc-content-expanded {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 40px;
  width: 100%;
  max-width: 1550px;
  height: 100%;
  align-items: start;
  text-align: left;
}

.ssc-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: flex-start;
}

.ssc-col h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1px;
}

.service-lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.tech-stack-wrap h4,
.bullet-highlights h4,
.ssc-col h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}

.tech-stack-wrap h4,
.bullet-highlights h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badges span {
  font-size: 11px;
  font-weight: 700;
  background: #e8f5e0;
  color: #16a34a;
  padding: 6px 12px;
  border-radius: 6px;
}

.bullet-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullet-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-600);
}

.bullet-highlights i {
  color: #16a34a;
  font-size: 15px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card {
  display: flex;
  gap: 12px;
  background: var(--off-white);
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.step-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.step-card h5 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.step-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-500);
}

.portfolio-expanded-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: calc(100vh - 245px);
  overflow-y: auto;
  padding-right: 8px;
}

/* custom scrollbar for portfolio list */
.portfolio-expanded-list::-webkit-scrollbar {
  width: 6px;
}

.portfolio-expanded-list::-webkit-scrollbar-track {
  background: var(--off-white);
  border-radius: 10px;
}

.portfolio-expanded-list::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 10px;
}

.pe-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pe-item:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  box-shadow: var(--shadow-md);
}

.pe-img-wrap {
  position: relative;
  width: 100%;
  height: 110px;
  overflow: hidden;
}

.pe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pe-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pe-meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pe-meta h5 {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--gray-900);
  font-family: 'Outfit', sans-serif;
}

.pe-meta p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-500);
}

.pe-link-btn {
  font-size: 11px;
  color: var(--green-bright);
  text-decoration: none;
  font-weight: 800;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
}

.pe-link-btn:hover {
  color: var(--green-deep);
  transform: translateX(2px);
}

@media (max-width: 1200px) {
  .ssc-content-expanded {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .ssc-col-portfolio {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ssc-content-expanded {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ssc-col-portfolio {
    grid-column: span 1;
  }

  .portfolio-expanded-list {
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 1024px) {
  .skills-grid-master {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-normal,
  .bento-extra-wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 200px !important;
  }
}

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

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-normal,
  .bento-extra-wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 120px !important;
  }

  .ssc-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ssc-right {
    display: none;
  }

  .skills-detail-overlays {
    height: 100%;
  }

  .skill-detail-page {
    padding: 90px 6% 30px 6%;
  }
}


.why-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why-card-num {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.why-card-a {
  background: var(--lime);
}

.why-card-a .why-card-num {
  color: var(--green-deep);
}

.why-card-b {
  background: var(--gray-900);
}

.why-card-b .why-card-num {
  color: var(--white);
}

.why-card-c {
  background: var(--green-mid);
  overflow: hidden;
}

.why-card-c img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.why-card-body {
  padding: 22px;
  position: relative;
  z-index: 2;
}

.why-card-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .65;
}

.why-card-text {
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 4px;
}

.wc-a {
  color: var(--green-deep);
}

.wc-b {
  color: var(--white);
}

.wc-c {
  color: var(--white);
}

/* Logo row inside why-card-b */
.why-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

/* =========================================
   SKILLS SECTION (was pricing-like layout)
   ========================================= */
.skills-section {
  background: var(--off-white);
  padding: 90px 7%;
}

.skills-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.skills-count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skills-count-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gray-900);
}

.skills-avatars {
  display: flex;
}

.skills-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -6px;
  object-fit: cover;
}

.skills-avatars img:first-child {
  margin-left: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Left: skill card (like "Find Your Best Fit") */
.skill-plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.spc-badge {
  background: var(--lime);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.spc-badge2 {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Metal bento credit card mockup */
.fake-card-metal {
  width: 100%;
  max-width: 320px;
  height: 180px;
  border-radius: 20px;
  background: linear-gradient(135deg, #091a10 0%, #165330 50%, #0d2719 100%);
  margin: 24px 0;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 31, 19, .35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fcm-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(168, 228, 66, .2) 0%, transparent 70%);
  pointer-events: none;
}

.fcm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fcm-brand {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fcm-chip {
  width: 32px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e3c46e 0%, #bd9324 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fcm-number {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .08em;
  font-weight: 750;
  margin-top: 20px;
}

.fcm-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fcm-holder {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fcm-signature {
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--lime);
  opacity: 0.8;
}

/* Core skills checklist */
.core-skills-wrapper {
  margin: 10px 0 24px;
}

.csw-header {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.csw-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sfl-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sfl-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green-bright);
  font-weight: 900;
  flex-shrink: 0;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.sfl-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-700);
}

.spc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
  margin-top: auto;
}

.skill-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1.5px;
}

.skill-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
}

/* Career Experience timeline styles */
.experience-timeline {
  margin-bottom: 24px;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.25s ease;
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-item:hover {
  transform: translateX(4px);
}

.t-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Timeline Soft Colored Backgrounds */
.bg-lime-soft {
  background: rgba(168, 228, 66, 0.12);
  color: var(--green-deep);
}

.bg-gold-soft {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.bg-sky-soft {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.bg-purple-soft {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
}

.bg-green-soft {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.bg-pink-soft {
  background: rgba(219, 39, 119, 0.12);
  color: #db2777;
}

.t-details {
  flex: 1;
}

.t-company {
  font-size: 14px;
  font-weight: 900;
  color: var(--gray-900);
}

.t-role {
  font-size: 11.5px;
  color: var(--green-bright);
  font-weight: 800;
  margin-top: 2px;
}

.t-desc {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 5px;
  line-height: 1.6;
}

/* Timeline Education Box */
.timeline-education-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gray-100);
}

.teb-icon-wrap {
  font-size: 22px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.teb-details h5 {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--gray-800);
}

.teb-details p {
  font-size: 11.5px;
  color: var(--gray-400);
  line-height: 1.4;
  margin-top: 3px;
}

/* Contact CTA card (below skills) */
.skills-contact-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.scc-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.scc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.scc-sub {
  font-size: 12.5px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* =========================================
   CONTACT FORM SECTION (like "Ready for smarter banking?")
   ========================================= */
.contact-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: 90px 7%;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
  opacity: .12;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-left .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.cil-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cil-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 228, 66, .12);
  border: 1px solid rgba(168, 228, 66, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--lime);
  flex-shrink: 0;
}

.cil-text h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .4);
  font-weight: 700;
}

.cil-text p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

/* Contact form */
.contact-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 3px rgba(168, 228, 66, .12);
}

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

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(90px);
  opacity: 0;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  z-index: 9999;
  color: var(--white);
}

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

.toast-success {
  background: #059669;
}

.toast-error {
  background: #dc2626;
}

/* =========================================
   CTA BANNER (sky/cloud gradient like FYNLO footer cta)
   ========================================= */
.cta-banner {
  min-height: 220px;
  background: linear-gradient(135deg, #1e5c3a 0%, #2a7d52 40%, #4a9b6f 60%, #87ceea 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 7%;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(135, 206, 234, .3) 0%, transparent 60%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 28px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--green-deep);
  padding: 60px 7% 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-logo {
  font-size: 32px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--lime);
}

.footer-newsletter {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 30px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
}

.newsletter-row {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--lime);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.newsletter-btn {
  padding: 10px 16px;
  background: var(--lime);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 13px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--lime-glow);
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--lime);
}

.footer-contacts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-contacts a:hover {
  color: var(--lime);
}

/* =========================================
   SCROLL & AMBIENT ANIMATIONS (All-Time Active)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Zoom Entrance Animation */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Continuous Card Breathing/Pulsing Animation when visible */
.feat-card.visible,
.sgm-item.visible {
  animation: cardBreathing 7s ease-in-out infinite;
}

@keyframes cardBreathing {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(168, 228, 66, 0.06);
  }

  50% {
    box-shadow: 0 12px 30px rgba(168, 228, 66, 0.08);
    border-color: rgba(168, 228, 66, 0.18);
  }

  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(168, 228, 66, 0.06);
  }
}

/* 3D ambient photo float with stretching drop shadow */
@keyframes ambientPhotoFloat {
  0% {
    transform: translateY(0px);
    filter: drop-shadow(8px 8px 0px #030a05) drop-shadow(16px 16px 0px rgba(3, 10, 5, 0.3)) drop-shadow(24px 24px 0px rgba(3, 10, 5, 0.1));
  }

  50% {
    transform: translateY(-12px);
    filter: drop-shadow(8px 20px 6px #030a05) drop-shadow(16px 28px 10px rgba(3, 10, 5, 0.22)) drop-shadow(24px 36px 14px rgba(3, 10, 5, 0.06));
  }

  100% {
    transform: translateY(0px);
    filter: drop-shadow(8px 8px 0px #030a05) drop-shadow(16px 16px 0px rgba(3, 10, 5, 0.3)) drop-shadow(24px 24px 0px rgba(3, 10, 5, 0.1));
  }
}

/* Call to Action breathing pulse */
@keyframes ctaPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 8px 25px rgba(168, 228, 66, 0.35);
  }

  100% {
    transform: scale(1);
  }
}

/* Availability pulsing status dot */
@keyframes dotPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.55;
    box-shadow: 0 0 2px #a8e442;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 12px #a8e442;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.55;
    box-shadow: 0 0 2px #a8e442;
  }
}

/* Hero Section Entrance Reveal Animations */
@keyframes nameTracking {
  from {
    opacity: 0;
    letter-spacing: -20px;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    letter-spacing: -4px;
    filter: blur(0);
  }
}

@keyframes orbitsReveal {
  from {
    transform: translate(-50%, -50%) scale(0.65);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes photoReveal {
  from {
    transform: translateY(120px) scale(0.93);
    opacity: 0;
  }

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

@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }

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

@keyframes slideInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 76px 14px 14px;
  }

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

  .hero-left {
    padding: 26px 24px 30px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .fhs-left {
    min-height: 220px;
  }

  .feature-cards-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .trusted-right {
    grid-template-columns: 1fr 1fr;
  }

  .why-cards-row {
    grid-template-columns: 1fr;
  }

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

  .skills-contact-row {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  /* Restore mobile-only elements */
  .hamburger {
    display: flex !important;
  }

  .floating-bottom-nav {
    display: flex !important;
  }

  .theme-toggle-btn {
    bottom: 86px !important;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .nav-logo {
    display: inline-flex !important;
    align-items: center !important;
  }

  .nav-logo .logo-first {
    position: relative;
    padding: 2px 10px;
    margin-right: 4px;
    display: inline-block;
    z-index: 1;
  }

  .nav-logo .logo-first::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.2px solid var(--lime);
    border-radius: 50px;
    z-index: -1;
  }

  .hero-wrapper {
    padding: 70px 10px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-right {
    display: block;
    min-height: 280px;
  }

  .hero-left {
    min-height: auto;
    padding: 24px 22px 28px;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .feature-cards-row {
    grid-template-columns: 1fr;
  }

  .trusted-right {
    grid-template-columns: 1fr;
  }

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

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

  .form-group.full {
    grid-column: span 1;
  }

  /* Mobile Bento Grid & Sticky Viewport updates for scroll-driven zoom */
  .skills-scroll-container {
    min-height: 800vh;
    /* keep desktop scroll tracks for mobile */
    background: var(--off-white);
  }

  .skills-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .skills-grid-master {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(5, 1fr) !important;
    height: 65vh !important;
    gap: 1.2vh !important;
    padding: 0 4% !important;
    margin-top: 10px !important;
    transform-origin: center center;
  }

  .sgm-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: auto !important;
    padding: 10px 12px !important;
  }

  .bento-large {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }

  .sgm-item h4 {
    font-size: 16px !important;
  }

  .sgm-item p {
    font-size: 11px !important;
    display: none;
    /* hide sub-desc on small mobile screens to keep bento clean */
  }

  .sgm-item i {
    font-size: 16px !important;
  }

  .sticky-header {
    margin-bottom: 12px !important;
  }

  .sticky-header .section-title {
    font-size: clamp(24px, 6vw, 32px) !important;
  }

  /* Overlay layouts on Mobile viewports: stack columns and allow internal scrolling */
  .ssc-content-expanded {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 30px 20px !important;
    height: 100% !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .portfolio-expanded-list {
    max-height: none !important;
    overflow-y: visible !important;
  }

  .ssc-col h3 {
    font-size: 20px !important;
  }

  .service-lead {
    font-size: 13px !important;
  }

  .pe-item {
    border-radius: var(--radius-lg) !important;
  }

  .pe-img-wrap {
    height: 130px !important;
  }
}

/* =========================================
   ORDER WORK REQUEST MODAL
   ========================================= */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.order-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 8, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.order-modal-content {
  position: relative;
  background: rgba(6, 18, 11, 0.95);
  border: 1.5px solid rgba(168, 228, 66, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(168, 228, 66, 0.05);
  border-radius: var(--radius-lg);
  width: 650px;
  max-width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  z-index: 2;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-modal.open .order-modal-content {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.order-modal-close:hover {
  color: var(--lime);
}

.order-modal-header {
  margin-bottom: 24px;
}

.order-modal-header h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.order-modal-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.order-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-modal-form .form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.order-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 11px 15px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13.5px;
  transition: all 0.25s ease;
}

select.order-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

select.order-input option {
  background-color: #06120b;
  color: #fff;
}

.order-input:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(168, 228, 66, 0.15);
}

.order-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

textarea.order-input {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {

  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .order-modal-content {
    padding: 24px 20px;
  }
}

/* =========================================
   DEDICATED SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
}

.services-section-header {
  text-align: center;
  margin-bottom: 45px;
}

/* ============================================================
   PREMIUM FEATURES & DARK MODE
   ============================================================ */

/* 1. Global Dark Theme Variable Overrides */
body.dark-theme {
  --white: #06130b;
  --off-white: #030805;
  --card-bg: #0c2013;
  --light-green-bg: #0f2c1b;
  --gray-50: #0a1f13;
  --gray-100: #1a4028;
  --gray-200: #163622;
  --gray-800: #e2e8f0;
  --gray-900: #ffffff;
  --gray-700: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-500: #94a3b8;
  --gray-400: #64748b;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
  background-color: var(--white);
  color: var(--gray-800);
}

body.dark-theme .navbar {
  background: rgba(6, 19, 11, 0.85);
  border-color: rgba(168, 228, 66, 0.15);
}

body.dark-theme .why-section,
body.dark-theme .services-section,
body.dark-theme .skills-section {
  background: var(--white) !important;
  color: var(--gray-800);
}

body.dark-theme .label-tag {
  background: rgba(168, 228, 66, 0.12);
}

body.dark-theme .section-title {
  color: #fff;
}

body.dark-theme .bio-grid-item,
body.dark-theme .pac-content,
body.dark-theme .process-steps,
body.dark-theme .stat-lbl-text,
body.dark-theme .pac-status-badge,
body.dark-theme .blog-card h4 {
  color: #fff;
}

/* 2. Floating Theme Toggle Button */
.theme-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--lime);
  border: 1px solid rgba(168, 228, 66, 0.25);
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

.theme-toggle-btn:hover {
  transform: scale(1.1) rotate(15deg);
  background: var(--green-dark);
}

body.dark-theme .theme-toggle-btn {
  background: var(--lime);
  color: var(--green-deep);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(168, 228, 66, 0.3);
}

/* 3. Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--lime));
  z-index: 99999;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* 4. Custom Mouse Follower Effect */
.mouse-follower {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out, opacity 0.3s;
  box-shadow: 0 0 12px var(--lime);
  opacity: 0;
}

.mouse-follower-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.3s;
  opacity: 0;
}

@media (max-width: 768px) {

  .mouse-follower,
  .mouse-follower-ring {
    display: none !important;
  }
}

/* 5. Custom Blog Cards styling */
.blog-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 228, 66, 0.3) !important;
}

/* 6. Skills Telemetry Bars animation setup */
.telemetry-bar {
  transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 7. Desktop Navbar links — Visible on Desktop */
.nav-links-desktop {
  display: flex;
}

/* =========================================
   8. FLOATING BOTTOM NAV BAR (Apple-Style Glass)
   ========================================= */
.floating-bottom-nav {
  position: fixed;
  bottom: 20px;
  display: none;
  /* hidden on desktop */
  left: 50%;
  transform: translateX(-50%);
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 28px;
  /* Apple-style frosted glass */
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.25),
    0 0 0 0.5px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  /* Apple entry: smooth ease-out, no bounce */
  opacity: 0;
  animation: fbnAppleEntry 0.55s cubic-bezier(0, 0, 0.2, 1) 0.3s forwards;
}

@keyframes fbnAppleEntry {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.92);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Each nav item */
.fbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  /* Apple spring curve */
  transition:
    color 0.3s cubic-bezier(0.2, 0, 0, 1),
    background 0.35s cubic-bezier(0.2, 0, 0, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.fbn-item i {
  font-size: 19px;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}

.fbn-item span {
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.3s ease;
  opacity: 0.7;
  transform: translateY(0);
}

/* Hover state — very subtle, Apple-like */
.fbn-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Active press effect — Apple "squish" */
.fbn-item:active {
  transform: scale(0.88);
  transition-duration: 0.1s;
}

/* Active/selected state */
.fbn-item.active {
  color: var(--lime);
}

.fbn-item.active i {
  transform: scale(1.15) translateY(-1px);
}

.fbn-item.active span {
  opacity: 1;
  font-weight: 700;
}

/* Apple-style tap bounce class (added via JS) */
.fbn-item.fbn-tap i {
  animation: fbnIconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fbnIconBounce {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.78);
  }

  50% {
    transform: scale(1.22) translateY(-2px);
  }

  75% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1.15) translateY(-1px);
  }
}

/* Move theme toggle button up so it doesn't overlap - shifted inside mobile query */

/* Responsive fine-tuning */
@media (max-width: 600px) {
  .floating-bottom-nav {
    bottom: 12px;
    padding: 6px 8px;
    gap: 1px;
    border-radius: 24px;
    width: 96%;
    max-width: 450px;
    justify-content: space-around;
  }

  .fbn-item {
    padding: 6px 4px;
    font-size: 8.5px;
    flex: 1;
    min-width: 0;
  }

  .fbn-item i {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .fbn-item span {
    font-size: 8px;
  }
}

@media (max-width: 350px) {
  .fbn-item span {
    display: none;
    /* Hide text on extremely narrow viewports to avoid crowding */
  }

  .fbn-item {
    padding: 10px 4px;
  }

  .fbn-item i {
    font-size: 18px;
  }
}