@font-face {
  font-family: space-grotesk;
  src: url(/fonts/SpaceGrotesk-VariableFont_wght.ttf);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: space-grotesk;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(169deg, #0b0b12, #111827);
  color: #f4f4f5;
}
header {
  padding: 24px;
  background: #0b0b12;
  border-bottom: #282e3b solid 1px;
  position: sticky;
  top: 0;
  z-index: 3;
}
.menu {
  display: flex;
  justify-content: center;
  text-align: center;
}
.menu .item a {
  position: relative;
  color: #00eaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu .item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #00eaff;
  transition: width 0.3s ease;
}

.menu .item a:hover::after {
  width: 100%;
}

.menu .item {
  width: auto;
  padding: 0 40px;
  height: 40px;
  font-size: 25px;
  border-right: #282e3b solid 1px;
  border-left: #282e3b solid 1px;
}
.menu .item a:link,
.banners .item a:link,
.menu .item a:visited,
.banners .item a:visited {
  color: #f4f4f5;
  text-decoration: none;
  cursor: pointer;
}
.menu .item a:active,
.menu .item a:hover {
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: #ccf8ff 0 0 20px;
}
.hero {
  margin: 0 80px;
  height: 700px;
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
}
.hero > .texts > h1 {
  font-size: 64px;
  font-weight: normal;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 32.5px #ccf8ff;
}
.hero > .texts > h2 {
  margin-left: 107px;
  font-size: 24px;
  font-weight: normal;
}
.hero > .texts > p {
  width: 500px;
  font-size: 24px;
  margin-top: 84px;
}
.hero .img img {
  width: 305px;
  height: 417px;
  border-radius: 22px;
}
.hero > .img > h1 {
  text-align: center;
  font-size: 24px;
}
.hero > .img > h2 {
  text-align: center;
  font-size: 29px;
}
.about-me {
  margin: 0 80px;
  height: 850px;
}
.about-me > h1,
.skills-section > h1,
.offer > h1,
.reach > h1 {
  font-size: 48px;
  text-decoration: underline #38bdf8;
}
.about-me .about {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.about-me .about img {
  width: 630px;
  height: 630px;
  border-radius: 108px;
}
.about-me .about p {
  font-size: 24px;
}
.skills-section {
  margin: 0 80px;
  height: 700px;
  color: #f4f4f5;
}
.skills-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 20px;
  justify-content: center;
}
.skill-group {
  background: #111827;
  border-radius: 108px;
  width: 504px;
  height: 504px;
}

.skills-container h3 {
  text-align: center;
  font-size: 24px;
  font-weight: normal;
}

.skills-grid1 {
  margin: 40px 30px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-items: center;
  row-gap: 40px;
  column-gap: 56px;
}
.skills-grid2 {
  margin: 32px 24px;
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  row-gap: 40px;
  column-gap: 56px;
}
.skills-grid2-1 {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
  row-gap: 40px;
  column-gap: 56px;
}

.skill {
  width: 200px;
  height: 200px;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(#38bdf8 0deg, #111827 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle::before {
  z-index: 1;
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: #111827;
  border-radius: 50%;
  box-shadow: #000000 0 0 4px;
}

.circle span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: #f4f4f5;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

/* Skill percentage classes */
.p0 {
  background: conic-gradient(#38bdf8 0deg, #111827 0deg);
}
.p20 {
  background: conic-gradient(#38bdf8 72deg, #111827 72deg);
}
.p35 {
  background: conic-gradient(#38bdf8 126deg, #111827 126deg);
}
.p60 {
  background: conic-gradient(#38bdf8 216deg, #111827 216deg);
}
.p65 {
  background: conic-gradient(#38bdf8 234deg, #111827 234deg);
}
.p75 {
  background: conic-gradient(#38bdf8 270deg, #111827 270deg);
}
.p85 {
  background: conic-gradient(#38bdf8 306deg, #111827 306deg);
}
.offer {
  margin: 0 80px;
  height: 850px;
}
.offer .banners {
  padding-top: 42px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.offer .item {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer .item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.1);
}
.offer .item button {
  margin-top: 1rem;
  background: linear-gradient(to right, #00eaff, #7f5af0);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer .item button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #00eaff;
}
.banners .item {
  background-color: #111827;
  width: 180px;
  height: 600px;
  border-radius: 30px;
  padding: 80px 15px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.banners .item img {
  width: 80%;
}
.banners .item h3 {
  font-size: 24px;
  font-weight: 400;
}
.banners .item p {
  font-size: 18px;
  font-weight: 300;
}
.banners .item button {
  width: 100px;
  height: 42px;
  border-radius: 12px;
  background: #38bdf8;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.banners .item a:link,
.banners .item a:visited {
  color: #0b0b12;
}
.reach {
  margin: 0 80px;
  height: 500px;
}
form {
  padding-top: 105px;
  display: flex;
  justify-content: space-around;
}
input,
label {
  display: block;
  color: #f4f4f5;
}
.left input {
  width: 417px;
  height: 64px;
  border-radius: 24px;
  background: none;
  border: 3px solid transparent;
  background: linear-gradient(to right, #111827, #111827),
    linear-gradient(90deg, #38bdf8, #f4f4f5);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  font-size: 24px;
  padding-left: 15px;
}
.right textarea {
  color: #f4f4f5;
  width: 417px;
  height: 224px;
  border-radius: 30px;
  background: none;
  background: none;
  border: 3px solid transparent;
  background: linear-gradient(to right, #111827, #111827),
    linear-gradient(90deg, #38bdf8, #f4f4f5);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  font-size: 30px;
  padding-left: 15px;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 7px #22d3ee;
}
label {
  font-size: 20px;
}
#email {
  margin-top: 72px;
}
.reach button {
  margin-left: 35%;
  margin-top: 76px;
  width: 244px;
  height: 80px;
  border-radius: 30px;
  border: none;
  background: #38bdf8;
  font-size: 48px;
  cursor: pointer;
}
.reach button:hover,
.footer button:hover {
  box-shadow: #22d3ee 0 0 20px;
  transition: all 0.3s ease;
}
.item button:hover {
  box-shadow: #22d3ee 0 0 20px;
  transition: all 0.3s ease;
}
.footer {
  display: flex;
  justify-content: right;
  align-items: end;
  gap: 24px;
  margin-right: 20px;
  position: sticky;
  bottom: 50px;
  z-index: 3;
  pointer-events: none;
}
.footer button {
  width: 197px;
  height: 64px;
  border-radius: 30px;
  border: none;
  background: #38bdf8;
  font-size: 24px;
  cursor: pointer;
  pointer-events: auto;
}
.socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}
/* Keep all your original desktop styles here */
/* Only modifying the media queries below */

@media screen and (max-width: 1024px) {
  header {
    padding: 16px;
  }

  .menu {
    flex-wrap: wrap;
    gap: 8px;
  }

  .menu .item {
    padding: 0 20px;
    font-size: 18px;
    height: auto;
  }

  .hero {
    margin: 0 40px;
    padding-top: 60px;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero > .texts {
    text-align: center;
  }

  .hero > .texts > h1 {
    font-size: 42px;
  }

  .hero > .texts > h2 {
    margin-left: 0;
    font-size: 18px;
  }

  .hero > .texts > p {
    width: 100%;
    max-width: 500px;
    font-size: 18px;
    margin-top: 30px;
  }

  .hero .img img {
    width: 250px;
    height: auto;
  }
  .hero .img h1 {
    font-size: 16px;
  }
  .hero .img h2 {
    font-size: 20px;
  }

  .about-me {
    margin: 0 40px;
    height: auto;
    padding: 60px 0;
  }

  .about-me .about {
    flex-direction: column;
    gap: 30px;
  }

  .about-me .about img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .about-me .about p {
    font-size: 18px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .skills-section {
    margin: 0 40px;
    height: auto;
    padding: 60px 0;
  }

  .skills-container {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .skill-group {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  .skill {
    width: 150px;
    height: 150px;
  }

  .circle {
    width: 150px;
    height: 150px;
  }

  .offer {
    margin: 0 40px;
    height: auto;
    padding: 60px 0;
  }

  .offer .banners {
    display: grid;
    grid-template-columns: auto auto;
  }

  .banners .item {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .banners .item img {
    width: 60%;
    height: 60%;
  }

  .reach {
    margin: 0 40px;
    height: auto;
    padding: 60px 0;
  }

  form {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }

  .left input {
    width: 100%;
    max-width: 400px;
  }

  .right textarea {
    width: 100%;
    max-width: 400px;
  }

  .reach button {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 12px;
    height: auto;
  }

  .menu .item {
    font-size: 12px;
    padding: 0 12px;
    height: 30px;
  }

  .hero {
    margin: 0 20px;
    padding-top: 40px;
    height: auto;
  }

  .hero > .texts > h1 {
    font-size: 32px;
  }

  .hero > .texts > h2 {
    font-size: 14px;
    margin-left: 0;
  }

  .hero > .texts > p {
    font-size: 14px;
    width: 100%;
    margin-top: 20px;
  }

  .hero .img img {
    width: 180px;
    height: auto;
  }

  .hero .img h1 {
    font-size: 12px;
  }

  .hero .img h2 {
    font-size: 18px;
  }

  .about-me {
    margin: 0 20px;
    height: auto;
    padding: 40px 0;
  }

  .about-me > h1,
  .skills-section > h1,
  .offer > h1,
  .reach > h1 {
    font-size: 24px;
  }

  .about-me .about p {
    font-size: 14px;
  }

  .skills-section {
    margin: 0 20px;
    height: auto;
    padding: 40px 0;
  }

  .skill {
    width: 120px;
    height: 120px;
  }

  .circle {
    width: 120px;
    height: 120px;
  }

  .circle span {
    font-size: 16px;
  }

  .offer {
    margin: 0 20px;
    height: auto;
    padding: 40px 0;
  }

  .offer .banners {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .banners .item {
    width: 100%;
    height: auto;
    padding: 20px 10px;
  }
  .banners .item img {
    width: 40%;
    height: 40%;
  }

  .banners .item h3 {
    font-size: 14px;
  }

  .banners .item p {
    font-size: 12px;
  }

  .banners .item button {
    width: 80px;
    height: 30px;
    font-size: 12px;
  }

  .reach {
    margin: 0 20px;
    height: auto;
    padding: 40px 0;
  }

  .reach button {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }

  .footer button {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }

  .socials img {
    width: 20px;
    height: 20px;
  }
}
