* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

/* ===============================
   BODY
================================ */
body {
  background: #000;
  color: #fff;
  font-family: "Dogica", monospace;
  overflow-x: hidden;
}

/* ===============================
   BACKGROUND VIDEO
================================ */
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.3;
  filter: brightness(0.4) contrast(1.2);
}

/* ===============================
   NAVBAR
================================ */
nav {
  height: 80px;
  padding: 0 120px;
  display: flex;
  position: sticky;
  top: 0;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border-bottom: 3px solid #1a1a1a;
}

nav::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      orangered 0%,
      orangered 25%,
      black 25%,
      black 50%,
      orangered 50%,
      orangered 75%,
      black 75%,
      black 100%) 0 0 / 24px 3px;
  animation: pixelMove 1.2s linear infinite;
}

.logo {
  position: relative;
  z-index: 2;
}

.logo img {
  height: 80px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.3));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.nav-links {
  display: flex;
  gap: 35px;
  position: relative;
  z-index: 2;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  color: #ff6b35;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  padding: 10px 18px;
  transition: all 0.1s;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: orangered;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
  z-index: -1;
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #000;
  text-shadow: none;
}

@keyframes pixelMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 24px 0;
  }
}

/* ===============================
   INTRO SECTION
================================ */
#intro {
  min-height: calc(100vh - 80px);
  position: relative;
  z-index: 1;
  scroll-margin-top: 80px;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  min-height: calc(100vh - 80px);
  padding: 60px 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-weight: bold;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 19px;
  line-height: 1.8;
  margin: 0 0 24px 0;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.btn {
  padding: 11px 18px;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid orangered;
  display: inline-block;
  transition: all 0.2s;
}

.btn.ghost {
  color: #aaa;
  border-color: #555;
}

.btn.solid {
  background: orangered;
  color: black;
}

.hero-image {
  width: auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 480px;
  height: auto;
  image-rendering: pixelated;
  user-select: none;
  -webkit-user-drag: none;
  animation: characterFloat 3s ease-in-out infinite;
}

@keyframes characterFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255, 69, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) scale(0.9);
  }
}

/* ===============================
   ABOUT SECTION
================================ */
#about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 120px;
  position: relative;
  scroll-margin-top: 80px;
  background:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(255, 69, 0, 0.03) 2px,
      rgba(255, 69, 0, 0.03) 4px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 2px,
      rgba(255, 69, 0, 0.03) 2px,
      rgba(255, 69, 0, 0.03) 4px);
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 40px, 40px 0;
  }
}

#about::before,
#about::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid orangered;
  animation: cornerPulse 2s ease-in-out infinite;
}

#about::before {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

#about::after {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

@keyframes cornerPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.container {
  max-width: 900px;
  width: 100%;
  padding: 48px;
  position: relative;
  background: rgba(10, 10, 10, 0.95);
  border: 5px dashed orangered;
  box-shadow:
    0 0 20px rgba(255, 106, 0, 0.3),
    inset 0 0 60px rgba(255, 69, 0, 0.05);
  animation: containerFloat 6s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes containerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  75% {
    transform: translateY(8px) rotate(-0.5deg);
  }
}

.section-heading {
  text-align: center;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 40px;
  padding: 20px 0;
}

.section-heading::before,
.section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      rgb(44, 43, 43),
      transparent);
  animation: lineExpand 2s ease-in-out infinite;
}

.section-heading::before {
  top: 0;
  width: 60%;
}

.section-heading::after {
  bottom: 0;
  width: 80%;
  animation-delay: 1s;
}

@keyframes lineExpand {
  0%,
  100% {
    width: 40%;
    opacity: 0.5;
  }
  50% {
    width: 90%;
    opacity: 1;
  }
}

.about-list {
  list-style: none;
  line-height: 1.8;
  font-size: 1rem;
  counter-reset: list-counter;
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

.about-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  counter-increment: list-counter;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.about-list li::before {
  content: counter(list-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #ff6a00;
  color: #000;
  font-weight: bold;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  animation: numberFloat 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.about-list li:nth-child(1) {
  --i: 1;
}

.about-list li:nth-child(2) {
  --i: 2;
}

.about-list li:nth-child(3) {
  --i: 3;
}

.about-list li:nth-child(4) {
  --i: 4;
}

.about-list li:nth-child(5) {
  --i: 5;
}

.about-list li:nth-child(6) {
  --i: 6;
}

.about-list li:nth-child(7) {
  --i: 7;
}

.about-list li:nth-child(8) {
  --i: 8;
}

.about-list li:nth-child(9) {
  --i: 9;
}

@keyframes numberFloat {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
  }
}

.about-list li:hover {
  padding-left: 44px;
  border-left-color: #ff6a00;
  background: rgba(255, 106, 0, 0.05);
}

.about-list li:hover::before {
  transform: translateY(-50%) rotate(360deg) scale(1.15);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.8);
}

.about-list strong {
  color: #ff6a00;
  text-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
  font-weight: bold;
  display: inline-block;
  transition: all 0.2s;
}

.about-list li:hover strong {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 106, 0, 0.8);
  transform: scale(1.05);
}

