.stack-section{
  min-height:300vh;
  position:relative;
  padding:0 20px;
}

.cards{
  position:sticky;
  top:0;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.card{
  position:absolute;
  width:85%;
  max-width:1500px;
  height:75vh;
  border-radius:30px;
  display:flex;
  align-items:center;
  padding:clamp(20px,4vw,60px);
  color:white;
  box-shadow:0 30px 60px rgba(0,0,0,0.3);
}

/* Card Backgrounds */

.card1{
  background:#00000074;
  z-index:1;
  top:5%;
  width:100%;
  border:1px solid white;
}

.card2{
  background:#0d3490;
  z-index:2;
  top:12%;
  width:90%;
  border:1px solid white;
}

.card3{
  background:black;
  z-index:3;
  top:25%;
  width:75%;
  border:1px solid white;
}

.card3 .content h1{
  font-weight:900;
  font-size:clamp(32px,6vw,80px);
}

/* Skill Card */

.skill-card{
  background:black;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* About Section */

.about-container{
  display:flex;
  align-items:center;
  gap:50px;
  height:100%;
  flex-wrap:wrap;
  padding-left: 60px;
}

.about-image img{
  width:100%;
  max-width:350px;
  border-radius:20px;
}

.about-content{
  max-width:600px;
}

.badge{
  background:black;
  padding:10px 18px;
  border-radius:20px;
  letter-spacing:1px;
  color:white !important;
  font-size:clamp(14px,2vw,22px);
}

.about-content h1{
  font-family:"f1";
  font-size:clamp(28px,5vw,55px);
  margin:20px 0;
  line-height:1.2;
}

.about-content span{
  color:#ff9100;
  font-family:"f1";
}

.about-content p{
  font-size:clamp(14px,2vw,20px);
}

.stats{
  display:flex;
  gap:20px;
  margin:30px 0;
  flex-wrap:wrap;
}

.stat{
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-radius:15px;
  text-align:center;
  width:130px;
}

.stat p{
  font-size:14px;
  font-weight:600;
}

.stat h2{
  font-size:24px;
}

.cta-btn{
  padding:14px 30px;
  border:none;
  font-size:18px;
  font-weight:500;
  border-radius:30px;
  background:#0095ff;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.cta-btn:hover{
  transform:scale(1.05);
}

/* Tablet Responsive */

@media (max-width:1024px){

  .about-container{
    flex-direction:column;
    text-align:center;
    justify-content: center;
  }

  .about-image img{
    max-width:280px;
  }

  .card{
    height:auto;
    min-height:60vh;
  }

}


@media (max-width:768px){
  .stack-section{
    display: none;
  }
}


/* Mobile Responsive */

/* @media (max-width:768px){

  .cards{
    align-items:flex-start;
    padding-top:80px;
  } */

  /* .card{
    width:95%;
    padding:25px;
  }

  .card1{
    width:100%;
  }

  .card2{
    width:95%;
  }

  .card3{
    width:90%;
  }

  .about-content{
    max-width:100%;
  }

  .stats{
    justify-content:center;
  }

  .stat{
    width:110px;
    padding:15px;
  }

} */


/* ================= */
/* Small Mobile */
/* ================= */

/* @media (max-width:480px){

  .about-image img{
    max-width:220px;
  }

  .badge{
    font-size:14px;
  }

  .cta-btn{
    font-size:16px;
    padding:12px 22px;
  }

} */