* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #0b0f1a;
  color: #eaeaea;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #00e5ff;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00e5ff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00e5ff;
}

.btn-outline {
  background: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00e5ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00e5ff;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content span {
  color: #00e5ff;
}

.hero-content h2 {
  margin: 1rem 0;
  font-weight: 400;
  min-height: 40px;
  line-height: 1.4;
  white-space: nowrap;
}

.hero-content p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.about {
  max-width: 900px;
  margin: auto;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.skills {
  background: #10162a;
  padding: 4.5rem 1.5rem;
}

.skills-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: #0b0f1a;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #1f2a48;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.skill-card h3 {
  margin-bottom: 1rem;
  color: #00e5ff;
}

.skill-card ul {
  list-style: none;
}

.skill-card li {
  margin-bottom: 0.5rem;
}

.projects {
  padding: 4.5rem 1.5rem;
}
.projects-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
}
@media (max-width: 768px) {
  .projects-container {
    grid-template-columns: 1fr;
  }
}
.project-card {
  max-width: 420px;          /* controls box width */
  width: 100%;
  padding: 1.6rem;
  background: linear-gradient(145deg, #0b1220, #0e1630);
  border-radius: 18px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.08);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.project-card h3 {
  color: #00e5ff;
  margin-bottom: 1rem;
}

.project-card p {
  margin-bottom: 1rem;
}

.contact {
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.contact-text {
  max-width: 600px;
  margin: auto;
  opacity: 0.9;
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #1f2a48;
  background: #0b0f1a;
  color: #eaeaea;
  outline: none;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8f98;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info a {
  color: #00e5ff;
  text-decoration: none;
}

.footer {
  background: linear-gradient(180deg, #050a1a, #020617);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding: 25px 20px;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #00eaff, #0077ff);
  color: #020617;
  font-weight: 700;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #00eaff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.about,
.skills,
.projects,
.contact {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: #0b0f1a;
  padding: 2rem;
  border-radius: 10px;
  max-width: 450px;
  width: 90%;
  border: 1px solid #1f2a48;
  text-align: center;
}

.modal-content h3 {
  color: #00e5ff;
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #eaeaea;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
.learning {
  background: #10162a;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.learning-list {
  max-width: 500px;
  margin: auto;
  list-style: none;
}

.learning-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #1f2a48;
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0b0f1a;
  border: 1px solid #1f2a48;
  color: #eaeaea;
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 3000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #00e5ff;
  font-weight: bold;
}
.learning {
  background: linear-gradient(180deg, #0b0f1a, #10162a);
  padding: 4.5rem 1.5rem;
}

.learning-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.learning-card {
  background: rgba(11, 15, 26, 0.85);
  border: 1px solid #1f2a48;
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.learning-card h3 {
  color: #00e5ff;
  margin-bottom: 0.5rem;
}

.learning-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.progress {
  width: 100%;
  height: 6px;
  background: #1f2a48;
  border-radius: 10px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00e5ff, #00bcd4);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .learning {
    padding: 3.5rem 1.2rem;
  }

  .learning-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .learning-card {
    padding: 1.5rem;
  }

  .learning-card h3 {
    font-size: 1.1rem;
  }

  .learning-card p {
    font-size: 0.9rem;
  }

  .progress {
    height: 5px;
  }
}
.case-study {
  list-style: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.case-study li {
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.security-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid #00e5ff;
  background: rgba(0, 229, 255, 0.06);
  font-size: 0.95rem;
  border-radius: 6px;
}

.case-study {
  list-style: none;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.case-study li {
  margin-bottom: 0.45rem;
  opacity: 0.9;
}

.learning {
  background: linear-gradient(180deg, #0b0f1a, #10162a);
  padding: 4.5rem 1.5rem;
}

.learning-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.learning-card {
  background: rgba(11, 15, 26, 0.85);
  border: 1px solid #1f2a48;
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
}

.learning-card h3 {
  color: #00e5ff;
  margin-bottom: 0.5rem;
}

.learning-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.progress {
  width: 100%;
  height: 6px;
  background: #1f2a48;
  border-radius: 10px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00e5ff, #00bcd4);
  border-radius: 10px;
}

.next-tech {
  padding: 4rem 1.5rem;
  text-align: center;
}

.next-list {
  list-style: none;
  max-width: 400px;
  margin: auto;
}

.next-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #1f2a48;
  opacity: 0.9;
}

#send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0b0f1a;
  border: 1px solid #1f2a48;
  color: #eaeaea;
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 3000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: #00e5ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .learning {
    padding: 3.5rem 1.2rem;
  }

  .learning-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .learning-card {
    padding: 1.5rem;
  }

  .learning-card h3 {
    font-size: 1.1rem;
  }

  .learning-card p {
    font-size: 0.9rem;
  }

  .progress {
    height: 5px;
  }

  .next-tech {
    padding: 3.5rem 1.2rem;
  }
}
.learning {
  padding-bottom: 2.5rem;
}

.next-tech {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.next-tech {
  background: rgba(11, 15, 26, 0.6);
  border-top: 1px solid #1f2a48;
}
.roadmap {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #0b0f1a, #0e1324);
}

.roadmap-grid {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.roadmap-card {
  background: rgba(11, 15, 26, 0.9);
  border: 1px solid #1f2a48;
  border-radius: 14px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.3);
}

.roadmap-card h3 {
  color: #00e5ff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.roadmap-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .roadmap {
    padding: 3.5rem 1.2rem;
  }
}
.contact-intro {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
  opacity: 0.85;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-info p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
}

.contact-info a {
  color: #00e5ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.project-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.project-buttons .btn-outline {
  background: transparent;
  border: 1px solid #00e5ff;
  color: #00e5ff;
}

.project-buttons .btn-outline:hover {
  background: #00e5ff;
  color: #000;
}
.project-image {
  width: 100%;
  height: 180px; /* controls image height */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #0b1220;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* key property */
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-thumb {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .project-thumb {
    max-width: 100%;
  }
}
/* CERTIFICATES SECTION (HOME) */
.certificates-section {
  text-align: center;
  padding: 80px 20px;
}

.certificates-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
}

.certificate-preview-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
}

/* CERTIFICATES PAGE */
.certificates-page {
  padding: 120px 20px 80px;
  text-align: center;
}

.certificates-page h1 {
  color: #00e5ff;
  font-size: 2.5rem;
}

.page-subtitle {
  color: #bbb;
  margin-bottom: 50px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.certificate-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
}

.certificate-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.certificate-card h3 {
  color: #00e5ff;
  margin-bottom: 5px;
}

.certificate-card p {
  color: #ccc;
  font-size: 0.9rem;
}

.certificate-card span {
  font-size: 0.8rem;
  color: #888;
}
/* CERTIFICATE PAGE UI TWEAKS */
.certificate-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.12);
}

.certificate-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  margin: 10px 0;
}

.certificate-desc {
  font-size: 0.95rem;
  color: #ccc;
  margin: 12px 0 20px;
  line-height: 1.5;
}

.certificate-actions {
  text-align: left;
}

/* BUTTON CONSISTENCY */
.primary-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: #00e5ff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.primary-btn:hover {
  background: #00bcd4;
}
/* CERTIFICATES PAGE */
.certificates-section {
  padding: 100px 8%;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  color: #00e5ff;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 50px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.certificate-card {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.15);
}

.certificate-card h3 {
  color: #00e5ff;
  margin-bottom: 6px;
}

.platform,
.year {
  font-size: 0.85rem;
  color: #aaa;
}

.certificate-desc {
  font-size: 0.95rem;
  color: #ccc;
  margin: 14px 0 20px;
  line-height: 1.5;
}
/* FOOTER CERTIFICATES */
.footer {
  padding: 50px 8% 25px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.6));
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  background: #00e5ff;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.footer-brand p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: #bbb;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #00e5ff;
}

.footer-bottom {
  margin-top: 35px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }
}
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: #aaa;
  transition: fill 0.2s, transform 0.2s;
}

.footer-socials a:hover svg {
  fill: #00e5ff;
  transform: translateY(-2px);
}
.site-footer {
  background: linear-gradient(180deg, #050b17, #020611);
  padding: 40px 20px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Left */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  background: #00e5ff;
  color: #001018;
  font-weight: 700;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.footer-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.footer-text span {
  font-size: 13px;
  color: #9aa4b2;
}

/* Right */
.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 18px;
  color: #9aa4b2;
  transition: color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  color: #00e5ff;
  transform: translateY(-2px);
}

/* Bottom */
.footer-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
/* Navbar Base */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 23, 0.9);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #00e5ff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  color: #00e5ff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #00e5ff;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #050b17;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a {
  padding: 12px 0;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.mobile-menu a:hover {
  color: #00e5ff;
}

/* Mobile only */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;   /* Increased height */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00e5ff;
  white-space: nowrap;
}

.logo span {
  color: #ffffff;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px; /* more breathing space */
}

.nav-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #00e5ff;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #00e5ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .logo {
    font-size: 16px;
  }
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ADD THIS */
.logo {
  margin-right: 40px; /* space between name and About */
}
