.timeline {
  position: relative;
  padding: 10px 0px 10px 0px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icon-container a {
    color: #333;
    font-size: 30px;
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon-container a:hover {
    color: #0077b5;
}

.social-icon-container a span {
    font-size: 14px;
    color: inherit;
    text-align: center;
}

.tech-stack, .projects {
  margin-top: 40px;
}

.tech-icons, .project-icons  {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 25px;
  gap: 10px 5px;
}

.tech-icons i {
  font-size: 40px;
  color: #333;
  transition: color 0.3s;
  margin: 0 5px;
}

.tech-icons i:hover {
  color: #0077b5;
}

@media (max-width: 1024px) {
    .mobile-spacer {
        padding-top: 60px;
    }

    .timeline:before {
    }

    .timeline-item {
        padding: 20px 40px;
        position: relative;
        width: 100%;
        text-align: center;
    }

    .timeline-item:nth-child(odd) {
        right: 0px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }
}

@media (min-width: 1025px) {
    .mobile-spacer {
        padding-top: 0px;
    }

    .timeline:before {
        content: "";
        position: absolute;
        left: 50%;
        width: 2px;
        height: 100%;
        background: #333;
    }

    .timeline-item {
        padding: 20px 40px;
        position: relative;
        width: 50%;
    }

    .timeline-item:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #333;
        top: 25px;
        right: -10px;
    }

    .timeline-item:nth-child(odd) {
        right: 0px;
        text-align: end;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-item:nth-child(even):before {
        left: -9px;
    }
}
