@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .nav-container {
    flex-direction: column;
  }

  .profile-container h1 {
    font-size: 1.8rem;
  }

  .profile-container p,
  .project-entry p,
  .edu-details p {
    font-size: 1rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .tech-item {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .project-entry {
    padding: 1rem;
  }

  .education-card {
    padding: 1.5rem;
  }

  .social-text-links {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .nav-links li a {
    font-size: 0.95rem;
  }
}

html {
  scroll-behavior: smooth;
}

.tech-item i.fa-file-excel {
  color: #1d6f42; /* Excel green */
}

.tech-item i.fa-chart-line {
  color: #f7b500; /* Power BI yellow */
}

.tech-item i.fa-chart-bar {
  color: #3c65a5; /* Tableau blue */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #eaeaea;
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00aaff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00aaff;
}

.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h1,
h2 {
  color: #00aaff;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-text-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-text-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00aaff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-text-links a:hover {
  color: #33ccff;
}

.social-text-links i {
  font-size: 1.1rem;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-list span {
  background-color: #1a1a1a;
  color: #00aaff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
}

.project-card,
.education-card {
  background-color: #1a1a1a;
  border-left: 4px solid #00aaff;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  transition: transform 0.3s;
}

.project-card:hover,
.education-card:hover {
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #0a0a0a;
  color: #888;
  font-size: 0.9rem;
}

.tech-stack-section {
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 0 1rem;
  justify-items: center;
}

.tech-item {
  background: linear-gradient(145deg, #121212, #1e1e1e);
  border: 1px solid #1f1f1f;
  color: #00aaff;
  padding: 1rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #00223344;
  text-align: center;
  width: 100%;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.95rem;
}

.tech-item i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.tech-item:hover {
  background: #00aaff22;
  box-shadow: 0 0 15px #00aaff88;
  transform: translateY(-5px);
}

.projects-section {
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: linear-gradient(145deg, #141414, #1e1e1e);
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

.project-card h3 {
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.project-link {
  color: #00aaff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
}

.project-link:hover {
  color: #33ccff;
}

.education-section {
  text-align: center;
}

.education-card {
  background: linear-gradient(145deg, #141414, #1e1e1e);
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 15px;
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.1);
  transition: transform 0.3s;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

.edu-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.edu-details h3 {
  color: #00aaff;
  margin-bottom: 0.3rem;
}

.edu-details p {
  color: #ccc;
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background-color: #0a0a0a;
  z-index: 1000;
  border-bottom: 1px solid #1c1c1c;
  box-shadow: 0 2px 10px rgba(0, 170, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: #00aaff;
  text-shadow: 0 0 5px rgba(0, 170, 255, 0.4);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00aaff;
}

.navbar .nav-links li a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #00aaff;
  width: 0%;
  transition: width 0.3s ease-in-out;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* PROFILE SECTION */
.profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.profile-container {
  max-width: 700px;
  padding: 2rem;
}

.profile-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #00aaff;
}

.profile-container p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.social-links a {
  font-size: 1.8rem;
  color: #00aaff;
  margin: 0 1rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Optional profile picture style */
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid #00aaff;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.3);
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 2rem auto;
}

.project-entry {
  background: linear-gradient(145deg, #141414, #1e1e1e);
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.08);
  transition: transform 0.3s ease;
}

.project-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
}

.project-entry h3 {
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.project-entry p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.project-entry a {
  color: #00aaff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.project-entry a:hover {
  color: #33ccff;
}

/* Hamburger base styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00aaff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0a0a0a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px #00aaff44;
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}
