:root {
  --main-color: aqua;
  --second-color: rgb(85, 105, 105);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */

header .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 100px;
  padding-right: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .container .logo {
  text-align: center;
  line-height: 1.5;
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 999;
}

header .container .logo i {
  font-size: 20px;
  font-weight: 900;
  color: aqua;
}

header .container .logo h1 {
  font-size: 20px;
  font-weight: 900;
}

header .container nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

header .container .menu i {
  font-size: 30px;
  font-weight: 900;
}

header .container .menu {
  display: none;
}

header .container nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

header .container nav ul li {
  padding: 10px;
}

header .container nav ul li.hide {
  display: none;
}

header .container nav ul li a {
  color: black;
  font-size: 16px;
  font-weight: 700;
  z-index: 999;
}

header .container .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px black solid;
  border-radius: 20px;
  z-index: 999;
  height: fit-content;
  padding: 10px 10px;
}

header .container .contact a {
  font-size: 16px;
  font-weight: 900;
  color: black;
  margin: 0;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

header .container .contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
}

header .container .contact i {
  font-size: 16px;
  border: 2px aqua solid;
  border-radius: 50%;
  background-color: aqua;
  padding: 5px;
  margin: 0;
}

/* HERO PAGE */

.heroPage .container {
  position: relative;
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 200px;
  overflow: hidden;
}

.heroPage .container .text {
  position: relative;
  line-height: 2;
  z-index: 999;
}

.heroPage .container .text h1 {
  margin-bottom: 0;
}

.heroPage .container .text h2 span {
  color: var(--main-color);
  font-weight: 900;
  text-shadow:
    var(--main-color) 1px 1px 2px,
    #444 0px 0px 1px;
  font-size: 28px;
}

.heroPage .container .text h3 {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.heroPage .container .btns {
  margin-top: 70px;
  margin-bottom: 180px;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 999;
}

.heroPage .container .btns .view a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, aqua 0%, #00d4ff 100%);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.heroPage .container .btns .view a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.heroPage .container .btns .view a:hover::before {
  left: 100%;
}

.heroPage .container .btns .view a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

.heroPage .container .btns .hire-me a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00d4ff 0%, aqua 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.heroPage .container .btns .hire-me a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.heroPage .container .btns .hire-me a:hover::before {
  left: 100%;
}

.heroPage .container .btns .hire-me a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

.heroPage .container .balls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.heroPage .container .balls .ball {
  background-color: aqua;
  position: absolute;
  opacity: 0.6;
  filter: blur(80px);
}

.heroPage .container .balls .one {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 10%;
  left: 15%;
  animation: float1 8s ease-in-out infinite;
}

.heroPage .container .balls .two {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: 5%;
  left: 20%;
  animation: float2 10s ease-in-out infinite;
}

.heroPage .container .balls .three {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  animation: float3 12s ease-in-out infinite;
}

.heroPage .container .balls .four {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: float4 9s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 30px) scale(0.9);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -40px) scale(1.15);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(0.95);
  }
}

/* SPACE DIVIDER */

.space {
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 229, 255, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.space::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    aqua 50%,
    transparent 100%
  );
  animation: lineMove 3s ease-in-out infinite;
}

@keyframes lineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* FEATURES */

