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

:root {
  --bg: #f3f3f1;
  --bg-2: #d9d9d5;
  --black: #0b0b0b;
  --text: #111111;
  --muted: #666666;
  --white: #ffffff;
  --orange: #ff6a00;
  --card: rgba(255, 255, 255, 0.68);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

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

a {
  text-decoration: none;
}

/* NAVBAR */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 6%;

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

  z-index: 999;

  background: rgba(243, 243, 241, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

.brand span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;

  background: var(--black);
  color: var(--white);

  border-radius: 8px;
  font-size: 11px;
}

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

.nav-links a {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  opacity: 0.65;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  opacity: 1;
}

.menu-btn {
  border: none;
  padding: 13px 24px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.75);
  color: var(--black);

  font-weight: 900;
  cursor: pointer;
}

.menu-btn span {
  margin-left: 10px;
  letter-spacing: 3px;
}

.mobile-menu {
  position: fixed;
  top: 92px;
  right: 28px;

  width: 220px;
  padding: 22px;

  border-radius: 24px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);

  z-index: 1000;

  display: none;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  font-weight: 800;
}

/* PAGE SECTION LIKE PAGE-BY-PAGE */
.page-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;

  scroll-snap-align: start;
  scroll-snap-stop: always;

  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #f3f3f1, #d9d9d5 50%, #eeeeeb);
}

/* ANIMATED BACKGROUND GRID */
.animated-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

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

  background-size: 120px 120px;
  animation: moveGrid 18s linear infinite;
}

@keyframes moveGrid {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 120px 120px;
  }
}

/* HOME */
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 260px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  z-index: 5;
}

.orange-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.7;
  z-index: 2;

  animation: floatOrb 7s infinite alternate ease-in-out;
}

.orb-one {
  width: 330px;
  height: 330px;
  background: rgba(255, 106, 0, 0.25);
  top: 24%;
  left: 43%;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.13);
  right: 12%;
  bottom: 18%;
  animation-delay: 1.4s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) translateX(0);
  }

  to {
    transform: translateY(-45px) translateX(35px);
  }
}

.hero-person {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 460px;
  height: 610px;

  transform: translateX(-50%);
  z-index: 4;
}

.hero-person img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  filter: grayscale(1) contrast(1.25) brightness(0.48);
  mix-blend-mode: multiply;
}

.eye-glow {
  position: absolute;
  top: 230px;
  left: 50%;

  width: 210px;
  height: 18px;

  transform: translateX(-50%);
  border-radius: 50px;

  background: linear-gradient(90deg, transparent, #ff6a00, #ffb15a, transparent);
  filter: blur(6px);

  animation: eyePulse 2.4s infinite ease-in-out;
}

@keyframes eyePulse {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(-50%) scaleX(0.9);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.12);
  }
}

.hero-left {
  position: absolute;
  left: 6%;
  top: 175px;

  max-width: 540px;
  z-index: 15;
}

.section-mini {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.94;
  letter-spacing: -5px;

  color: var(--black);
  font-weight: 900;

  margin-bottom: 26px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 28px;
}

.rating span {
  color: var(--orange);
}

.rating p {
  font-weight: 900;
}

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

.btn {
  padding: 16px 26px;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 900;

  transition: 0.3s ease;
}

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

.light-btn {
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
}

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

.hero-card {
  position: absolute;
  top: 170px;
  right: 6%;

  width: 330px;
  padding: 16px;

  display: grid;
  grid-template-columns: 92px 1fr 34px;
  align-items: center;
  gap: 18px;

  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(18px);

  z-index: 16;
}

.card-logo {
  width: 92px;
  height: 92px;

  display: grid;
  place-items: center;

  border-radius: 18px;
  background: var(--black);
  color: var(--white);

  font-weight: 900;
}

.hero-card small {
  color: #777;
  font-weight: 900;
}

.hero-card h3 {
  margin: 10px 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1;
}

.small-line {
  width: 60px;
  height: 2px;
  background: #999;
}

.hero-card button {
  width: 32px;
  height: 32px;

  border: none;
  border-radius: 50%;

  background: #ddd;
  cursor: pointer;
}

.hero-services {
  position: absolute;
  right: 7%;
  top: 390px;

  z-index: 16;
  text-align: right;
}

.hero-services p {
  margin-bottom: 16px;

  color: #666;
  font-size: 14px;
  font-weight: 900;
}

.hero-services .active {
  color: var(--black);
}

.hero-skills {
  position: absolute;
  left: 6%;
  bottom: 125px;

  z-index: 16;
}

.hero-skills p {
  margin-bottom: 16px;

  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.hero-skills div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-skills span {
  color: rgba(0, 0, 0, 0.62);
  font-weight: 900;
}

.big-bg-text {
  position: absolute;
  left: 5%;
  bottom: 45px;

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

  font-size: clamp(100px, 16vw, 220px);
  line-height: 0.8;
  letter-spacing: -10px;
  font-weight: 900;

  z-index: 2;
}

.scroll-btn {
  left: 50%;
  right: auto;
  bottom: 85px;
  width: auto;
  height: auto;
}

@keyframes softScrollText {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.75;
    transform: translateX(-50%) translateY(-8px);
  }
}

.bottom-bar {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 24px; 
  background: rgba(0, 0, 0, 0.18);
  color: white;

  height: 52px;
  padding: 0 22px;

  border-radius: 50px;

  background: rgba(10, 10, 10, 0.78);
  color: white;

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

  font-size: 13px;

  z-index: 30;
}

/* CONTENT SECTIONS */
.content-section {
  padding: 130px 6% 90px;
}

.section-content {
  position: relative;
  z-index: 5;
}

.section-title {
  max-width: 1050px;

  color: var(--black);

  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -5px;

  margin-bottom: 55px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

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

.info-card,
.skill-card,
.project-card {
  padding: 32px;

  border-radius: var(--radius);

  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);

  transition: 0.35s ease;
}

