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

:root {
  --bg: #05070d;
  --card: rgba(18, 22, 32, 0.78);
  --text: #f7f7fb;
  --muted: #aeb3c2;
  --gold: #ffc83d;
  --gold2: #ffb51f;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Poppins, Arial, sans-serif;
  background:
    radial-gradient(circle at 75% 8%, rgba(255, 196, 57, 0.2), transparent 25%),
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 196, 57, 0.07),
      transparent 20%
    ),
    linear-gradient(180deg, #04060b 0%, #070a10 48%, #04060b 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 200, 61, 0.7) 1px,
    transparent 1px
  );
  background-size: 80px 80px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.logo-mark {
  color: var(--gold);
  font-size: 32px;
  font-style: italic;
  letter-spacing: -3px;
}

.navbar {
  position: sticky;
  top: 16px;
  z-index: 999;
  height: 76px;
  padding: 0 22px;
  margin-top: 12px;

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

  background: rgba(8, 10, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: #f3f3f6;
  padding: 8px 0;
  transition: 0.3s ease;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd95c, #ffb72d);
  border-radius: 30px;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: rgba(12, 14, 24, 0.75);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.download-btn,
.hire-btn,
.btn {
  border: 1px solid var(--border);
  padding: 15px 22px;
  border-radius: 10px;
  background: rgba(12, 14, 24, 0.75);
  color: white;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: 0.25s ease;
}

.hire-btn,
.btn.primary {
  background: linear-gradient(135deg, #ffd95c, #ffb72d);
  color: #111;
  box-shadow: 0 12px 32px rgba(255, 187, 35, 0.28);
}

.download-btn i {
  color: var(--gold);
}

.download-btn:hover,
.hire-btn:hover,
.btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 560px;
  min-height: 620px;
  align-items: center;
  gap: 20px;
}

.eyebrow {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero h2 span {
  color: var(--gold);
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 200, 61, 0.3);
  border-radius: 50px;
  color: var(--gold);
  background: rgba(255, 200, 61, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

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

.avatars {
  display: flex;
}

.avatars img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -9px;
}

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

.clients p {
  margin: 0;
  line-height: 1.3;
  font-size: 14px;
}

.clients strong {
  color: var(--gold);
  font-size: 22px;
}

.hero-image {
  height: 560px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.planet {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 42px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #ffe07b,
    #b9770e 45%,
    rgba(255, 196, 57, 0.05) 70%
  );
  box-shadow: 0 0 90px rgba(255, 190, 39, 0.45);
  opacity: 0.92;
  z-index: 1;
}

.orbit,
.orbit::before {
  position: absolute;
  content: "";
  width: 590px;
  height: 215px;
  border: 1px solid rgba(255, 199, 61, 0.35);
  border-radius: 50%;
  transform: rotate(-22deg);
  top: 170px;
  z-index: 1;
}

.orbit::before {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 0;
  top: 95px;
  right: -7px;
}

.profile-img {
  position: relative;
  z-index: 2;
  width: min(425px, 80vw);
  height: min(425px, 80vw);
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.65));
  margin-bottom: 100px;
  border: 4px solid rgba(255, 200, 61, 0.6);
  box-shadow: 0 0 40px rgba(255, 200, 61, 0.4);
}

.tech-strip {
  margin-top: -20px;

  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(20, 24, 34, 0.82),
    rgba(8, 10, 16, 0.74)
  );
  border-radius: 14px;
  padding: 28px 38px;
  display: flex;
  align-items: center;
  gap: 42px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.tech-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.6;
  min-width: 150px;
}

.tech-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.tech {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #e9ecf4;
  transition: 0.3s ease;
}

.tech i {
  font-size: 28px;
}

.tech:hover {
  transform: translateY(-8px) scale(1.08);
  color: var(--gold);
}

section {
  padding: 45px 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

.label {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 8px;
}

.title {
  font-size: 30px;
  letter-spacing: -1px;
}

.view-all,
.learn {
  color: var(--gold);
  font-weight: 800;
}

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

.project-card,
.service-card,
.small-card,
.contact-info,
.contact-form,
.pricing-card,
.testimonial-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  backdrop-filter: blur(14px);
}

.project-card:hover,
.service-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 200, 61, 0.55);
}