.about-list a {
  color: orangered;
  text-decoration: none;
  padding: 2px 6px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  margin: 0 2px;
  transition: all 0.2s;
  display: inline-block;
}

.about-list a:hover {
  background: #ff6a00;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 106, 0, 0.4);
}

.findMe {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
  margin-top: 30px;
}

.findMe span {
  color: gray;
  font-size: 1rem;
}

.findMe img {
  height: 1.5rem;
  width: auto;
  margin-right: 8px;
}

.findMe a {
  color: gray;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.findMe a:hover {
  color: #ff6b00;
}

/* ===============================
   PROJECTS SECTION
================================ */
#projects {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 40px);
  padding: 80px 120px;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: #ff6a00;
}

.project-card {
  width: 100%;
  max-width: 600px;
  padding: clamp(20px, 3vw, 24px);
  background: #0b0b0b;
  border: 2px dashed orangered;
  border-radius: 12px;
  color: #eaeaea;
  font-family: monospace;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.35);
}

.project-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 1px;
  color: #ffffff;
}

.project-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: bold;
  line-height: 1.6;
  color: #bdbdbd;
  margin-bottom: 18px;
}

.project-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.project-tech span {
  font-size: clamp(11px, 1.5vw, 12px);
  padding: 4px 10px;
  border: 1px solid #ff7a00;
  border-radius: 20px;
  color: #ff7a00;
}

.project-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.project-links a {
  text-decoration: none;
  font-size: clamp(12px, 1.6vw, 13px);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  min-width: 100px;
}

.project-links a:hover {
  background: #ff7a00;
  color: #000;
}

/* ===============================
   SKILLS SECTION
================================ */
#skills {
  min-height: 100vh;
  padding: 100px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ===============================
   SKILL CARD
================================ */
#skills .card {
  width: 260px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-family: "Dogica", monospace;
  text-transform: uppercase;

  background: rgba(15, 15, 15, 0.95);
  color: #eaeaea;

  border: 3px dashed #ff6a00;
  box-shadow:
    0 0 15px rgba(255, 106, 0, 0.25),
    inset 0 0 20px rgba(255, 69, 0, 0.05);

  position: relative;
  transition: all 0.3s ease;
  animation: skillFloat 4s ease-in-out infinite;
}

/* Slight delay for each card */
#skills .card:nth-child(3) {
  animation-delay: 0.2s;
}

#skills .card:nth-child(5) {
  animation-delay: 0.4s;
}

#skills .card:nth-child(7) {
  animation-delay: 0.6s;
}

#skills .card:nth-child(9) {
  animation-delay: 0.8s;
}

/* Hover effect */
#skills .card:hover {
  transform: translateY(-6px) scale(1.03);
  color: #000;
  background: #ff6a00;
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.9);
}

/* Glow line effect */
#skills .card::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -6px;
  width: 80%;
  height: 6px;
}

#skills .card:hover::after {
  opacity: 1;
}

/* Floating animation */
@keyframes skillFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  min-height: 100vh;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Form Box */
.contact-form,
.contact-section form {
  width: 100%;
  max-width: 500px;
  padding: 40px;

  background: rgba(10, 10, 10, 0.95);
  border: 4px dashed #ff6a00;
  box-shadow:
    0 0 25px rgba(255, 106, 0, 0.35),
    inset 0 0 40px rgba(255, 69, 0, 0.05);

  display: flex;
  flex-direction: column;
  gap: 20px;

  animation: containerFloat 6s ease-in-out infinite;
}

@keyframes containerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Inputs & Textarea */
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px 14px;

  background: #000;
  color: #fff;
  font-family: "Dogica", monospace;
  font-size: 13px;

  border: 2px solid #333;
  outline: none;

  transition: all 0.25s ease;
}

/* Placeholder */
.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #777;
}

/* Focus effect */
.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.7);
}

/* Textarea height */
.contact-section textarea {
  min-height: 120px;
  resize: none;
}