.info-card:hover,
.skill-card:hover,
.project-card:hover {
  transform: translateY(-8px);
}

.info-card span,
.project-card span {
  color: var(--orange);
  font-weight: 900;
}

.info-card h3,
.project-card h3 {
  margin: 18px 0;

  color: var(--black);
  font-size: 28px;
}

.info-card p,
.project-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.skill-card {
  min-height: 150px;

  display: flex;
  align-items: end;

  color: var(--black);
  font-size: 28px;
  font-weight: 900;
}

.project-card a {
  display: inline-block;
  margin-top: 24px;

  color: var(--black);
  font-weight: 900;
}

/* CONTACT */
.contact-title {
  max-width: 1000px;

  font-size: clamp(50px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -6px;

  margin-bottom: 45px;
}

.contact-form {
  max-width: 650px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px 22px;

  border: none;
  outline: none;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.74);
  color: var(--black);

  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: none;
}

.contact-form button {
  width: fit-content;

  padding: 16px 30px;

  border: none;
  border-radius: 50px;

  background: var(--black);
  color: var(--white);

  font-weight: 900;
  cursor: pointer;
}

.mail-text {
  margin-top: 28px;
  font-weight: 800;
}

.mail-text a {
  color: var(--orange);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.85s ease;
}

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

/* MOBILE */
@media (max-width: 950px) {
  html {
    scroll-snap-type: none;
  }

  .nav-links {
    display: none;
  }

  .page-section {
    min-height: 100vh;
  }

  .hero-section {
    min-height: 1120px;
  }

  .hero-left {
    top: 130px;
    left: 24px;
    right: 24px;
  }

  .hero-left h1 {
    font-size: 52px;
    letter-spacing: -3px;
  }

  .hero-person {
    width: 360px;
    height: 500px;
    bottom: 330px;
  }

  .hero-card {
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 255px;
    width: auto;
  }

  .hero-services {
    display: none;
  }

  .hero-skills {
    left: 24px;
    right: 24px;
    bottom: 145px;
  }

  .big-bg-text {
    font-size: 90px;
  }

  .scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);

  z-index: 30;

  background: transparent;
  color: rgba(17, 17, 17, 0.38);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;

  width: auto;
  height: auto;
  border-radius: 0;

  display: inline-block;
  text-align: center;

  animation: softScrollText 1.8s infinite ease-in-out;
}

  .bottom-bar {
    height: auto;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section-title,
  .contact-title {
    letter-spacing: -3px;
  }
}
/* HOME BACKGROUND IMAGE DESIGN */
.hero-section {
  background:
    linear-gradient(
      rgba(160, 0, 0, 0.08),
      rgba(160, 0, 0, 0.08)
    ),url("images/aryan23.png");

  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}/* Hide old elements because background image already has design */
.hero-person,
.hero-card,
.hero-services,
.hero-skills,
.big-bg-text,
.orange-orb,
.animated-bg {
  display: none;
}
.hero-buttons {
  margin-top: 20px;
}

.dark-btn {
  background: #050505;
  color: #ffffff;
}

.light-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dark-btn:hover,
.light-btn:hover {
  transform: translateY(-5px);
}.scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);

  background: transparent;
  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;

  z-index: 30;
  animation: softScrollText 1.8s infinite ease-in-out;
}

@keyframes softScrollText {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(-8px);
  }
}
/* FIX LEFT SIDE WORDING POSITION */
.hero-left {
  position: absolute;
  left: 6%;
  top: 210px;
  max-width: 430px;
  z-index: 20;
}

