@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
}

li,
a,
button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #edf0f1;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
  background-color: #000000; /* #24252a; */
}

.logo {
  height: 50px;
}

/* Navigation */
.nav_links {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  width: 600px;
  list-style: none;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
}

.nav_links li {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  width: 150px;
  text-align: center;
  justify-content: center;
  z-index: 1;
}

.nav_links li a {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.nav_links li a:hover {
  color: #ffffff;
}

.nav_links span {
  position: absolute;
  top: 0;
  left: 450px;
  width: 150px;
  height: 100%;
  background: linear-gradient(45deg, #194b4f, #33fffc);
  border-radius: 10px;
  transition: 0.5s;
}

/* Hover movement */
.nav_links li:nth-child(1):hover ~ span {
  left: 0;
}

.nav_links li:nth-child(2):hover ~ span {
  left: 150px;
}

.nav_links li:nth-child(3):hover ~ span {
  left: 300px;
}

.nav_links li:nth-child(4):hover ~ span {
  left: 450px;
}

/* Button */
button {
  padding: 9px 25px;
  background-color: rgba(0, 197, 195, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: rgba(0, 197, 195, 0.7);
}

.hero-image {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  position: relative;
  width: 100%;
  z-index: 2;
  height: 35%;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
}
.hero-text {
  width: 50%;
  color: #d4d4d4;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  padding: 20px 0;
}

.hero-text p {
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Gradient Text */
.gradient-text {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(45deg, #194b4f, #33fffc);

  -webkit-background-clip: text;
  color: transparent;
}

/* Heading */
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 700;
  max-width: 900px;
  line-height: 1.2;
  color: #d4d4d4;
  margin-bottom: 15px;
}

.hero h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 600;
  max-width: 900px;
  line-height: 1.5;
  color: #d4d4d4;
}

.hero-buttons {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}

.hero-glow {
  position: absolute;

  width: 1200px;
  height: 1200px;

  background:
    radial-gradient(
      circle at center,
      rgba(51, 255, 252, 0.45),
      transparent 35%
    ),
    radial-gradient(circle at 60% 40%, rgba(0, 197, 195, 0.2), transparent 55%),
    radial-gradient(circle at 35% 70%, rgba(0, 112, 192, 0.18), transparent 60%);

  filter: blur(45px);
}

.hero-ground-glow {
  position: absolute;
  bottom: -40px;

  width: 520px;
  height: 120px;

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(51, 255, 252, 0.45) 0%,
    rgba(0, 197, 195, 0.2) 50%,
    transparent 75%
  );

  filter: blur(25px);

  z-index: 1;
}

.hero .hero-text .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  width: 80%;
}

.hero .hero-text .hero-stats-grid .hero-stat-card {
  position: relative;
  min-height: 130px;
  padding: 20px 12px;
  border-radius: 14px;
  border: 1px solid rgba(51, 255, 252, 0.45);
  background: rgba(12, 12, 12, 0.75);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero .hero-text .hero-stats-grid .hero-stat-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 130px;
  top: -70px;
  left: -70px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(51, 255, 252, 0.45),
    rgba(0, 197, 195, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: 0.3s ease;
}

.hero .hero-text .hero-stats-grid .hero-stat-card:hover {
  border-color: rgba(51, 255, 252, 0.95);
  box-shadow:
    0 0 18px rgba(51, 255, 252, 0.35),
    inset 0 0 18px rgba(51, 255, 252, 0.08);
  animation: stat-shake 0.45s ease;
}

.hero .hero-text .hero-stats-grid .hero-stat-card:hover::before {
  opacity: 1;
  top: -35px;
  left: -35px;
}

.hero .hero-text .hero-stats-grid .hero-stat-card .hero-stat-number {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: #33fffc;
  text-shadow: 0 0 14px rgba(51, 255, 252, 0.45);
  z-index: 1;
}

.hero .hero-text .hero-stats-grid .hero-stat-card .hero-stat-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  color: #d4d4d4;
  z-index: 1;
}

@keyframes stat-shake {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  25% {
    transform: rotate(1.5deg) translateY(-3px);
  }

  50% {
    transform: rotate(-1.5deg) translateY(-3px);
  }

  75% {
    transform: rotate(1deg) translateY(-2px);
  }

  100% {
    transform: rotate(0deg) translateY(0);
  }
}
/*
.hobby {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  height: 50px;
  background-color: rgba(0, 197, 195, 1);
}

.hobby-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  list-style: none;
}
*/
.hobby {
  overflow: hidden;
  height: 60px;
  background: rgba(0, 197, 195, 1);
  display: flex;
  align-items: center;
}

.hobby-track {
  display: flex;
  width: max-content;
  animation: hobby-scroll 25s linear infinite;
}

.hobby:hover .hobby-track {
  animation-play-state: paused;
}

.hobby-list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.hobby-item {
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

@keyframes hobby-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.motivation {
  margin: 80px 10%;
  font-family: "Montserrat", sans-serif;
  color: #d4d4d4;
}

.motivation-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: #33fffc;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 700;
}

.motivation-header h1 {
  margin-top: 15px;
  font-size: 42px;
  font-weight: 800;
}

.stair-stage {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.step {
  position: absolute;
  width: 270px;
  height: 90px;
  padding: 16px 20px;
  border: 1px solid rgba(51, 255, 252, 0.55);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.85);
  color: #d4d4d4;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 0 18px rgba(51, 255, 252, 0.05);
  transition: 0.3s ease;
}

.step:hover,
.step.active {
  border-color: #33fffc;
  box-shadow:
    0 0 24px rgba(51, 255, 252, 0.35),
    inset 0 0 18px rgba(51, 255, 252, 0.12);
  transform: translateY(-5px);
}

.step h3 {
  color: #33fffc;
  font-size: 16px;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  line-height: 1.4;
}

.step-1 {
  left: 80px;
  bottom: 20px;
}

.step-2 {
  left: 260px;
  bottom: 85px;
}

.step-3 {
  left: 450px;
  bottom: 150px;
}

.step-4 {
  left: 640px;
  bottom: 215px;
}

.step-5 {
  left: 830px;
  bottom: 280px;
}

/* Character */
.game-person {
  position: absolute;
  left: 130px;
  top: 300px;
  width: 42px;
  height: 70px;
  z-index: 5;
  transform: translate(-50%, -100%);
  transition:
    left 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    top 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-person.walking .arm-left,
.game-person.walking .leg-right {
  animation: walk-front 0.28s infinite alternate;
}

.game-person.walking .arm-right,
.game-person.walking .leg-left {
  animation: walk-back 0.28s infinite alternate;
}

.head {
  position: absolute;
  top: 0;
  left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2c6a0;
  box-shadow: 0 0 12px rgba(51, 255, 252, 0.45);
}

.body {
  position: absolute;
  top: 24px;
  left: 12px;
  width: 18px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0070c0, #194b4f);
}

.arm,
.leg {
  position: absolute;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: #33fffc;
  transform-origin: top center;
}

.arm-left {
  top: 28px;
  left: 8px;
}

.arm-right {
  top: 28px;
  right: 8px;
}

.leg-left {
  top: 50px;
  left: 14px;
}

.leg-right {
  top: 50px;
  right: 14px;
}

@keyframes walk-front {
  from {
    transform: rotate(25deg);
  }

  to {
    transform: rotate(-25deg);
  }
}

@keyframes walk-back {
  from {
    transform: rotate(-25deg);
  }

  to {
    transform: rotate(25deg);
  }
}

.experience {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.experience .left-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #d4d4d4;
  width: 30%;
  padding: 20px;
}

.experience .left-column h1 {
  font-size: 34px;
  font-weight: 500;
}

.experience .right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 20px;
  color: #d4d4d4;
}

.experience .right-column h2 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
}