/* Submit Button */
.contact-section button {
  margin-top: 10px;
  padding: 12px 20px;

  font-family: "Dogica", monospace;
  font-size: 14px;
  text-transform: uppercase;

  background: #ff6a00;
  color: #000;
  border: 2px solid #ff6a00;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Button Hover */
.contact-section button:hover {
  background: #000;
  color: #ff6a00;
  box-shadow: 0 0 25px rgba(255, 106, 0, 0.9);
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE - TABLET
================================ */
@media (max-width: 1024px) {
  #skills {
    padding: 80px 60px;
  }

  .contact-section {
    padding: 70px 60px;
  }
}

/* ===============================
   RESPONSIVE - MOBILE LARGE
================================ */
@media (max-width: 768px) {
  #skills {
    padding: 60px 30px;
  }

  #skills .section-title {
    font-size: 1.6rem;
  }

  #skills .card {
    width: 100%;
    max-width: 280px;
    font-size: 13px;
    padding: 14px;
  }

  .contact-section {
    padding: 60px 30px;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-form,
  .contact-section form {
    padding: 30px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 12px;
    padding: 10px 12px;
  }

  .contact-section button {
    font-size: 13px;
    padding: 11px 18px;
  }
}

/* ===============================
   RESPONSIVE - MOBILE SMALL
================================ */
@media (max-width: 480px) {
  #skills {
    padding: 50px 20px;
    gap: 15px;
  }

  #skills .section-title {
    font-size: 1.3rem;
    padding: 10px 20px;
  }

  #skills .card {
    font-size: 12px;
    padding: 12px;
    max-width: 100%;
    border-width: 2px;
  }

  /* Reduce animation on mobile */
  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  @keyframes skillFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }

  .contact-section {
    padding: 50px 20px;
  }

  .contact-title {
    font-size: 1.3rem;
    padding: 10px 20px;
  }

  .contact-form,
  .contact-section form {
    padding: 24px;
    gap: 16px;
    border-width: 2px;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 11px;
    padding: 10px;
  }

  .contact-section textarea {
    min-height: 100px;
  }

  .contact-section button {
    font-size: 12px;
    padding: 10px 16px;
    margin-top: 6px;
  }

  /* Reduce animations on small screens */
  @keyframes containerFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-4px);
    }
  }
}

/* ===============================
   RESPONSIVE - EXTRA SMALL
================================ */
@media (max-width: 360px) {
  #skills {
    padding: 40px 15px;
  }

  #skills .card {
    font-size: 11px;
    padding: 10px;
  }

  .contact-section {
    padding: 40px 15px;
  }

  .contact-form,
  .contact-section form {
    padding: 20px;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 10px;
  }
}
/* Portfolio footer */
.portfolio-footer {
  width: 100%;
  background: #000;
  border-top: 2px solid #ff4500;
  padding: 40px 20px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff4500;
  transform: translateY(-5px);
}

.footer-links a:hover img {
  filter: grayscale(0%) brightness(1);
}

.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .portfolio-footer {
    padding: 35px 20px 20px;
  }

  .footer-links {
    gap: 30px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-links a img {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}@media (max-width: 480px) {
  /* Navbar Optimization */
  nav {
    height: 60px;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 10px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    gap: 25px;
    padding: 30px 15px;
    min-height: calc(100vh - 60px);
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  .hero-image img {
    width: 220px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
    scroll-margin-top: 60px;
  }

  #about::before,
  #about::after {
    width: 25px;
    height: 25px;
  }

  #about::before {
    top: 15px;
    left: 15px;
  }

  #about::after {
    bottom: 15px;
    right: 15px;
  }

  .container {
    padding: 20px 15px;
    border-width: 3px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 12px 0;
  }

  .about-list {
    font-size: 12px;
    line-height: 1.7;
  }

  .about-list li {
    padding: 10px 0 10px 35px;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .about-list li:hover {
    padding-left: 38px;
  }

  .findMe {
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
  }

  .findMe span {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

  .findMe img {
    height: 1.2rem;
  }

  .findMe a {
    font-size: 12px;
  }

  /* Projects Section */
  #projects {
    padding: 40px 15px;
    gap: 30px;
    scroll-margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .project-card {
    padding: 18px;
    border-radius: 8px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .project-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .project-tech {
    gap: 6px;
    margin-bottom: 15px;
  }

  .project-tech span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .project-links {
    flex-direction: column;
    gap: 10px;
  }

  .project-links a {
    width: 100%;
    min-width: unset;
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Skills Section */
  #skills {
    padding: 50px 15px;
    gap: 15px;
  }

  #skills .title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #skills .card {
    max-width: 100%;
    width: calc(50% - 10px);
    padding: 12px 10px;
    font-size: 11px;
    border-width: 2px;
  }

  #skills .card:hover {
    transform: translateY(-4px) scale(1.02);
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form,
  .contact-section form {
    padding: 25px 18px;
    border-width: 3px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-width: 2px;
  }

  .contact-section textarea {
    min-height: 120px;
  }

  .contact-section button {
    padding: 12px 18px;
    font-size: 13px;
    margin-top: 10px;
  }

  /* Footer */
  .portfolio-footer {
    padding: 30px 15px 15px;
  }

  .footer-links {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links a img {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.5;
  }

  /* General Optimizations */
  * {
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
  }

  video {
    opacity: 0.2;
  }
}