/* styles.css */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #0a0f0d;
  color: #00ff9f;
  scroll-behavior: smooth;
}

nav {
  background: #111;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 10px #00ff9f50;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #00ff9f;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}
nav a {
  position: relative;
  padding-bottom: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00ff9f;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* .section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  border-bottom: 1px solid #00ff9f30;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
} */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  opacity: 0;
  transform: translateY(40px);
}

.section.show {
  animation: fadeInUp 0.8s ease-out forwards;
}

.profile {
  width: 220px;
  border-radius: 100%;
  display: block;
  margin: 10px auto 20px auto;
  border: 3px solid #00ff9f;
  box-shadow: 0 0 10px #00ff9f80;
}

/* #home p {
  text-align: center;
  font-size: 1.2em;
} */
#home {
  background: url('your-banner-image.png') no-repeat center center;
  background-size: cover;
  padding: 100px 20px 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 15, 13, 0.85); /* Dark overlay for better contrast */
  z-index: -1;
}

#social-icons {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

#social-icons a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s;
}

#social-icons img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(90deg) drop-shadow(0 0 3px #00ff9f);
}

#social-icons a:hover {
  transform: scale(1.1);
}

.github-link img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(90deg) drop-shadow(0 0 3px #00ff9f);
}

h1, h2, h3 {
  color: #00ff9f;
  text-align: center;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.skills-list li {
  background-color: #111;
  border: 2px solid #00ff9f;
  padding: 15px 25px;
  font-weight: bold;
  font-size: 1em;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ff9f30;
  transition: transform 0.3s, background-color 0.3s;
}

/* .skills-list li:hover {
  background-color: #00ff9f20;
  transform: scale(1.05);
} */
.skills-list li:hover {
  background-color: #00ff9f20;
  transform: scale(1.05);
  box-shadow: 0 0 12px #52dfd88c, inset 0 0 6px #00ff9f40;
}

.project-card {
  background: rgba(17, 17, 17, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid #00ff9f30;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 0 15px #00ff9f20;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* ...existing code... */

#resume {
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 18px #00ff9f30;
  padding: 50px 20px 40px 20px;
  margin: 50px auto 40px auto;
  max-width: 600px;
  text-align: center;
  border: 2px solid #00ff9f40;
}

#resume h2 {
  color: #00ffcc;
  margin-bottom: 18px;
  font-size: 2em;
  letter-spacing: 1px;
}

#resume p {
  color: #00ff9f;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.resume-btn button {
  background: #00ff9f;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00ff9f80;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
#status-msg { text-align: center; display: none; color: #00ff9f; }

.resume-btn button:hover {
  background: #111;
  color: #00ff9f;
  transform: scale(1.06);
  box-shadow: 0 0 18px #00ff9faa;
}

/* ...existing code... */

.project-card:hover {
  transform: scale(1.02);
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content a {
  display: inline-block;
  margin-top: 10px;
  color: #00ff9f;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .project-card {
    flex-direction: row;
  }

  .project-card img {
    width: 300px;
    height: 100%;
  }

  .card-content {
    flex: 1;
  }
}

#contact {
  text-align: center;
}

#contact a {
  color: #00ff9f;
}

#contact a:hover {
  color: #fff;
}

#contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
#contact-form button:hover {
  background: #00ff9f30;
  box-shadow: 0 0 10px #00ff9f80;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 2px solid #00ff9f;
  background: #0a0f0d;
  color: #00ff9f;
  font-family: inherit;
  border-radius: 8px;
}

#contact-form button {
  margin-top: 20px;
  border-radius: 6px;
  background: transparent;
  border: 2px solid #00ff9f;
  color: #00ff9f;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form button:hover {
  background: #00ff9f20;
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px #00ff9f80;
  }
  50% {
    box-shadow: 0 0 20px #00ff9faa;
  }
}

.profile {
  animation: glowPulse 2s infinite ease-in-out;
}
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #00ff9f;
  width: 0%;
  z-index: 9999;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Add your CSS styles here */

.contact-phone {
  color: #00ff9f;
  text-decoration: underline;
  margin-left: 8px;
}

.resume-contact-info { margin-top: 30px; color: #00ffcc; font-size: 1.1em; }

/* Add your existing styles here */

.email-link {
  color: #00ff9f;
  text-decoration: underline;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 18px;
    padding: 10px 0;
  }

  .section {
    padding: 30px 8px;
    max-width: 100vw;
  }

  .profile {
    width: 120px;
  }

  #social-icons img,
  #social-icons svg,
  #social-icons span {
    width: 28px !important;
    height: 28px !important;
  }

  .project-card {
    flex-direction: column;
    align-items: center;
    padding: 12px;
    margin-bottom: 24px;
  }

  .project-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 12px;
  }

  .card-content {
    padding: 0;
    text-align: left;
  }

  .skills-list {
    font-size: 1em;
    padding-left: 18px;
  }

  .resume-btn button {
    width: 100%;
    padding: 12px 0;
    font-size: 1em;
  }

  .resume-contact-info {
    font-size: 1em;
    word-break: break-all;
  }

  input, textarea {
    width: 100% !important;
    font-size: 1em;
  }
}