.hero-left .section-mini,
.section-mini {
  color: #ffb15a;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-left h1 {
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: -3px;
  font-weight: 900;
  color: #050505;
  margin-bottom: 28px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.rating span {
  color: #ffb15a;
  font-size: 15px;
}

.rating p {
  color: #050505;
  font-size: 15px;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
}
/* Move left side text below ARYAN SINGH background text */
.hero-left {
  top: 310px !important;
  left: 6% !important;
  max-width: 440px;
  z-index: 20;
}

.hero-left h1 {
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero-left .section-mini {
  font-size: 14px;
  margin-bottom: 16px;
}

.rating {
  margin-bottom: 26px;
}
@media (max-width: 950px) {
  .hero-left {
    top: 260px !important;
    left: 24px !important;
    right: 24px !important;
    max-width: 360px;
  }

  .hero-left h1 {
    font-size: 42px;
    line-height: 1.05;
  }
}
/* Running ARYAN SINGH background text */
.running-name {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.running-track {
  display: flex;
  width: max-content;
  animation: runName 16s linear infinite;
}

.running-track span {
  white-space: nowrap;
  font-size: clamp(90px, 13vw, 160px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding-right: 80px;
}

@keyframes runName {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.hero-left,
.hero-card,
.hero-services,
.hero-skills,
.scroll-btn,
.bottom-bar {
  z-index: 20;
}

.hero-person {
  z-index: 10;
}
/* MAIN HERO LAYER SYSTEM */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #c90000;
}

/* Image 1: red background */
.red-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Running white ARYAN SINGH text */
.running-name {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.running-track {
  display: flex;
  width: max-content;
  animation: runText 16s linear infinite;
}

.running-track span {
  white-space: nowrap;
  font-size: clamp(90px, 13vw, 190px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.95);
  padding-right: 80px;
}

@keyframes runText {
  from {
    transform: translateX(0);
  }

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

/* Image 2: person layer */
.person-layer {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 82vh;
  max-height: 760px;
  transform: translateX(-50%);
  object-fit: contain;
  z-index: 4;

  /* helps remove white background effect */
  mix-blend-mode: normal;
}

/* Keep website text/buttons above layers */
.hero-left,
.hero-card,
.hero-services,
.hero-skills,
.scroll-btn,
.bottom-bar,
.main-nav {
  position: relative;
  z-index: 10;
}
/* FIX bottom black line / bottom bar */
.bottom-bar {
  position: absolute !important;
  left: 4% !important;
  right: 4% !important;
  bottom: 24px !important;

  height: 42px !important;
  padding: 0 22px !important;

  border-radius: 50px !important;

  background: rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px) !important;

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

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

  font-size: 13px !important;
  font-weight: 500 !important;

  z-index: 30 !important;
}
/* Fix scroll down text position */
.scroll-btn {
  position: absolute !important;
  left: 50% !important;
  bottom: 86px !important;
  transform: translateX(-50%) !important;

  background: transparent !important;
  color: rgba(255, 255, 255, 0.45) !important;

  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 6px !important;
  text-transform: uppercase !important;

  z-index: 35 !important;
}
 @media (max-width: 950px) {
  .bottom-bar {
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    height: auto !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    flex-direction: column !important;
  }

  .scroll-btn {
    bottom: 105px !important;
  }
}
/* FIX PERSON IMAGE NOT SHOWING */
.person-layer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  position: absolute;
  left: 50%;
  bottom: 0;

  height: 82vh;
  max-height: 760px;

  transform: translateX(-50%);
  object-fit: contain;

  z-index: 8 !important;

  /* IMPORTANT: remove blend mode for transparent PNG */
  mix-blend-mode: normal !important;
}
.hero-person {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 8 !important;
}

.hero-person img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
}
.eye-glow,
.orange-light {
  display: none !important;
}
/* TOP NAVBAR - CLEAN LIGHT BAR */
.main-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 86px !important;

  padding: 0 6% !important;

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

  background: rgba(245, 235, 232, 0.92) !important;
  backdrop-filter: blur(18px) !important;

  border: none !important;
  box-shadow: none !important;

  z-index: 9999 !important;
}

/* LOGO */
.brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;

  color: #111111 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.brand span {
  width: 36px !important;
  height: 36px !important;

  display: grid !important;
  place-items: center !important;

  background: #050505 !important;
  color: #ffffff !important;

  border-radius: 9px !important;

  font-size: 14px !important;
  font-weight: 900 !important;
}

/* CENTER NAV LINKS */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 42px !important;
}

.nav-links a {
  color: rgba(17, 17, 17, 0.72) !important;
  text-decoration: none !important;

  font-size: 16px !important;
  font-weight: 900 !important;

  transition: 0.3s ease !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff5a00 !important;
}

/* MENU BUTTON */
.menu-btn {
  border: none !important;
  outline: none !important;

  padding: 17px 38px !important;
  border-radius: 50px !important;

  background: rgba(255, 255, 255, 0.82) !important;
  color: #111111 !important;

  font-size: 17px !important;
  font-weight: 900 !important;

  cursor: pointer !important;
}

.menu-btn span {
  margin-left: 12px !important;
  letter-spacing: 5px !important;
}/* Transparent top navbar */
.main-nav {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: none !important;
  border: none !important;
}
.brand,
.nav-links a,
.menu-btn {
  color: #ffffff !important;
}

.brand span {
  background: #ffffff !important;
  color: #111111 !important;
}

.menu-btn {
  background: rgba(255, 255, 255, 0.18) !important;
}
/* ================= TEXT MOTION ON OPENING ================= */