.project-card:hover,
.service-card:hover {
  box-shadow: 0 25px 70px rgba(255, 200, 61, 0.2);
}

.project-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.project-content {
  padding: 18px;
}

.project-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.project-content p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  min-height: 46px;
}

.result-box {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 200, 61, 0.1);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255, 200, 61, 0.18);
}

.tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.tags span {
  font-size: 12px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #0b1019;
}

.icons {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.icons a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  border-radius: 7px;
  transition: 0.25s ease;
}

.icons a:hover {
  background: var(--gold);
  color: #111;
}

.services-title {
  margin-bottom: 22px;
}

.service-card {
  padding: 26px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-icon {
  min-width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 200, 61, 0.26),
    rgba(255, 200, 61, 0.05)
  );
  color: var(--gold);
  font-size: 27px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.learn {
  display: inline-block;
  margin-top: 12px;
}

.about-skills {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 40px;
  align-items: start;
}

.about {
  padding-right: 38px;
  border-right: 1px solid var(--border);
}

.about p {
  color: #c8ccd7;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.small-card {
  padding: 15px;
  font-size: 13px;
  color: var(--muted);
}

.small-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-top: 4px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 42px;
  row-gap: 22px;
  margin-top: 22px;
}

.skill {
  display: grid;
  grid-template-columns: 40px 1fr 45px;
  align-items: center;
  gap: 12px;
}

.skill i {
  font-size: 30px;
}

.skill-name {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 9px;
}

.bar {
  height: 7px;
  background: #202636;
  border-radius: 50px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd95c, #ffb72d);
}

.percent {
  text-align: right;
  font-weight: 800;
  font-size: 13px;
}

.pricing-card,
.testimonial-card {
  padding: 28px;
  position: relative;
}

.pricing-card h3 {
  margin-bottom: 12px;
}

.pricing-card h2 {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 12px;
}

.pricing-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  margin: 12px 0;
  color: #dfe3ee;
}

.pricing-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

.pricing-card.popular {
  border-color: rgba(255, 200, 61, 0.55);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ffd95c, #ffb72d);
  color: #111;
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-card strong {
  display: block;
  color: var(--gold);
  margin-top: 18px;
}

.cta {
  margin: 30px 0 55px;
  border: 1px solid rgba(255, 200, 61, 0.5);
  border-radius: 24px;
  padding: 34px 38px;
  background: linear-gradient(
    90deg,
    rgba(255, 200, 61, 0.16),
    rgba(14, 17, 24, 0.92)
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 20px 70px rgba(255, 184, 38, 0.13);
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  gap: 22px;
}

.contact-card {
  margin: 30px 0 55px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  border-radius: 18px;
  padding: 28px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 22px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  color: #dfe3ee;
}

.contact-item i {
  color: var(--gold);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 200, 61, 0.1);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 11, 18, 0.8);
  color: #fff;
  outline: none;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 200, 61, 0.08);
}

.contact-form button {
  border: 0;
  justify-content: center;
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 99;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-6px) scale(1.08);
}

footer {
  border-top: 1px solid var(--border);
  padding: 35px 0 20px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr 0.9fr;
  gap: 36px;
}

.footer-text {
  margin-top: 16px;
}

footer h4 {
  margin-bottom: 16px;
}

footer p,
footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

footer i {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #121825;
  color: #fff;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.socials a:hover {
  transform: translateY(-5px) scale(1.08);
  color: #111;
  background: linear-gradient(135deg, #ffd95c, #ffb72d);
}

.socials a:hover i {
  color: #111;
}

.copyright {
  text-align: center;
  margin-top: 24px;
  color: #8e94a3;
  font-size: 13px;
}

.react-icon {
  color: #25d5ff;
}

.python-icon {
  color: #3776ab;
}

.sql-icon {
  color: #f29111;
}

.django-icon {
  color: #0c4b33;
}

.tailwind-icon {
  color: #38bdf8;
}

.git-icon {
  color: #ff5a36;
}

.html-icon {
  color: #ff6b35;
}

.js-icon {
  color: #ffd43b;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.7s ease;
}

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

.typing-text {
  display: inline-block;
  color: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--gold);
  animation:
    typing 4s steps(38) infinite alternate,
    blink 0.7s infinite;
}

