.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
}
.navbar .menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #4f46e5;
}
.navbar h1 {
  font-size: 1.5rem;
  color: #4f46e5;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar ul a {
  text-decoration: none;
  color: #4f46e5;
  transition: color 0.3s;
}
.navbar ul a:hover {
  color: #4f46e5;
}
.navbar {
  /* --- MOBILE --- */
}
@media (max-width: 768px) {
  .navbar .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .navbar .menu-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0;
  }
  .navbar.open ul {
    display: flex;
  }
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  text-align: left;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4f46e5;
}
.about-section .about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
}
.about-section .about-content .profile-pic {
  width: 220px;
  border-radius: 50%;
  object-fit: cover;
}
.about-section .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}
.about-section {
  /* --- MOBILE --- */
}
@media (max-width: 768px) {
  .about-section .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-section .about-content p {
    max-width: 90%;
  }
}

.projects-section {
  padding: 4rem 2rem;
  background-color: #8b9c9e;
  text-align: left;
}
.projects-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4f46e5;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.projects-section .projects-grid .project-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.projects-section .projects-grid .project-card:hover {
  transform: translateY(-5px);
}
.projects-section .projects-grid .project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4f46e5;
}
.projects-section .projects-grid .project-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #1a1a1a;
}
.projects-section .projects-grid .project-card a {
  color: #4f46e5;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 4rem 2rem;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4f46e5;
}
.contact-section p {
  color: #8b9c9e;
  margin-bottom: 1rem;
}
.contact-section .contact-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  color: #4f46e5;
}
.contact-section .contact-icons a i {
  color: #8b9c9e;
  transition: color 0.3s;
}
.contact-section .contact-icons a i:hover {
  color: #4f46e5;
}
@media (max-width: 768px) {
  .contact-section #contact {
    padding: 2rem 1rem;
    text-align: center;
  }
  .contact-section .contact-icons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  transition: background-color 0.5s;
}

html,
body {
  overflow-y: auto !important;
  height: auto !important;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  word-wrap: break-word;
}

/*# sourceMappingURL=styles.css.map */