.motion-small {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUpText 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero-motion-title {
  overflow: hidden;
}

.hero-motion-title span {
  display: block;
  opacity: 0;
  transform: translateY(85px);
  animation: bigTextReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-motion-title span:nth-child(1) {
  animation-delay: 0.35s;
}

.hero-motion-title span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-motion-title span:nth-child(3) {
  animation-delay: 0.65s;
}

.hero-motion-title span:nth-child(4) {
  animation-delay: 0.8s;
}

.motion-fade {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUpText 0.9s ease forwards;
  animation-delay: 1s;
}

@keyframes bigTextReveal {
  from {
    opacity: 0;
    transform: translateY(85px);
  }

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

@keyframes fadeUpText {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* ================= SCROLL REVEAL MOTION ================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
/* Animation replay on scroll */
.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.hero-motion-title {
  overflow: hidden;
}

.hero-motion-title span {
  display: block;
  opacity: 0;
  transform: translateY(80px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-motion-title.active span {
  opacity: 1;
  transform: translateY(0);
}

.hero-motion-title.active span:nth-child(1) {
  transition-delay: 0.1s;
}

.hero-motion-title.active span:nth-child(2) {
  transition-delay: 0.22s;
}

.hero-motion-title.active span:nth-child(3) {
  transition-delay: 0.34s;
}

.hero-motion-title.active span:nth-child(4) {
  transition-delay: 0.46s;
}
/* FRONT PAGE REPLAY ANIMATION */

/* Default hidden position */
.hero-section .hero-left,
.hero-section .hero-card,
.hero-section .hero-services,
.hero-section .hero-skills,
.hero-section .scroll-btn {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Person small movement */


/* When home comes into screen */
.hero-section.home-active .hero-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.hero-section.home-active .hero-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.hero-section.home-active .hero-services {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-section.home-active .hero-skills {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.hero-section.home-active .scroll-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.8s;
}

.hero-section.home-active .person-layer,
.hero-section.home-active .hero-person {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition-delay: 0.25s;
}
/* More movement for person image */


@keyframes personFloatStrong {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(-24px) scale(1.03);
  }

  100% {
    transform: translateX(-50%) translateY(10px) scale(1);
  }
}
/* PERSON IMAGE: FULL MOVEMENT ONLY ONE TIME */
.person-layer,
.hero-person {
  animation: personMoveOneTime 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes personMoveOneTime {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(120px) scale(0.88);
  }

  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(-30px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
/* PERSON DEFAULT POSITION */
.person-layer {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) scale(1);
  animation: none !important;
}

/* PERSON REPLAY ANIMATION */
.person-layer.person-replay {
  animation: personMoveReplay 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes personMoveReplay {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(140px) scale(0.85);
  }

  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(-35px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
.resume-btn {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px) !important;
  transition: 0.3s ease !important;
}

.resume-btn:hover {
  background: #ffffff !important;
  color: #111111 !important;
  transform: translateY(-4px) !important;
}
/* ================= SYSTEMATIC HERO BUTTONS ================= */

.hero-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;

  max-width: 520px !important;
  margin-top: 28px !important;
}

/* Same button size */
.hero-buttons .btn {
  min-width: 155px !important;
  height: 50px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 24px !important;
  border-radius: 50px !important;

  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2px !important;

  text-decoration: none !important;
  cursor: pointer !important;

  transition: 0.3s ease !important;
}

/* Main button */
.btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid #ffffff !important;
}

/* Outline button */
.btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
}

/* Resume buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(10px) !important;
}

/* Hover effect */
.hero-buttons .btn:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22) !important;
}

.btn-outline:hover,
.btn-glass:hover {
  background: #ffffff !important;
  color: #111111 !important;
}

/* Mobile view */
@media (max-width: 650px) {
  .hero-buttons {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    min-width: 100% !important;
  }
}
/* ================= RIGHT SIDE FRONT PAGE PANEL ================= */

.right-info-panel {
  position: absolute;
  top: 180px;
  right: 5%;
  width: 280px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  z-index: 25;
}

/* Available badge */
.status-pill {
  width: fit-content;
  padding: 10px 16px;

  display: flex;
  align-items: center;
  gap: 9px;

  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;

  font-size: 13px;
  font-weight: 800;

  backdrop-filter: blur(12px);
}

.status-pill span {
  width: 9px;
  height: 9px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 14px #4ade80;
}

/* Main right card */
.right-card {
  padding: 22px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;

  color: #ffffff;
  backdrop-filter: blur(14px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.card-label {
  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;

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

.right-card h3 {
  margin-bottom: 12px;

  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.right-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Skills chips */
.tech-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-mini span {
  padding: 9px 14px;

  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;

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

  backdrop-filter: blur(10px);
}

/* Project count card */
.project-mini-card {
  width: 150px;
  padding: 18px;

  background: #ffffff;
  color: #111111;

  border-radius: 22px;
}

.project-mini-card strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.project-mini-card p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
}

/* Hover movement */
.right-card,
.project-mini-card,
.status-pill,
.tech-mini span {
  transition: 0.3s ease;
}

.right-card:hover,
.project-mini-card:hover,
.status-pill:hover,
.tech-mini span:hover {
  transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 950px) {
  .right-info-panel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 30px;
    padding: 0 24px;
  }
}
/* ================= FIX RIGHT SIDE PANEL PLACE ================= */

.right-info-panel {
  position: absolute !important;

  top: 155px !important;
  right: 7% !important;

  width: 390px !important;
  max-width: 390px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 18px !important;

  z-index: 30 !important;
}

/* Available badge proper place */
.right-info-panel .status-pill {
  margin-left: 0 !important;
}

/* Main card proper size */
.right-info-panel .right-card {
  width: 100% !important;
  padding: 34px 36px !important;
  border-radius: 30px !important;
}

/* Skill chips line */
.right-info-panel .tech-mini {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

/* Project card */
.right-info-panel .project-mini-card {
  width: 210px !important;
  padding: 24px 28px !important;
  border-radius: 26px !important;
}

/* Keep person behind right panel */
.person-layer {
  z-index: 8 !important;
}

.motion-bg-text,
.running-name {
  z-index: 2 !important;
}
/* ================= RIGHT PANEL MOVEMENT ================= */

.right-info-panel .status-pill,
.right-info-panel .right-card,
.right-info-panel .tech-mini span,
.right-info-panel .project-mini-card {
  opacity: 0;
  transform: translateY(45px) scale(0.94);
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When home comes back */
.right-info-panel.panel-active .status-pill {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

.right-info-panel.panel-active .right-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}

.right-info-panel.panel-active .tech-mini span:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.4s;
}

.right-info-panel.panel-active .tech-mini span:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}

.right-info-panel.panel-active .tech-mini span:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.6s;
}

.right-info-panel.panel-active .project-mini-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.75s;
}

/* Hover movement */
.right-info-panel.panel-active .right-card:hover,
.right-info-panel.panel-active .project-mini-card:hover,
.right-info-panel.panel-active .status-pill:hover,
.right-info-panel.panel-active .tech-mini span:hover {
  transform: translateY(-8px) scale(1.02);
}
/* ================= FIX RIGHT PANEL NOT COVERING ARYAN TEXT ================= */

.right-info-panel {
  position: absolute !important;

  /* move panel lower */
  top: 280px !important;

  /* keep it on right side */
  right: 6% !important;

  width: 340px !important;
  max-width: 340px !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;

  z-index: 22 !important;
}

/* Available pill */
.right-info-panel .status-pill {
  padding: 9px 16px !important;
  font-size: 13px !important;
}

/* Main glass card smaller */
.right-info-panel .right-card {
  width: 100% !important;
  padding: 26px 28px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.11) !important;
}

/* Card title size */
.right-info-panel .right-card h3 {
  font-size: 25px !important;
  line-height: 1.15 !important;
}

/* Card paragraph */
.right-info-panel .right-card p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

/* Skill buttons */
.right-info-panel .tech-mini {
  gap: 10px !important;
}

.right-info-panel .tech-mini span {
  padding: 9px 16px !important;
  font-size: 13px !important;
}

/* Project card smaller */
.right-info-panel .project-mini-card {
  width: 180px !important;
  padding: 20px 24px !important;
  border-radius: 24px !important;
}

.right-info-panel .project-mini-card strong {
  font-size: 36px !important;
}

/* Keep big ARYAN text behind */
.motion-bg-text,
.running-name {
  z-index: 2 !important;
}

/* Keep person in center */
.person-layer {
  z-index: 10 !important;
}

/* Keep right panel above background, but not too high */
.right-info-panel {
  z-index: 24 !important;
}
/* ================= ABOUT SECTION ================= */

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 6% 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;

  background: #0f0f0f;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  top: 40px;
  left: 4%;

  font-size: clamp(90px, 18vw, 260px);
  font-weight: 900;
  line-height: 1;

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

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

.about-left,
.about-right {
  position: relative;
  z-index: 5;
}

.about-left .section-mini {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-left h2 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.about-left p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 32px;

  border-radius: 50px;
  background: #ffffff;
  color: #111111;

  font-size: 15px;
  font-weight: 900;
  text-decoration: none;

  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.12);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-card {
  padding: 28px 30px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;

  backdrop-filter: blur(14px);

  transition: 0.35s ease;
}

.about-card:hover {
  transform: translateX(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.about-card span {
  display: inline-block;
  margin-bottom: 14px;

  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
}

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

.about-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 110px 24px 70px;
  }

  .about-left h2 {
    font-size: 42px;
  }
}
/* ================= SKILLS SECTION ================= */

.skills-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 6% 80px;

  background: #140000;
  overflow: hidden;
}

.skills-bg-text {
  position: absolute;
  top: 45px;
  right: 4%;

  font-size: clamp(90px, 17vw, 250px);
  font-weight: 900;
  line-height: 1;

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

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

.skills-header {
  position: relative;
  z-index: 5;

  max-width: 720px;
  margin-bottom: 60px;
}

.skills-header .section-mini {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.skills-header h2 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.skills-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.skills-grid {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.skill-card {
  min-height: 260px;
  padding: 30px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;

  backdrop-filter: blur(14px);

  transition: 0.35s ease;
}

.skill-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.12);
}

.skill-card span {
  display: inline-block;
  margin-bottom: 26px;

  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
}

.skill-card h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 14px;
}

.skill-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.skill-bar {
  width: 100%;
  height: 8px;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  overflow: hidden;
}

.skill-bar div {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff4d00, #ffffff);
}

/* Mobile */
@media (max-width: 1000px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .skills-section {
    padding: 110px 24px 70px;
  }

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

  .skills-header h2 {
    font-size: 42px;
  }
}
/* ================= PROJECTS / WORKS SECTION ================= */

.projects-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 6% 80px;

  background: #0f0f0f;
  overflow: hidden;
}

.projects-bg-text {
  position: absolute;
  top: 40px;
  left: 4%;

  font-size: clamp(95px, 18vw, 260px);
  font-weight: 900;
  line-height: 1;

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

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

.projects-header {
  position: relative;
  z-index: 5;

  max-width: 780px;
  margin-bottom: 60px;
}

.projects-header .section-mini {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.projects-header h2 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.projects-grid {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 430px;
  padding: 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;

  backdrop-filter: blur(14px);

  transition: 0.35s ease;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(255, 77, 0, 0.35),
    transparent 42%
  );

  opacity: 0;
  transition: 0.35s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-14px);
  background: rgba(255, 255, 255, 0.12);
}

.project-card > * {
  position: relative;
  z-index: 2;
}

.project-number {
  color: rgba(255, 255, 255, 0.22);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.project-type {
  color: #ff4d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.project-card h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.project-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.project-tags span {
  padding: 8px 14px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;

  font-size: 12px;
  font-weight: 900;
}

.project-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-btn {
  height: 46px;
  padding: 0 22px;

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

  background: #ffffff;
  color: #111111;

  border-radius: 50px;
  border: 1px solid #ffffff;

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

  transition: 0.3s ease;
}

.project-btn.outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

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

.project-btn.outline:hover {
  background: #ffffff;
  color: #111111;
}

/* Mobile */
@media (max-width: 1050px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 360px;
  }
}

@media (max-width: 650px) {
  .projects-section {
    padding: 110px 24px 70px;
  }

  .projects-header h2 {
    font-size: 42px;
  }
}
/* ================= EDUCATION SECTION ================= */

.education-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 6% 80px;

  background: #150000;
  overflow: hidden;
}