.experience .right-column h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
.experience .right-column h4 {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #a0a0a0;
  margin-bottom: 15px;
}

.experience .right-column span {
  margin-right: 10px;
}

.expertise {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.expertise .left-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #d4d4d4;
  width: 30%;
  padding: 20px;
}

.expertise .right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding: 20px;
  color: #d4d4d4;
}

.expertise .right-column .expertise-list {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expertise .right-column .expertise-list li {
  display: flex;
  flex-direction: row;
  min-height: 100px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 197, 195, 1);
  background-color: rgba(36, 37, 42, 0.2);
}

.expertise .right-column .expertise-list img {
  height: 60px;
  margin-right: 15px;
  margin-left: 10px;
  border-radius: 50%;
}

.expertise .right-column .expertise-list h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.expertise .right-column .expertise-list p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #a0a0a0;
}

.expertise
  .right-column
  .expertise-list
  .expertise-item
  .expertise-description {
  display: flex;
  flex-direction: column;
  width: 70%;
  overflow: hidden;
}

.expertise .right-column .expertise-list .expertise-item .expertise-rating {
  display: flex;
  background: linear-gradient(45deg, #194b4f, #33fffc);
  height: 35px;
  width: 150px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50px;
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-right: 10px;
}

.favorite-apps {
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 10%;
  margin-right: 10%;
  padding: 10px;
}

.favorite-apps h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: #d4d4d4;
  margin-bottom: 20px;
}

