body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #ccd6f6;
  background-color: #0a192f;
  display: flex;
  height: 100vh;
  overflow: hidden;
  flex-direction: row;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #0a192f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.progress-bar {
  height: 8px;
  background: #64ffda;
  width: 0%;
}

.container {
  display: flex;
  width: 100%;
  height: 100vh;
}

.left-side {
  width: 50%;
  background-color: #0a192f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100vh;
  overflow: hidden;
}

.content-box {
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px 0;
}

nav {
  margin: 20px 0;
}

.contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.right-side {
  width: 50%;
  margin-left: 50%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  padding: 20px;
}

.right-side section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.right-side section.in-view {
  opacity: 1;
  transform: translateY(0);
}

#hero {
  text-align: center;
  margin-bottom: 20px;
}

#hero h1 {
  font-size: 2.5em;
  color: #ccd6f6;
  animation: fadeIn 1.2s ease-in-out;
}

#hero h2 {
  font-size: 2em;
  color: #8892b0;
  animation: fadeIn 1.6s ease-in-out;
}

#hero p {
  font-size: 1.2em;
  color: #64ffda;
  animation: fadeIn 2s ease-in-out;
}

nav ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  color: #64ffda;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffffff;
  transform: scale(1.2);
  animation: bounce 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-icons a {
  color: #64ffda;
  text-decoration: none;
  font-size: 1.5em;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

section {
  padding: 60px 20px;
}

.about-content,
.experience-content,
.projects-content,
.resume-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p,
.experience-item p {
  margin-bottom: 20px;
  line-height: 1.6;
}

section h2 {
  font-size: 2em;
  color: #ccd6f6;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease-in-out;
}

.experience-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.experience-box:hover {
  background-color: #112240;
}

.experience-time {
  width: 100px;
  color: #8892b0;
  font-size: 0.9em;
}

.experience-info {
  margin-left: 20px;
}

.experience-info h3 {
  font-size: 1.5em;
  color: #ccd6f6;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.experience-box:hover .experience-info h3 {
  color: #64ffda;
}

.experience-info p {
  color: #8892b0;
  margin-bottom: 5px;
}

.project-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.project-box:hover {
  background-color: #112240;
  cursor: pointer;
}

.project-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.project-info {
  margin-left: 20px;
}

.project-info h3 {
  font-size: 1.5em;
  color: #ccd6f6;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.project-box:hover .project-info h3 {
  color: #64ffda;
}

.project-info p {
  color: #8892b0;
  margin-bottom: 5px;
}

.languages,
.platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.languages .highlight,
.platforms .highlight {
  background-color: transparent;
  color: #64ffda;
  border: 1px solid #64ffda;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-box:hover .languages .highlight,
.experience-box:hover .platforms .highlight {
  background-color: #64ffda;
  color: #0a192f;
}

.resume-content {
  text-align: center;
}

.resume-view {
  text-align: left;
  margin-top: 20px;
  padding: 20px;
  background: #112240;
  border-radius: 8px;
}

.resume-view h3,
.resume-view h4 {
  color: #64ffda;
}

.resume-view ul {
  list-style: none;
  padding: 0;
}

.resume-view ul li {
  margin-bottom: 10px;
  color: #ccd6f6;
}

footer {
  background-color: #0a192f;
  color: #64ffda;
  text-align: center;
  padding: 20px 0;
}

footer .social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

footer .social-links li {
  margin: 0 10px;
}

footer .social-links li a {
  color: #64ffda;
  text-decoration: none;
  font-size: 1.2em;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

footer .social-links li a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.3);
  }
}

@media (max-width: 767px) {
  .left-side {
    width: 100%;
    position: relative;
    height: auto;
  }

  .right-side {
    width: 100%;
    margin-left: 0;
  }
}