.education-bg-text {
  position: absolute;
  top: 40px;
  right: 4%;

  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900;
  line-height: 1;

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

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

.education-header {
  position: relative;
  z-index: 5;
  max-width: 780px;
  margin-bottom: 70px;
}

.education-header .section-mini {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.education-header h2 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.education-wrapper {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;
  gap: 24px;

  max-width: 950px;
}

.edu-card {
  position: relative;
  padding: 34px 38px 34px 46px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;

  backdrop-filter: blur(14px);

  transition: 0.35s ease;
}

.edu-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 34px;

  width: 10px;
  height: 10px;

  background: #ff4d00;
  border-radius: 50%;
  box-shadow: 0 0 18px #ff4d00;
}

.edu-card:hover {
  transform: translateX(14px);
  background: rgba(255, 255, 255, 0.12);
}

.edu-year {
  display: inline-block;
  margin-bottom: 16px;

  color: #ff4d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.edu-card h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.edu-place {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  margin-bottom: 14px !important;
}

.edu-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}

/* Mobile */
@media (max-width: 650px) {
  .education-section {
    padding: 110px 24px 70px;
  }

  .education-header h2 {
    font-size: 42px;
  }

  .edu-card {
    padding: 30px 24px 30px 38px;
  }

  .edu-card h3 {
    font-size: 24px;
  }
}
/* ================= CONTACT SECTION ================= */

.contact-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 6% 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;

  background: #0f0f0f;
  overflow: hidden;
}