.favorite-apps .apps-list {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  flex-direction: row;
  gap: 20px;
}

.favorite-apps .apps-list .app-outer {
  overflow: hidden;
  position: relative;
  min-height: 200px;
  align-items: center;
  padding: 2px;
  border-radius: 10px;
  border: 1px solid #080a11;
  background-color: #0c0c0c;
}

.favorite-apps .apps-list .app-outer .app-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  min-height: 200px;
  align-items: center;
  padding: 25px;
  color: #d4d4d4;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #080a11;
  background-color: #0c0c0c;
}

.favorite-apps .apps-list .app-item img {
  position: absolute;
  top: 5px;
  height: 125px;
  border-radius: 50%;
  margin-top: 10px;
  transition: all 0.5s ease;
}

.favorite-apps .apps-list .app-item h2 {
  position: absolute;
  top: 160px;
  margin-top: 10px;
  font-size: 18px;
  transition: all 0.5s ease;
}

.favorite-apps .apps-list .app-item .app-description {
  position: absolute;
  top: 200px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  color: #a0a0a0;
  text-align: center;
  padding: 7px;
  transition: all 1s ease;
}

.favorite-apps .apps-list .app-outer .glow-eff-one {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #194b4f 0%, #33fffc 50%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
  transition: all 1s ease;
}

.favorite-apps .apps-list .app-outer .glow-eff-two {
  position: absolute;
  top: 200px;
  left: 300px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #194b4f 0%, #33fffc 40%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
  transition: all 1s ease;
}

.favorite-apps .apps-list .app-outer:hover .glow-eff-one {
  left: -100px;
  top: -100px;
}

.favorite-apps .apps-list .app-outer:hover .glow-eff-two {
  left: 175px;
  top: 100px;
}

.favorite-apps .apps-list .app-outer:hover img {
  opacity: 0;
  transform: scale(0);
}

.favorite-apps .apps-list .app-outer:hover h2 {
  top: 10px;
}

.favorite-apps .apps-list .app-outer:hover .app-description {
  top: 60px;
}

.client-talk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 600px;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 10%;
  margin-right: 10%;
}

.client-talk .left-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #d4d4d4;
  padding: 20px;
}

.client-talk .left-column h1 {
  margin: 0;
}

.client-talk .right-column .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-left: 0;
}

