.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.col {
  flex: 1 1 0;
}

/* responsive helper */
@media (min-width: var(--bp-md)) {
  .col-md-6 {
    flex: 0 0 50%;
  }
}

/* spacing helpers (example) */
.mt-1 {
  margin-top: var(--space-1);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 150px;
  position: relative;
}
/* 
---------------------------------------------------------------------------
Styles 
--------------------------------------------------------------------------
*/
#hero {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  align-items: center;
}

.social-list img,
.social-list ul {
  width: 31px;
  height: 31px;
  display: block;
}
/*
-------------------------------------------
timeline
---------------------------------------
*/
.timeline-section {
  display: flex;
  gap: 8rem;
  flex-direction: column;
}
.timeline {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
}

.timeline .line-gray {
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  background: #bfa8d4;
  height: 100%;
  border-radius: 10px;
}
.timeline .line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 0;
  background: var(--gradient-secondary);
  transform: translateX(-50%);
  border-radius: 10px;
}

.timeline-icon {
  position: absolute;
  top: 50%;
  filter: grayscale(1) blur(1px);
}
.left .timeline-icon {
  transform: translateX(50%);
}
.right .timeline-icon {
  transform: translateX(-50%);
}

.event {
  display: flex;
  position: relative;
  width: 50%;
  margin: 100px 0;
}

.event.left {
  left: 0;
  justify-content: end;
}

.event.right {
  left: 50%;
  justify-content: start;
}
.timeline-card {
  background: var(--color-surface);
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 700px;
  opacity: 0;
  filter: blur(10px);
  margin: 0 8rem;
}

.activities {
  list-style: none;
  padding: 0 30px 0 20px;
}

.activities li:not(li:last-child) {
  margin-bottom: 10px;
}
.activities li {
  position: relative;
  padding-left: 30px;
  font-size: var(--fs-2);
  line-clamp: 3;
}

.activities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url("/assets/icons/checkMark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tech-stack {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0 20px;
}
.tech-stack li {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 5px 10px;
  color: var(--color-on-primary);
  font-weight: 500;
  text-transform: capitalize;
}

.social-media {
  z-index: 1;
  position: sticky;
  left: 0;
  bottom: 50%;
  width: fit-content;
  background-color: var(--color-on-primary);
  padding: 20px;
  border-radius: 0 20px 20px 0;
}
.social-media ul {
  display: flex;
  flex-direction: column;
}

footer {
  background-color: var(--color-surface);
}
.m-auto {
  margin: auto;
}
footer p {
  color: var(--color-muted);
}
footer ul.navbar {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  column-gap: 3rem;
  row-gap: 1rem;
  list-style: none;
}
footer ul.navbar a:hover {
  color: var(--color-primary);
}
footer ul.navbar a {
  font-size: var(--fs-2);
  color: var(--color-muted);
  text-decoration: none;
}
footer .social-list img {
  filter: brightness(0.3);
}
footer .social-list img:hover {
  filter: brightness(1);
}
.progress-container {
  width: 100%;
  height: 10px;
  background: #333;
  border-radius: 15px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6800f9 0%, #a805d0 100%);
  border-radius: 15px;
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-list li {
  min-height: 52px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--color-surface);
  display: flex;
  justify-content: space-between;

  padding: 10px 14px;
  border-radius: 10px;
  align-items: center;
}
.skill-list p {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 500;
}

.skills > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: var(--color-muted);
}

#hero ul.info {
  display: inline-flex;
  gap: 20px;
  padding: 0;
}
#hero ul.info li {
  background-color: var(--color-surface);
  padding: 1rem;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: var();
  list-style: none;
  color: var(--color-secondary);
}
#hero .hero-img {
  box-shadow: 0px 4px 68px 0px #6366f1;
  border-radius: 50px;
}
a.btn.btn-primary {
  text-decoration: none;
}

#about > div {
  flex: 1;
}
#about {
  gap: 8rem;
}
@media (min-width: 641px) and (max-width: 989px) {
  #about {
    gap: 2rem;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .container {
    padding-inline: var(--space-4);
  }
  #hero {
    flex-direction: column;
    height: auto;
  }
  #hero article:first-child {
    padding: 100px 0;
  }
  #hero .hero-img {
    display: none;
  }

  #about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  #projects .card,
  .flex-3 {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .skills > div:not(:last-child)::after {
    position: relative;
  }
  footer ul.navbar li {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .social-media {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
    padding: 15px 20px;
  }
  .social-media ul {
    flex-direction: row;
    gap: 30px;
  }
  .social-media img {
    width: 20px;
    height: 20px;
  }
  /* Time line */

  .timeline .line-gray {
    left: unset;
    right: 2px;
  }
  .timeline .line {
    left: unset;
    right: 0;
  }
  .event {
    width: 100%;
  }
  .timeline-card {
    max-width: 100%;
    margin: 0 3rem 0 0;
  }
  .event.right {
    left: 0;
  }
  .event.left,
  .event.right {
    justify-content: end;
  }
  .right .timeline-icon,
  .left .timeline-icon {
    transform: translateX(calc(50% - 2px));
  }
  .timeline-section {
    gap: 3rem;
  }
}
@media (min-width: 641px) and (max-width: 989px) {
  .container {
    max-width: 700px;
  }
  #projects .flex-3 {
    max-width: 100%;
  }
  
 
}
/* Tablets (769–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
}

@media (min-width: 1025px) and (max-width: 1536px) {
  .container{
    max-width: 1100px;
  }
 }


.download-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}