.contact-bg-text {
  position: absolute;
  top: 40px;
  left: 4%;

  font-size: clamp(80px, 16vw, 230px);
  font-weight: 900;
  line-height: 1;

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

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

.contact-left,
.contact-right {
  position: relative;
  z-index: 5;
}

.contact-left .section-mini {
  color: #ff4d00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-left h2 {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.contact-left p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-info a:hover {
  color: #ff4d00;
  transform: translateX(8px);
}

.contact-form {
  padding: 38px;

  display: flex;
  flex-direction: column;
  gap: 18px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;

  backdrop-filter: blur(14px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;

  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  font-size: 15px;
  outline: none;

  transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4d00;
  background: rgba(255, 255, 255, 0.14);
}

.contact-btn {
  height: 54px;

  border: none;
  border-radius: 50px;

  background: #ffffff;
  color: #111111;

  font-size: 15px;
  font-weight: 900;

  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 110px 24px 70px;
  }

  .contact-left h2 {
    font-size: 42px;
  }

  .contact-form {
    padding: 26px;
  }
}
.location-text {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
}
/* ================= FIX SKILLS SECTION LAYOUT ================= */

.skills-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.skill-card {
  min-height: 330px !important;
  padding: 30px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  text-align: left !important;

  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 28px !important;

  overflow: hidden !important;
}

.skill-card span {
  display: block !important;
  margin-bottom: 22px !important;

  color: #ff4d00 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.skill-card h3 {
  display: block !important;
  width: 100% !important;

  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  margin: 0 0 16px 0 !important;

  white-space: normal !important;
  word-break: normal !important;
}

.skill-card p {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;

  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 0 28px 0 !important;

  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
}

.skill-bar {
  width: 100% !important;
  height: 8px !important;
  margin-top: auto !important;

  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 50px !important;
  overflow: hidden !important;
}

.skill-bar div {
  height: 100% !important;
  border-radius: 50px !important;
  background: linear-gradient(90deg, #ff4d00, #ffffff) !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .skills-grid {
    grid-template-columns: 1fr !important;
  }

  .skill-card {
    min-height: 260px !important;
  }
}
/* ================= SAME SIZE CENTER PROJECT BUTTONS ================= */

.project-buttons {
  width: 100% !important;

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

  gap: 16px !important;
  margin-top: auto !important;
}

.project-buttons .project-btn {
  width: 155px !important;
  height: 48px !important;

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

  padding: 0 !important;
  text-align: center !important;
}
/* ================= PROJECT TOP RIGHT BUTTONS ================= */

.project-card {
  position: relative !important;
  overflow: hidden !important;
}

.project-top-actions {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;

  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  z-index: 20 !important;
}

.top-feature-btn,
.coming-soon-badge {
  height: 34px !important;
  padding: 0 14px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50px !important;

  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;

  backdrop-filter: blur(10px) !important;
}

.top-feature-btn {
  border: 1px solid rgba(255, 77, 0, 0.6) !important;
  background: rgba(255, 77, 0, 0.18) !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

.coming-soon-badge {
  border: 1px dashed rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

.top-feature-btn:hover {
  background: #ffffff !important;
  color: #111111 !important;
  transform: translateY(-3px) !important;
}

/* give number space so buttons don't overlap */
.project-number {
  padding-top: 24px !important;
}
 /* ================= AUTO PROJECT STATUS BUTTON ================= */

.project-card {
  position: relative !important;
}

.project-top-actions {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  z-index: 20 !important;
}

.top-feature-btn,
.coming-soon-badge {
  height: 34px !important;
  padding: 0 16px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50px !important;

  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.6px !important;

  backdrop-filter: blur(10px) !important;
}

.top-feature-btn {
  background: rgba(255, 77, 0, 0.18) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 77, 0, 0.6) !important;
  cursor: pointer !important;
}

.top-feature-btn:hover {
  background: #ffffff !important;
  color: #111111 !important;
  transform: translateY(-3px) !important;
}

.coming-soon-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  border: 1px dashed rgba(255, 255, 255, 0.3) !important;
}
/* ================= PROJECT TOP BADGES ================= */

.project-card {
  position: relative !important;
  padding-top: 78px !important;
}

.project-badge-row {
  position: absolute !important;
  top: 24px !important;
  left: 28px !important;
  right: 28px !important;

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

  z-index: 30 !important;
}

.left-badge,
.right-badge {
  height: 38px !important;
  padding: 0 24px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 50px !important;

  background: rgb(255, 255, 255) !important;
  color: rgb(37, 36, 36) !important;

  border: 1px solid rgb(255, 255, 255) !important;

  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;

  backdrop-filter: blur(12px) !important;
}

.right-badge.coming {
  background: rgb(255, 255, 255) !important;
  color: #f4400e !important;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.25) !important;
}
/* ================= SKILL LOGO + PERCENT + GLOW ================= */

/* keep card same size */
#skills .skill-card {
  position: relative !important;
  overflow: hidden !important;
}

/* logo on top-right */
#skills .skill-logo {
  position: absolute !important;
  top: 28px !important;
  right: 28px !important;

  width: 46px !important;
  height: 46px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 15px !important;

  background: rgba(255, 77, 0, 0.12) !important;
  border: 1px solid rgba(255, 77, 0, 0.3) !important;

  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;

  box-shadow: 0 0 22px rgba(255, 77, 0, 0.18) !important;

  transition: 0.35s ease !important;
}

/* percent number bottom-right */
#skills .skill-percent {
  position: absolute !important;
  right: 30px !important;
  bottom: 28px !important;

  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;

  opacity: 0.9 !important;
}