.project-card {
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 200, 61, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s ease;
  pointer-events: none;
}

.project-card:hover::before {
  transform: translateX(100%);
}

.btn.primary,
.hire-btn {
  position: relative;
  overflow: hidden;
}

.btn.primary::before,
.hire-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
}

.btn.primary:hover::before,
.hire-btn:hover::before {
  animation: shine 0.8s ease;
}

.cursor-glow {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #ffc83d;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
  filter: blur(6px);
  animation: fadeGlow 0.6s linear forwards;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd95c, #ffb72d);
  width: 0%;
  z-index: 9999;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 61, 0.55);
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd95c, #ffb72d);
  color: #111;
  font-weight: 900;
  margin-bottom: 16px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Animations */
.hero-content {
  animation: slideLeft 0.9s ease forwards;
}

.hero-image {
  animation: slideRight 0.9s ease forwards;
}

.eyebrow {
  animation: fadeDown 0.8s ease forwards;
}

.hero h1 {
  animation: fadeUp 0.9s ease forwards;
}

.hero h2 {
  animation: fadeUp 1s ease forwards;
}

.hero p {
  animation: fadeUp 1.1s ease forwards;
}

.hero-tags span {
  animation: popIn 0.6s ease forwards;
}

.hero-buttons {
  animation: fadeUp 1.2s ease forwards;
}

.clients {
  animation: fadeUp 1.3s ease forwards;
}

.planet {
  animation: pulseGlow 4s ease-in-out infinite;
}

.orbit {
  animation: orbitMove 7s linear infinite;
}

.profile-img {
  animation:
    float 4s ease-in-out infinite,
    profileGlow 3s ease-in-out infinite;
}

.tech-strip {
  animation: fadeUp 1.4s ease forwards;
}

/* Hover Effects */
.hero-tags span:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 200, 61, 0.25);
}

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

.avatars img {
  transition: 0.3s ease;
}

.avatars img:hover {
  transform: translateY(-6px) scale(1.15);
  z-index: 5;
}

/* Keyframes */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(55px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 70px rgba(255, 190, 39, 0.35);
  }
  50% {
    box-shadow: 0 0 130px rgba(255, 190, 39, 0.75);
  }
}

@keyframes orbitMove {
  from {
    transform: rotate(-22deg);
  }
  to {
    transform: rotate(338deg);
  }
}

@keyframes profileGlow {
  0%,
  100% {
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65));
  }
  50% {
    filter: drop-shadow(0 35px 70px rgba(255, 200, 61, 0.45));
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 38ch;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes shine {
  from {
    left: -90%;
  }
  to {
    left: 130%;
  }
}

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

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

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

@keyframes fadeGlow {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 980px) {
  .menu-btn {
    display: grid;
    place-items: center;
  }

  .download-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    padding: 20px;

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

    background: rgba(8, 10, 16, 0.88);
    border: 1px solid var(--border);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-image {
    height: 380px;
    align-items: center;
    margin-top: 10px;
  }

  .profile-img {
    width: 320px;
    height: 320px;
    margin-bottom: 0;
  }

  .planet {
    width: 300px;
    height: 300px;
    top: 40px;
  }

  .orbit {
    width: 360px;
    height: 140px;
    top: 120px;
  }

  .projects,
  .services,
  .about-skills,
  .footer-grid,
  .contact-card,
  .pricing-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .about {
    border-right: 0;
    padding-right: 0;
  }

  .tech-strip,
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    margin-top: 20px;
  }

  .navbar {
    top: 10px;
    height: auto;
    min-height: 72px;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    padding-top: 20px;
    gap: 10px;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-image {
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 310px;
    margin-top: 0;
  }

  .profile-img {
    width: 250px;
    height: 250px;
    margin-bottom: 0;
  }

  .planet {
    width: 230px;
    height: 230px;
    top: 35px;
  }

  .orbit {
    width: 285px;
    height: 105px;
    top: 110px;
  }

  .skill-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form,
  .cta,
  .pricing-card,
  .testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .hire-btn {
    justify-content: center;
  }

  .hire-btn {
    padding: 12px 16px;
  }
}

@media (max-width: 360px) {
  .profile-img {
    width: 220px;
    height: 220px;
  }

  .hero-image {
    height: 280px;
  }
}