.client-talk .right-column button {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.client-talk .right-column button img {
  width: 32px;
  height: 32px;
  display: block;
}

.client-talk .right-column {
  padding: 20px;
  overflow: hidden;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.client-talk-track {
  position: relative;
  width: 100%;
  height: 300px;
}

.client-talk-item {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 400px;
  min-height: 270px;
  padding: 20px;

  color: #d4d4d4;
  border-radius: 14px;
  border: 1px solid #080a11;
  background-color: #0c0c0c;

  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: all 0.8s ease;
}

.client-talk-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 5;
  background: #111827;
  border-color: #0070c0;
}

.client-talk-item.left {
  opacity: 0.55;
  transform: translate(-150%, -50%) scale(0.75);
  z-index: 3;
}

.client-talk-item.right {
  opacity: 0.55;
  transform: translate(50%, -50%) scale(0.75);
  z-index: 3;
}

.client-talk-item.far-left {
  opacity: 0.2;
  transform: translate(-230%, -50%) scale(0.55);
  z-index: 1;
}

.client-talk-item.far-right {
  opacity: 0.2;
  transform: translate(130%, -50%) scale(0.55);
  z-index: 1;
}

.rating {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 15px;
}

.comment {
  line-height: 1.5;
}

.customer-name {
  margin-top: 20px;
  font-weight: 700;
}

.get-in-touch {
  position: relative;
  height: 700px;
  background: #f2f2f2;
  margin-left: 10%;
  margin-right: 10%;
}

.get-in-touch .git-glow-eff-part {
  display: flex;
  height: 100%;
  background: #bfbfbf;
}

.get-in-touch .git-glow-eff-part .git-glow-eff-part-one {
  position: relative;
  height: 100%;
  width: 50%;
  background: #000000;
}

.get-in-touch .git-glow-eff-part .git-glow-eff-part-one span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background: radial-gradient(
    ellipse at top right,
    #ffcc33 0%,
    rgba(255, 204, 51, 0.6) 25%,
    rgba(255, 204, 51, 0.25) 50%,
    transparent 80%
  );
}

.get-in-touch .git-glow-eff-part .git-glow-eff-part-two {
  position: relative;
  height: 100%;
  width: 50%;
  background: #000000;
}

.get-in-touch .git-glow-eff-part .git-glow-eff-part-two span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(22, 217, 255, 0.55) 0%,
    rgba(14, 165, 198, 0.3) 45%,
    rgba(14, 165, 198, 0.1) 65%,
    transparent 80%
  );
}

/* ===========================
   Center Image
=========================== */

.get-in-touch .head-img {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 650px;
  overflow: hidden;
  pointer-events: none;
}

.get-in-touch .head-img img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

  height: 800px;
  width: auto;
  max-width: none;
}

/* ===========================
   Gradient Overlay
=========================== */

.get-in-touch .footer-gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.get-in-touch .get-in-touch-text {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  z-index: 1;
  padding: 15px;
}

.get-in-touch .get-in-touch-text .get-in-touch-header {
  margin-top: 50px;
  margin-bottom: 150px;
  width: 100%;
  color: #d4d4d4;
  text-align: center;
  font-size: 75px;
  font-weight: 900;
  z-index: 1;
  -webkit-box-reflect: below 5px
    linear-gradient(transparent, rgba(255, 255, 255, 0.2));
}

.get-in-touch .get-in-touch-text .get-in-touch-button-list {
  display: flex;
  justify-content: center; /* Center horizontally */
  width: 100%;
  align-items: center;
  gap: 20px; /* Space between buttons */
  margin-top: 40px;
}

.get-in-touch-button-list a {
  text-decoration: none;
  margin: 0;
  padding: 10px 22px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  color: #d4d4d4;
  transition: all 0.3s ease;
}

.get-in-touch-button-list a:hover {
  background: #d4d4d4;
  color: #222;
  transform: translateY(-3px);
}

.get-in-touch .get-in-touch-text .get-in-touch-message {
  text-align: center;
  color: #d4d4d4;
}
.get-in-touch .get-in-touch-text .get-in-touch-message-two {
  margin-top: 20px;
  text-align: center;
  color: #d4d4d4;
}

.flying-book {
  position: fixed;
  left: 100px;
  top: 100px;
  font-size: 32px;
  z-index: 9999;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s linear;
  filter: drop-shadow(0 0 8px rgba(51, 255, 252, 0.8));
}

.book-message {
  position: absolute;
  left: 35px;
  top: -20px;
  padding: 5px 10px;
  border: 1px solid #33fffc;
  border-radius: 999px;
  background: #0c0c0c;
  color: #33fffc;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: scale(0);
  transition: 0.25s ease;
}

.flying-book.show-message .book-message {
  opacity: 1;
  transform: scale(1);
}