.features {
  padding: 30px 0;
  background: linear-gradient(
    180deg,
    rgba(0, 229, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  position: relative;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.features .card {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 229, 255, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.features .card:hover::before {
  left: 100%;
}

.features .card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: aqua;
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
}

.features .card i {
  font-size: 50px;
  color: aqua;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}

.features .card:hover i {
  transform: rotateY(360deg) scale(1.2);
  color: #00d4ff;
}

.features .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s ease;
}

.features .card:hover h3 {
  color: aqua;
}

.features .card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}

.features .card.one {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.features .card.two {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.features .card.three {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.features .card.four {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.features .card.five {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.features .card.six {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

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

/* ABOUT ME */

.about {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 229, 255, 0.03) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.about .container .image {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 450px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.2) 0%,
    rgba(0, 229, 255, 0.05) 100%
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
  border: 2px solid rgba(0, 229, 255, 0.3);
  transition: all 0.4s ease;
}

.about .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about .container .image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 229, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about .container .image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(0, 229, 255, 0.4);
}

.about .container .text {
  opacity: 0;
  transform: translateX(50px);
}

.about .container .fade-in {
  opacity: 1;
  transform: translateX(0);
}

.about .container .text p {
  font-size: 18px;
  line-height: 2;
  color: #444;
  font-weight: 400;
  text-align: justify;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about .container .text p::before {
  content: '"';
  font-size: 120px;
  font-family: "Dancing Script", cursive;
  color: rgba(0, 229, 255, 0.1);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.about .container .text p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, aqua 0%, transparent 100%);
}

.about .container .cv {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.about .container .cv .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, aqua 0%, #00d4ff 100%);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  cursor: pointer;
}

.about .container .cv .download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.about .container .cv .download-btn:hover::before {
  left: 100%;
}

.about .container .cv .download-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

.about .container .cv .download-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.about .container .cv .download-btn:hover i {
  transform: translateY(3px);
}

/* SECTION HEADER (Shared) */

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

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: aqua;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}

/* SKILLS */

.skills {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 229, 255, 0.05) 100%
  );
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.skill-card:hover {
  transform: translateY(-10px);
  border-color: aqua;
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.3);
}

.skill-card i {
  font-size: 50px;
  color: aqua;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.skill-card:hover i {
  transform: scale(1.2);
  color: #00d4ff;
}

.skill-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* PROJECTS */

.projects {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    rgba(0, 229, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.3);
  border-color: aqua;
}

.project-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1) 0%,
    rgba(0, 229, 255, 0.05) 100%
  );
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 229, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-link {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: aqua;
  font-size: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.project-link:hover {
  transform: scale(1.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.project-info {
  padding: 30px;
}

.project-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 48px;
}

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

.project-tags span {
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.project-tags span:hover {
  background: rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

.code-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #00d4ff 0%, aqua 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.code-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

/* FOOTER */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 0 20px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section.about {
  padding: 10px;
}

.footer-section.about .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-section.about .logo i {
  font-size: 24px;
  color: aqua;
}

.footer-section.about .logo h2 {
  font-size: 24px;
  font-weight: 700;
}

.footer-section.about p {
  font-size: 15px;
  line-height: 1.8;
  color: #bbb;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: aqua;
}

.footer-section.links ul li {
  margin-bottom: 12px;
}

.footer-section.links ul li a {
  color: #bbb;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section.links ul li a:hover {
  color: aqua;
  padding-left: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(0, 229, 255, 0.1);
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: aqua;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: aqua;
  color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
}

/* MEDIA QUERIES */

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
  /* Header */
  header .container {
    padding: 0 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .container .logo h1 {
    font-size: 17px;
  }

  header .container .logo i {
    font-size: 17px;
  }

  header .container .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: auto;
  }

  header .container .menu i {
    font-size: 26px;
    color: #333;
  }

  header .container nav {
    position: absolute;
  }

  header .container nav ul {
    background-color: #fff;
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  header .container nav ul.show {
    display: flex;
  }

  header .container nav ul li {
    padding: 0;
    text-align: left;
    width: 100%;
  }

  header .container nav ul li a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  header .container nav ul li:last-child a {
    border-bottom: none;
  }

  header .container nav ul li a:hover {
    color: aqua;
    background: rgba(0, 229, 255, 0.06);
  }

  header .container .contact {
    display: none;
  }

  header .container nav ul li.hide {
    display: block;
  }

  /* Hero */
  .heroPage {
    height: 100vh;
    margin-top: -40px;
  }

  .heroPage .container {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .heroPage .container .text h1 {
    font-size: 26px;
  }

  .heroPage .container .text h2 {
    font-size: 18px;
  }

  .heroPage .container .text h2 span {
    font-size: 20px;
    display: block;
    margin-top: 4px;
  }

  .heroPage .container .text h3 {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
  }

  .heroPage .container .btns {
    margin-top: 40px;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .heroPage .container .btns .view a,
  .heroPage .container .btns .hire-me a {
    font-size: 16px;
    padding: 13px 32px;
  }

  .heroPage .container .balls .one {
    width: 100px;
    height: 100px;
  }

  .heroPage .container .balls .two {
    width: 180px;
    height: 180px;
  }

  .heroPage .container .balls .three {
    width: 160px;
    height: 160px;
  }

  .heroPage .container .balls .four {
    width: 140px;
    height: 140px;
  }

  /* Space */
  .space {
    height: 50px;
  }

  /* Features */
  .features {
    padding: 50px 0;
  }

  .features .container {
    padding: 0 15px;
  }

  .features .cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .features .card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .features .card i {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .features .card h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .features .card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Section Header */
  .section-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
    margin-top: 15px;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .about::before {
    width: 250px;
    height: 250px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .about .container .image {
    aspect-ratio: unset;
    height: 280px;
    max-height: unset;
    border-radius: 18px;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
  }

  .about .container .text p {
    font-size: 14px;
    line-height: 1.8;
    padding: 28px 20px 24px;
    text-align: left;
    border-radius: 16px;
  }

  .about .container .text p::before {
    font-size: 70px;
    top: -5px;
    left: 8px;
  }

  .about .container .cv .download-btn {
    padding: 13px 30px;
    font-size: 15px;
    border-radius: 40px;
  }

  .about .container .cv .download-btn i {
    font-size: 16px;
  }

  /* Skills */
  .skills {
    padding: 60px 0;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 15px;
  }

  .skill-card {
    padding: 28px 12px;
    border-radius: 16px;
  }

  .skill-card i {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .skill-card h3 {
    font-size: 15px;
  }

  /* Projects */
  .projects {
    padding: 60px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 15px;
  }

  .project-image {
    height: 210px;
  }

  .project-info {
    padding: 22px 18px;
  }

  .project-info h3 {
    font-size: 20px;
  }

  .project-info p {
    font-size: 14px;
  }

  .project-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* Footer */
  footer {
    padding: 50px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-section.about .logo h2 {
    font-size: 20px;
  }

  .footer-section.about p {
    font-size: 14px;
  }

  .footer-section h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .footer-section.links ul li a {
    font-size: 14px;
  }

  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* Mobile Medium (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  /* Header */
  header .container {
    padding: 0 25px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .container nav {
    position: absolute;
  }

  header .container .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: auto;
  }

  header .container .menu i {
    font-size: 26px;
    color: #333;
  }


  header .container nav ul {
    background-color: #fff;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-bottom: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  header .container nav ul.show {
    display: flex;
    z-index: 1001;
  }

  header .container nav ul li {
    padding: 0;
    text-align: left;
  }

  header .container nav ul li a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  header .container nav ul li:last-child a {
    border-bottom: none;
  }

  header .container nav ul li a:hover {
    color: aqua;
    background: rgba(0, 229, 255, 0.06);
  }

  header .container .contact {
    display: none;
  }

  header .container nav ul li {
    display: block;
  }

  header .container nav ul li.hide {
    display: block;
  }

  /* Hero */
  .heroPage {
    height: 100vh;
  }

  .heroPage .container {
    padding-left: 25px;
    padding-right: 25px; 
  }

  .heroPage .container .text h1 {
    font-size: 30px;
  }

  .heroPage .container .text h2 {
    font-size: 22px;
  }

  .heroPage .container .text h2 span {
    font-size: 24px;
  }

  .heroPage .container .text h3 {
    font-size: 15px;
  }

  .heroPage .container .btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
  }

  /* Space */
  .space {
    height: 70px;
  }

  /* Features */
  .features {
    padding: 60px 0;
  }

  .features .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features .card {
    padding: 32px 22px;
  }

  /* Section Header */
  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* About */
  .about {
    padding: 70px 0;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about .container .image {
    max-height: 320px;
    max-width: 280px;
    margin: 0 auto;
  }

  .about .container .text p {
    font-size: 15px;
    padding: 30px 22px;
  }

  /* Skills */
  .skills {
    padding: 70px 0;
  }

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

  /* Projects */
  .projects {
    padding: 70px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Header */
  header .container {
    padding-left: 40px;
    padding-right: 40px;
    height: 80px;
    padding-top: 0;
    align-items: center;
  }

  header .container nav ul li a {
    font-size: 14px;
  }

  /* Hero */
  .heroPage .container {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 160px;
  }

  .heroPage .container .text h1 {
    font-size: 34px;
  }

  .heroPage .container .text h2 {
    font-size: 26px;
  }

  /* Features */
  .features .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Section Header */
  .section-header h2 {
    font-size: 36px;
  }

  /* About */
  .about .container {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }

  .about .container .image {
    max-height: 380px;
  }

  .about .container .text p {
    font-size: 16px;
    padding: 35px 28px;
  }

  /* Skills */
  .skills-grid {
    gap: 22px;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  /* Hero */
  .heroPage .container .balls .one {
    width: 250px;
    height: 250px;
  }

  .heroPage .container .balls .two {
    width: 500px;
    height: 500px;
  }

  .heroPage .container .balls .three {
    width: 500px;
    height: 500px;
  }

  .heroPage .container .balls .four {
    width: 450px;
    height: 450px;
  }

  /* Features */
  .features .container {
    max-width: 1400px;
  }

  .features .cards {
    gap: 40px;
  }

  .features .card {
    padding: 50px 35px;
  }

  .features .card i {
    font-size: 60px;
  }

  .features .card h3 {
    font-size: 26px;
  }

  .features .card p {
    font-size: 16px;
  }

  /* About */
  .about {
    padding: 120px 0;
  }

  .about::before {
    width: 800px;
    height: 800px;
  }

  .about .container {
    max-width: 1400px;
    gap: 60px;
  }

  .about .container .image {
    max-height: 500px;
  }

  .about .container .text p {
    font-size: 20px;
    line-height: 2.2;
    padding: 50px 45px;
  }

  .about .container .text p::before {
    font-size: 140px;
  }

  .about .container .cv .download-btn {
    padding: 18px 50px;
    font-size: 20px;
  }

  .about .container .cv .download-btn i {
    font-size: 22px;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 48px;
  }

  .section-header p {
    font-size: 20px;
  }

  /* Skills */
  .skills {
    padding: 120px 0;
  }

  .skills-grid {
    max-width: 1000px;
    gap: 35px;
  }

  .skill-card {
    padding: 50px 25px;
  }

  .skill-card i {
    font-size: 60px;
  }

  .skill-card h3 {
    font-size: 22px;
  }

  /* Projects */
  .projects {
    padding: 120px 0;
  }

  .projects-grid {
    max-width: 1400px;
    gap: 45px;
  }

  .project-info {
    padding: 35px;
  }

  .project-info h3 {
    font-size: 26px;
  }

  .project-info p {
    font-size: 16px;
  }

  /* Footer */
  footer {
    padding: 80px 0 25px;
  }

  footer .container {
    max-width: 1400px;
  }

  .footer-content {
    gap: 60px;
    margin-bottom: 50px;
  }

  .footer-section.about .logo h2 {
    font-size: 26px;
  }

  .footer-section.about p {
    font-size: 16px;
  }

  .footer-section h3 {
    font-size: 22px;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