/* glow inside card */
#skills .skill-card::before {
  content: "" !important;
  position: absolute !important;
  top: -80px !important;
  right: -80px !important;

  width: 180px !important;
  height: 180px !important;

  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.35),
    transparent 70%
  ) !important;

  opacity: 0.35 !important;
  pointer-events: none !important;
  transition: 0.35s ease !important;
}

/* hover glow */
#skills .skill-card:hover {
  border-color: rgba(255, 77, 0, 0.45) !important;
  box-shadow: 0 25px 60px rgba(255, 77, 0, 0.12) !important;
}

#skills .skill-card:hover::before {
  opacity: 0.8 !important;
}

#skills .skill-card:hover .skill-logo {
  background: #ff4d00 !important;
  transform: rotate(-6deg) scale(1.08) !important;
  box-shadow: 0 0 35px rgba(255, 77, 0, 0.45) !important;
}

/* keep progress line clean */
#skills .skill-bar {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}
#skills .skill-percent {
  position: absolute !important;

  right: 30px !important;
  bottom: 48px !important;
  top: auto !important;

  padding: 5px 10px !important;
  border-radius: 50px !important;

  background: rgba(255, 77, 0, 0.14) !important;
  color: #ffffff !important;

  font-size: 13px !important;
  font-weight: 900 !important;
}

.follow-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 30px auto 0;
  width: 100%;
  text-align: center;
}

.follow-social span {
  color: #38bdf8;
  font-size: 16px;
  font-weight: 500;
}

.follow-social a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s ease;
}

.follow-social a:hover {
  color: #a855f7;
  transform: translateY(-4px);
}
/* ================= CONTACT SECTION UNIQUE FIX ================= */

#contact.contact-section {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 70px !important;
  align-items: center !important;

  padding: 120px 6% 80px !important;
  min-height: 100vh !important;

  background: #0f0f0f !important;
  overflow: hidden !important;
}

#contact .contact-left {
  max-width: 620px !important;
}

#contact .contact-desc {
  max-width: 560px !important;
  margin-bottom: 36px !important;
}

#contact .contact-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  max-width: 560px !important;
}

/* email/location card */
#contact .contact-detail-card {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;

  padding: 18px 20px !important;
  border-radius: 22px !important;

  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;

  text-decoration: none !important;
  color: #ffffff !important;

  transition: 0.35s ease !important;
}

#contact .contact-detail-card:hover {
  transform: translateX(10px) !important;
  border-color: rgba(255, 77, 0, 0.45) !important;
  box-shadow: 0 20px 45px rgba(255, 77, 0, 0.12) !important;
}

#contact .contact-icon {
  width: 48px !important;
  height: 48px !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 16px !important;

  background: rgba(255, 77, 0, 0.14) !important;
  border: 1px solid rgba(255, 77, 0, 0.3) !important;

  font-size: 20px !important;
}

#contact .contact-detail-card small {
  display: block !important;
  margin-bottom: 5px !important;

  color: #ff4d00 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

#contact .contact-detail-card strong {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

/* right form */
#contact .contact-right {
  width: 100% !important;
}

#contact .contact-form {
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;

  padding: 44px !important;
  border-radius: 34px !important;

  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(16px) !important;
}

#contact .input-group {
  margin-bottom: 18px !important;
}

#contact .contact-form input,
#contact .contact-form textarea {
  width: 100% !important;

  padding: 19px 22px !important;
  border-radius: 18px !important;

  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;

  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;

  outline: none !important;
  transition: 0.3s ease !important;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  border-color: rgba(255, 77, 0, 0.7) !important;
  background: rgba(255, 255, 255, 0.13) !important;
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.08) !important;
}

#contact .contact-btn {
  height: 56px !important;
  padding: 0 34px !important;

  border: none !important;
  border-radius: 50px !important;

  background: #ffffff !important;
  color: #111111 !important;

  font-size: 15px !important;
  font-weight: 900 !important;

  cursor: pointer !important;
  transition: 0.3s ease !important;
}

#contact .contact-btn:hover {
  transform: translateY(-5px) !important;
  background: #ff4d00 !important;
  color: #ffffff !important;
  box-shadow: 0 28px 45px rgba(255, 77, 0, 0.25) !important;
}

/* mobile */
@media (max-width: 900px) {
  #contact.contact-section {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 110px 24px 70px !important;
  }

  #contact .contact-form {
    padding: 28px !important;
  }
}
/* ================= CONTACT CARD SIZE CONTROL ================= */

#contact {
  --info-card-width: 520px;      /* email/location card width */
  --info-card-padding: 16px;     /* email/location card inside space */
  --info-icon-size: 44px;        /* email/location icon size */

  --form-card-width: 630px;      /* message form card width */
  --form-card-padding: 36px;     /* message form card inside space */
  --message-box-height: 270px;   /* message textarea height */
}

/* Email + Location card size */
#contact .contact-details {
  max-width: var(--info-card-width) !important;
}

#contact .contact-detail-card {
  width: 100% !important;
  padding: var(--info-card-padding) !important;
  border-radius: 20px !important;
}

#contact .contact-icon {
  width: var(--info-icon-size) !important;
  height: var(--info-icon-size) !important;
  min-width: var(--info-icon-size) !important;
}

/* Text size inside email/location */
#contact .contact-detail-card small {
  font-size: 11px !important;
}

#contact .contact-detail-card strong {
  font-size: 15px !important;
}

/* Message form card size */
#contact .contact-form {
  max-width: var(--form-card-width) !important;
  padding: var(--form-card-padding) !important;
}

/* Name + Email input size */
#contact .contact-form input {
  height: 58px !important;
  padding: 0 20px !important;
}

/* Message box size */
#contact .contact-form textarea {
  min-height: var(--message-box-height) !important;
  resize: none !important;
}

/* Send button size */
#contact .contact-btn {
  height: 54px !important;
  padding: 0 32px !important;
}
/* ================= ONLY EMAIL BOX SIZE ================= */

#contact .email-card {
  width: 430px !important;        /* email box width */
  padding: 18px 22px !important;  /* inside spacing */
  border-radius: 22px !important;
}

/* email icon size */
#contact .email-card .contact-icon {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
}

/* email text size */
#contact .email-card small {
  font-size: 12px !important;
}

#contact .email-card strong {
  font-size: 16px !important;
}
/* ================= ONLY LOCATION BOX SIZE ================= */

#contact .location-card {
  width: 430px !important;        /* location box width */
  padding: 18px 22px !important;  /* inside spacing */
  border-radius: 22px !important;
}

/* location icon size */
#contact .location-card .contact-icon {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
}

/* location text size */
#contact .location-card small {
  font-size: 12px !important;
}

#contact .location-card strong {
  font-size: 16px !important;
}
/* ================= FINAL BOTTOM FOOTER FIX ================= */

.bottom-footer {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;

  width: 100% !important;
  min-height: 74px !important;

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

  background: #0f0f0f !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;

  z-index: 1 !important;
}

.bottom-footer p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.bottom-footer span {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Important: footer should scroll normally */
.bottom-footer {
  scroll-snap-align: none !important;
}
.disabled-link {
  opacity: 0.45 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}
/* ================= HARD FIX: RESUME BUTTON COVER ================= */

/* Move full left hero content up */
#home .hero-left {
  top: 250px !important;
  z-index: 80 !important;
}

/* Arrange buttons properly in 2 rows */
#home .hero-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;

  width: 420px !important;
  max-width: 420px !important;

  position: relative !important;
  z-index: 90 !important;
}

/* Same size buttons */
#home .hero-buttons .btn {
  height: 54px !important;
  padding: 0 22px !important;

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

  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

/* Keep bottom bar behind and not blocking buttons */
#home .bottom-bar {
  z-index: 20 !important;
  bottom: 18px !important;
  pointer-events: none !important;
}

/* Mobile fix */
@media (max-width: 700px) {
  #home .hero-left {
    top: 170px !important;
  }

  #home .hero-buttons {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }
}
/* ================= FOLLOW ME BUTTONS SAME STYLE ================= */

#home .follow-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, 180px) !important;
  gap: 14px !important;

  position: relative !important;
  z-index: 100 !important;

  margin-top: 18px !important;
}

#home .follow-btn {
  width: 180px !important;
  height: 52px !important;

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

  padding: 0 !important;
  border-radius: 50px !important;

  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;

  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  backdrop-filter: blur(10px) !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-decoration: none !important;

  transition: 0.3s ease !important;
}

#home .follow-btn:hover {
  background: #ffffff !important;
  color: #111111 !important;
  transform: translateY(-5px) !important;
}

/* Mobile */
@media (max-width: 700px) {
  #home .follow-buttons {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  #home .follow-btn {
    width: 100% !important;
  }
}
/* ================= HERO SIZE + POSITION CONTROL ONLY ================= */

#home {
  /* LEFT SIDE CONTROL */
  --left-content-top: 220px;
  --left-content-left: 6%;
  --left-content-scale: 0.98;

  --mini-text-size: 14px;
  --hero-title-size: 64px;
  --hero-title-line: 0.98;

  --rating-size: 14px;
  --button-width: 165px;
  --button-height: 50px;
  --button-text-size: 14px;

  /* RIGHT SIDE CONTROL */
  --right-panel-top: 230px;
  --right-panel-right: 6%;
  --right-panel-scale: 0.94;

  --right-card-width: 330px;
  --right-title-size: 24px;
  --right-text-size: 15px;
}

/* Left full block: Creative Portfolio, title, rating, buttons, follow me */
#home .hero-left {
  top: var(--left-content-top) !important;
  left: var(--left-content-left) !important;
  transform: scale(var(--left-content-scale)) !important;
  transform-origin: top left !important;
  z-index: 80 !important;
}

/* Creative Portfolio */
#home .section-mini {
  font-size: var(--mini-text-size) !important;
}

/* We build standout web experiences */
#home .hero-left h1 {
  font-size: var(--hero-title-size) !important;
  line-height: var(--hero-title-line) !important;
}

/* Stars + 2+ Projects Built */
#home .rating {
  font-size: var(--rating-size) !important;
}

/* Buttons */
#home .hero-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, var(--button-width)) !important;
  gap: 14px !important;
  position: relative !important;
  z-index: 100 !important;
}

#home .hero-buttons .btn {
  width: var(--button-width) !important;
  height: var(--button-height) !important;
  padding: 0 !important;

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

  font-size: var(--button-text-size) !important;
}

/* Follow me on */
#home .follow-social {
  margin-top: 16px !important;
  position: relative !important;
  z-index: 100 !important;
}

/* Right side full block */
#home .right-info-panel {
  top: var(--right-panel-top) !important;
  right: var(--right-panel-right) !important;
  transform: scale(var(--right-panel-scale)) !important;
  transform-origin: top right !important;
  z-index: 70 !important;
}

/* Right card size */
#home .right-card {
  width: var(--right-card-width) !important;
}

/* Building modern web experiences */
#home .right-card h3 {
  font-size: var(--right-title-size) !important;
}

/* Right card paragraph */
#home .right-card p {
  font-size: var(--right-text-size) !important;
}

/* Stop bottom bar from covering buttons */
#home .bottom-bar {
  pointer-events: none !important;
}
/* ================= MOVE HERO CONTENT AWAY FROM BIG BACKGROUND TEXT ================= */

#home {
  /* Increase = content goes down */
  --left-content-down: 55px;
  --right-content-down: 45px;
}

/* Move left text/buttons down */
#home .hero-left {
  top: calc(220px + var(--left-content-down)) !important;
}

/* Move right card/down area down */
#home .right-info-panel {
  top: calc(225px + var(--right-content-down)) !important;
}