@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --background: #0c0c0c;
    --background2:rgb(22, 22, 22);
    --white: #e6e6e6;
    --blue: #FEE1A2;
    --black: #ffffff;

}

body {
  background-color: #0c0c0c;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 700 700" width="700" height="700" opacity="0.68"><defs><filter id="nnnoise-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="linearRGB"><feTurbulence type="fractalNoise" baseFrequency="0.153" numOctaves="4" seed="15" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feSpecularLighting surfaceScale="19" specularConstant="1" specularExponent="20" lighting-color="%23a49b2e" x="0%" y="0%" width="100%" height="100%" in="turbulence" result="specularLighting"><feDistantLight azimuth="3" elevation="121"></feDistantLight></feSpecularLighting></filter></defs><rect width="700" height="700" fill="transparent"></rect><rect width="700" height="700" fill="%23a49b2e" filter="url(%23nnnoise-filter)"></rect></svg>');
  font-family: "poppins";
  color: var(--black);
  zoom: 0.9;

}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}




.button {
  background-color: var(--white);
  color: var(--blue);
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  font-family: "poppins";
  border-color: var(--blue);
  margin-right: 5px;
  background: var(--background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border:1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 12px 0 rgba(27, 27, 27, 0.459);
  cursor: pointer;

}

.button:hover {
    transform: scale(0.9); /*rotate(1deg); */
    background-color: #FEE39C;
    color: black;
    border:1px solid #FACB82;
    box-shadow: 0 8px 12px 0 #ffe55483;
}

.section-title {
  font-size: x-large;
  margin: 3% 0 3% 0;
}



.box-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 3px;
width: 80%;
align-items: center;
justify-content: center;
margin: 0 auto;

}

.box-container2 {
display: grid;
grid-template-columns: auto auto auto;
width: 80%;
align-items: center;
justify-content: center;
gap: 15px 15px;
margin: 0 auto;

}

.box-container3 {
display: grid;
grid-template-columns: auto auto;
width: 80%;
align-items: center;
justify-content: center;
gap: 30px;
margin: auto;
margin-top: 2rem;
margin-bottom: 2rem;
}

.box-container4 {
  display: grid;
  grid-template-columns: auto auto;
  width: 80%;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  }


  

/* ------------------------------cursor------------------------------ */
.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed; 
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; 
}










/* ------------------------------navbar------------------------------ */

nav{
  background-color: #0c0c0ce7;
  backdrop-filter: blur(15px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
  padding: 1rem;
  margin: auto;
  
}

.nav2 {
  width: 80%;
  margin: 0 auto;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

nav li{
  height: 50px;
}

nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
}

nav a:hover{
  text-decoration: underline;
}

nav li:first-child {
  margin-right: 0;
}

.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(10, 10, 10, 0.753);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9999;
}

.sidebar li{
  width: 100%;
}

.sidebar a{
  width: 100%;
}

.menu-button{
  display: none;
}

.naegis {
  font-size: larger;
  font-weight: 800;
  color: #FEE39C;
  text-decoration: none;
  
}

.svg-nav:hover {
  cursor: pointer;
}


@media(max-width: 1000px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  .nav2 {
    padding: 0;
    width: 80%;
  }
  .nav {
    width: 100%;
  }
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }

}















/* ------------------------------welcome------------------------------ */
.star {
  margin: 5em 5em 0em 0em;
  width: 20em;
  height: 20em;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.star__stroke {
  --dur: 3s;
  animation: stroke1 var(--dur) linear infinite;
 }
 .star__stroke--2 {
  animation-name: stroke2;
  animation-delay: calc(var(2s) / -2);
 }
 .star__stroke--3 {
  animation-name: stroke3;
  animation-direction: reverse;
 }
 .star__stroke--4 {
  animation-name: stroke4;
  animation-delay: calc(var(3sr) / -2);
  animation-direction: reverse;
 }
  

  @keyframes stroke1 {
    from {
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: 124;
    }
  }
  @keyframes stroke2 {
    from {
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: 248;
    }
  }
  @keyframes stroke3 {
    from {
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: 372;
    }
  }
  @keyframes stroke4 {
    from {
      stroke-dashoffset: 0;
    }
    to {
      stroke-dashoffset: 496;
    }
  }

  
.welcome-section {
  display: flex;
  margin-top: 5%;
  padding-top: 7%;
  padding-right: 3%;
  padding-left: 3%;
  padding-bottom: 3%;
  justify-content: center; 
}


.button0 {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.button0 {
  --border-right: 6px;
  --animation-color: #f8ff95;
  --fs-size: 3em;

  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "poppins";
  position: relative;
  font-weight: 550;
  color: #f8ff9527;
  -webkit-text-stroke: 1px var(--text-stroke-color);

}

@keyframes blink {
  from { border-right-color: transparent; }
  to { border-right-color: var(--animation-color); }
}

/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
  
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color));
  
}
/* hover */
.button0:hover .hover-text {
  width: 0%;

}

.welcome-text2 {
  margin-top: 30%;
}
#intro {
  font-size: 20px; 
}
#naegis {
  font-size: 78px; 
  color: #FEE39C;
  font-weight: 800;

}
.and {
  color: #FEE39C;
}
#intro3 {
  font-size: 15px; 
  font-weight: 300;
  margin-bottom: 30px;
    
}













/* ------------------------------technologies------------------------------ */

.cardS {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 20px;
  transition: all .3s;
  text-align: center; /* Center text horizontally */
  display: flex; /* Make card a flexbox container */
  justify-content: center; /* Center content horizontally within card */
  align-items: center; /* Center content vertically within card */
 }
 
 .card2S {
  text-align: center;
  width: 150px;
  height: 150px;
  background-color: var(--background2);
  border-radius:5px;
  transition: all .12s;
  /* From https://css.glass */
  background: rgba(46, 46, 46, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(146, 146, 146, 0.3);
  
}
.card2S svg {
  margin-top: 13%;
  width: 50%;
  height: auto;
}

.card2S h2 {
  line-height: 15px;
  font-size: 15px;
  font-weight: 500;
}
 
 .card2S:hover {
  transform: scale(0.95);
  border-radius: 20px;
  /* box-shadow: 0px 0px 1px 1px #FEE1A2; */
 }

 .cardS2 {
  margin: auto;
  margin-bottom: 10px;
  display: inline-block; 
  margin-right: 10px;
  margin-bottom: 10px;
  
 }

 .skills-section {
  margin: auto;
  width: 70%;
  display: grid;
  flex-direction: column;
  text-align: center; /* Center the section horizontally */
  display: flex;
  margin-top: 4%;
  padding-top: 3%;
  padding-right: 3%;
  padding-left: 3%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.svg {
  z-index: -99;
  position: absolute;

}












/* ------------------------------projects------------------------------ */

.two {
  margin: auto;
  display: grid;
  flex-direction: column;
  text-align: center; /* Center the section horizontally */
  display: flex;
  margin-top: 4%;
  padding-top: 3%;
  padding-right: 3%;
  padding-left: 3%; 
  justify-content: center;
  padding-top: 9rem;

}
.project-tile{
  text-align: center;
  margin: 0;
}

#projects {
  display: flex;
  margin-top: 4%;
  padding-top: 3%;
  padding-right: 3%;
  padding-left: 3%;
  justify-content: center;
}



.cardP {
  --font-color: #fff;
  --font-color2: #ffffffc4;
  --bg-color: #323232;
  
  width: 300px;
  height: 400px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: .2s;
  position: relative;

  background: rgba(46, 46, 46, 0.11);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(146, 146, 146, 0.3);

}

.cardP:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px 2px #242424;
}



.cardP__descr-wrapper {
  font-weight: 300;
  padding: 20px;
  display: grid;
  font-size: 12px;
  
}

.cardP__title {
  color: var(--font-color);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 550;
  font-size: 20px;
}

.cardP__descr {
  color: var(--font-color2);
}

.svgP {
  width: 25px;
  height: 25px;
  transform: translateY(25%);
  fill: var(--font-color);
  margin-top: 5px;
}

.cardP__links {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;

}

.cardP__links .link {
  color: var(--font-color);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.cardP__links .link:hover {
  text-decoration: underline;
}


.wikain_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("wikain.png");
  background-size: cover;
  filter: brightness(50%);
}

.optipy_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("optipy.png");
  background-size: cover;
  filter: brightness(50%);
}

.dash_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("dash.png");
  background-size: cover;
  filter: brightness(50%);
}

.card0__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("automation.png");
  background-size: cover;
  filter: brightness(50%);
}


.card00__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("taskchecker.png");
  background-size: cover;
  filter: brightness(50%);
}



.card1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(15, 15, 15) 4%, rgba(0, 0, 0, 0) 60%),url("artgallery.png");
  background-size: cover;
}

.card2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("lamon-lasalle.png");
  background-size: cover;
  filter: brightness(50%);
}

.card3__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%),url("first.png");
  background-size: cover;
  filter: brightness(50%);
}

/* figma */

.cardD1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("medgrocer.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("dlsud.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD3__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("swiftair.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD4__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("dlsudcolleges.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD5__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("reddit.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD6__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("drag.png");
  background-size: cover;
  filter: brightness(50%);
}

.cardD7__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  background-image: linear-gradient(0deg, rgb(37, 37, 37) 4%, rgba(0, 0, 0, 0) 60%), url("filter.png");
  background-size: cover;
  filter: brightness(50%);
}












/* ------------------------------education------------------------------  */

.education {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 9rem;
}

.school-card {
  display: flex;
  align-items: center;
  width: 29rem;
  margin: auto;
  justify-content: center;
  /* background-color: #323232; */
}

.school-img {
  display: flex;
  align-items: center;
  background: rgba(46, 46, 46, 0.678);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 0.4rem;
  margin-right: 1.2rem;
  margin-left: 0.8rem;
}

.school-img img {
  width: 7rem;
  height: auto;

  
}

.school-desc {
  display: inline-block;
  text-align: left;
  font-weight: 100;
}

.school-desc p {
  font-size: 0.8rem;
  font-weight: 100;
  padding: 0.1rem;
}

.school-desc h2 {
  font-size: 1.2rem;

}

.school {
  font-weight: 200;
}


#Connect {
  margin-top: 9rem;
}



/* ------------------------------ contact ------------------------------ */

section.two#project {
  margin: 0 auto;
}


.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 60px;
  margin-top: 2rem;

}

.form-container {
  width: 700px;
  height: 400px;
  background: #41414117;
  border: 1px solid #aaaaaa;

  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  background-size: 200% 100%;

}



.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  left: 0;
}

.form-group {
  
  text-align: left;
  
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #ffe1a1;
  font-weight: 600;
  font-size: 12px;
  
}

.form-container .form-group input {
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
}

.form-container .form-group textarea {
  width: 100%;
  height: 90px;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #fff;
  height: 96px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #ffe1a1;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: #ffe1a1;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #ffe1a1;
  font-weight: 600;
  width: 30%;
  background: #313131;
  border: 1px solid #414141;
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin-top: 18px;
  cursor: pointer;
  border-radius: 15px;
}

.form-container .form-submit-btn:hover {
  background-color: #ffe1a1;
  color: #000000;
}


.contact-svg {
  z-index: 9999999;
}

.card {
  display: flex;
  flex-direction: column;
  width: 190px;
  height: 254px;
  background: #131313a9;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  rotate: -3deg;
}

.card h2 {
  z-index: 1;
  color: white;
  font-size: 1.6em;
  text-align: center;
}

.card::before {
  content: '';
  position: absolute;
  width: 120px;
  background-image: linear-gradient(90deg, rgba(252,255,115,1) 36%, rgba(252,176,69,1) 80%);
  height: 130%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card::after {
  content: '';
  position: absolute;
  background: #111111;
  inset: 5px;
  border-radius: 15px;
}  







/* ------------------------------footer------------------------------ */
#connect {
  align-items: center;
  justify-content: center;
  margin-bottom: 3%;
  padding-top: 3%;
  padding: 6%

}


.cardX {
  display: flex;
  height: 70px;
  width: 350px;
  margin: 0 auto; 

    
}

.cardX svg {
  position: absolute;
  display: flex;
  width: 60%;
  height: 100%;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  padding: 0.2rem;
  cursor: pointer;
}

.cardX .social-link1,.cardX .social-link2,.cardX .social-link3,.cardX .social-link4,.cardX .social-link5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 50px;

}

.cardX svg {
  transform: scale(1);
}

.cardX .social-link1:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  animation: bounce_613 0.4s linear;
}

.cardX .social-link2:hover {
  background-color: #242c34;
  animation: bounce_613 0.4s linear;
}

.cardX .social-link3:hover {
  background-color: #5865f2;
  animation: bounce_613 0.4s linear;
}

.cardX .social-link4:hover {
  background-color: #0a66c2;
  animation: bounce_613 0.4s linear;
}

.cardX .social-link5:hover {
  background-color: #ff8000;
  animation: bounce_613 0.4s linear;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}



footer{
  margin-top: 10%;
  background-color: #111;
   /* From https://css.glass */
  background: rgba(46, 46, 46, 0.068);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(105px);
  border-top: 1px solid rgba(146, 146, 146, 0.3);
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 700 700" width="700" height="700" opacity="0.5"><defs><filter id="nnnoise-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="linearRGB"><feTurbulence type="fractalNoise" baseFrequency="0.153" numOctaves="4" seed="15" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feSpecularLighting surfaceScale="19" specularConstant="1" specularExponent="20" lighting-color="%23a49b2e" x="0%" y="0%" width="100%" height="100%" in="turbulence" result="specularLighting"><feDistantLight azimuth="3" elevation="121"></feDistantLight></feSpecularLighting></filter></defs><rect width="700" height="700" fill="transparent"></rect><rect width="700" height="700" fill="%23a49b2e" filter="url(%23nnnoise-filter)"></rect></svg>');
     
}

.footerContainer{
  width: 100%;
  padding: 70px 30px 20px ;
}
.footerNav{
  margin: 30px 0;
  text-align: center;
}
.footerNav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  
}
.footerNav ul li a{
  color:white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
  transition: 0.5s;

}
.footerNav ul li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.footerBottom{
  background-color: #000;
  padding: 20px;
  text-align: center;
}
.footerBottom p{
  color: white;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media (max-width: 700px){

  .footerNav ul li{
      font-size: small;
  }
  .socialIcons a{
      padding: 8px;
      margin: 4px;
  }
}














/* ------------------------------ media screen ------------------------------ */

@media only screen and (max-width: 768px) {
    
  .welcome-section {

  display: flex; 
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  margin-top: 3rem;

  }
  .aboutme-text p{

  margin-bottom: 4%;
  margin-right: 5%;
  margin-left: 5%;
  align-items: center;
  width: 100%;
  }

  #threed-image {

  width: 100%; /* Set width to 100% */
  max-width: 110%; /* Adjust max-width to maintain aspect ratio */
  margin: 0 auto; /* Center the image horizontally */
  }

  .threed-image {
  top: 0; /* Position from the top */
  left: 0; /* Align to the left */
  z-index: -1;
  }

  .welcome-text2 {
  text-align: center;
  margin-top: 10%;

  }

  #intro {
  font-size: 16px; 
  }

  #naegis {
  font-size: 40px;
  }

  /* === removing default button style ===*/


  #intro3 {
  font-size: 15px; 
  margin-bottom: 20px; 
  }

  .button {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 70px;
  }
    
       
  .aboutme-image img {
  display: none !important;

  }

  .star {
  margin: 0;
  padding-top: 2rem;
  width: 13em;
  height: 13em;
  }


  .icon {
  font-size: 24px; /* Decrease icon size */
  }
  #connect {
  padding: 3%; /* Decrease padding */
  margin-top: 2%; /* Decrease margin */
  margin-bottom: 2%; /* Decrease margin */
  }

  .pointer img {
  margin-left: 10%;
  width: 80%; /* Decrease pointer image size */
  }

  .button1 {
  padding: 10px; /* Decrease button padding */
  font-size: 10px; /* Decrease button font size */
  }
      
  .section-title {
  font-size: medium;

  }

  #projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;

  }

  /* Add margin to individual project cards */
  .card {
  margin-bottom: 20px;
  }

  .skills-section {
  margin: auto;
  width: 100%; }

  .cardS {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 20px;
  transition: all .1s;
  text-align: center; /* Center text horizontally */
  display: flex; /* Make card a flexbox container */
  justify-content: center; /* Center content horizontally within card */
  align-items: center; /* Center content vertically within card */
  }

  .card2S {
  text-align: center;
  width: 70px;
  height: 70px;
  background-color: var(--background2);
  border-radius:5px;
  transition: all .2s;

  }


  .card2S svg {
  margin-top: 13%;
  width: 50%;
  height: auto;
  }

  .card2S h2 {
  line-height: 0px;
  font-size: 0.5rem;
  }

  /* .cardS:hover {
  box-shadow: 0px 0px 30px 1px rgba(230, 128, 255, 0.575);
  } */

  .cardS2 {
  margin: auto;


  }

  .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 2fr));
  gap: 15px;
  padding: 1.5rem;
  }

  .box-container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 2fr));
  gap: 50px;
  padding: 3rem;
  }

  .box-container3 {
  display: grid;
  grid-template-columns: auto;
  gap: 30px;
  }

  .box-container4 {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
    }


  .card0 {
  width: 300px;
  }

  .card__title {
  font-size: 15px;
  }



  .card__description {
  margin: 10px;
  font-size: 12px;

  }

  .card__button {
  padding:8px;
  font-size: 12px;
  }

  .ui-btn {
  margin: 0 auto;
  }

  .ui-btn span {

  font-size: 60px; 
  font-weight: 800;

  }


  .cardX {
  height: 50px;
  width: 300px;
  margin-bottom: 10%;
  margin: auto;
  }

  .cardX svg {
  width: 50%;
  }

  .box-container2 {
  display: grid;
  grid-template-columns: auto;
  width: 80%;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;

  }



  .education {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  }

  .school-card {
  display: flex;
  align-items: center;
  width: 24rem;
  margin: 0 auto;
  justify-content: center;
  /* background-color: #323232; */
  }

  .school-img {
  display: flex;
  align-items: center;
  background: rgba(46, 46, 46, 0.315);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 0.4rem;
  margin-right: 1.2rem;
  margin-left: 0.8rem;
  }

  .svg {
  display: none !important;
  }

  .circle {
  display: none !important;
  }

  .footerBottom {
  font-size: 12px;
  }

  /* .card {
    display: none !important;
  } */

  .contact-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .card {
    width: 70%; /* Adjust width for smaller screens */
  }

  .card::before {
    width: 60%; 

  }

  .form-container {
    width: 100%; /* Adjust width for smaller screens */
  }
}











@media only screen and (max-width: 1200px) and (min-width: 769px) {
  .box-container2 {
    grid-template-columns: auto auto;
  }

  .box-container {
    grid-template-columns: auto auto auto auto;
  }

  .box-container3 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px
  }


  /* .svg {
    display: none !important;
  } */

  .contact-container {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  .card {
    width: 50%; /* Adjust width for smaller screens */
  }

  .form-container {
    width: 100%; /* Adjust width for smaller screens */
  }

  .education {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .school-card {
    display: flex;
    align-items: center;
    width: 24rem;
    margin: 0 auto;
    justify-content: center;
    /* background-color: #323232; */
  }
  
  .school-img {
    display: flex;
    align-items: center;
    background: rgba(46, 46, 46, 0.315);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 0.4rem;
    margin-right: 1.2rem;
    margin-left: 0.8rem;
  }

  /* .card {
    display: none !important;
  }
  */

}


::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: #FEE1A2;
  border-radius: 5px;
}


/* ============================== NEW ADDITIONS ============================== */

/* Open to Work Badge */
.open-to-work {

  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid rgba(100, 220, 100, 0.4);
  background: rgba(50, 180, 50, 0.1);
  color: #90ee90;


}

/* ============================== ABOUT SECTION ============================== */
.about-section {
  width: 80%;
  margin: 0 auto;
  padding-top: 9rem;
  text-align: center;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  margin-top: 2.5rem;
  text-align: left;
}

.about-photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.about-photo-frame {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(254, 227, 156, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #FEE39C44, transparent, #FEE39C22);
  z-index: 0;
}

.about-photo-placeholder {
  text-align: center;
  z-index: 1;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-fun-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.fun-fact-pill {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(254, 227, 156, 0.08);
  border: 1px solid rgba(254, 227, 156, 0.2);
  font-size: 12px;
  color: #e6e6e6;
  text-align: center;
  transition: all 0.2s;
}

.fun-fact-pill:hover {
  background: rgba(254, 227, 156, 0.15);
  border-color: rgba(254, 227, 156, 0.4);
}

.about-text {
  max-width: 560px;
}

.about-greeting {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e6e6e6;
}

.about-bio {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(230, 230, 230, 0.75);
  margin-bottom: 14px;
}

.about-currently {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.currently-label {
  font-size: 12px;
  font-weight: 600;
  color: #FEE39C;
  white-space: nowrap;
}

.currently-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.currently-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  background: rgba(254, 227, 156, 0.12);
  border: 1px solid rgba(254, 227, 156, 0.3);
  color: #FEE39C;
  font-weight: 500;
}

/* ============================== EXPERIENCE SECTION ============================== */
.experience-section {
  width: 80%;
  margin: 0 auto;
  padding-top: 9rem;
  text-align: center;
}

.timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 2rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #FEE39C, rgba(254, 227, 156, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2.42rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FEE39C;
  border: 3px solid #0c0c0c;
  box-shadow: 0 0 10px rgba(254, 227, 156, 0.5);
}

.timeline-content {
  background: rgba(46, 46, 46, 0.2);
  border: 1px solid rgba(146, 146, 146, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  backdrop-filter: blur(5px);
  transition: all 0.2s;
}

.timeline-content:hover {
  border-color: rgba(254, 227, 156, 0.3);
  background: rgba(46, 46, 46, 0.35);
  transform: translateX(4px);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.timeline-role {
  font-size: 1rem;
  font-weight: 700;
  color: #e6e6e6;
}

.timeline-company {
  font-size: 0.85rem;
  color: #a9a9a9;
  font-weight: 400;
  margin-top: 3px;
}

.timeline-date {
  font-size: 0.75rem;
  color: rgba(230, 230, 230, 0.5);
  white-space: nowrap;
  padding: 3px 10px;
  border: 1px solid rgba(146, 146, 146, 0.2);
  border-radius: 20px;
  flex-shrink: 0;
}

.timeline-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.timeline-bullets li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(230, 230, 230, 0.7);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.timeline-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FEE39C;
  font-size: 0.75rem;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


/* ============================== AWARDS SECTION ============================== */
.awards-section {
  width: 80%;
  margin: 0 auto;
  padding-top: 9rem;
  text-align: center;

}


.awards-grid {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  text-align: center;
  align-items: center;
  width: 80%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 24px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(146, 146, 146, 0.15);
  border-bottom: 1px solid rgba(146, 146, 146, 0.15);
  transition: all 0.25s;
  position: relative;
}

.award-card:hover {
  background: rgba(254, 227, 156, 0.04);
  border-left-color: rgba(254, 227, 156, 0.4);
}

.award-card:hover .award-icon {
  transform: scale(1.5);
}

.award-icon {
  font-size: 1.8rem;
  transition: transform 0.25s;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.award-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e6e6e6;
  line-height: 1.4;
}

.award-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(230, 230, 230, 0.5);
  line-height: 1.5;
}

.award-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FEE39C;
  margin-top: auto;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .awards-section {
    width: 90%;
    padding-top: 5rem;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================== TECH TAGS (project cards) ============================== */
.tech-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(254, 227, 156, 0.1);
  border: 1px solid rgba(254, 227, 156, 0.25);
  color: rgba(254, 227, 156, 0.85);
  letter-spacing: 0.3px;
}

.card-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 6px;
}

/* ============================== FILTER TABS ============================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1.5rem 0 2rem 0;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 20px;
  border: 1px solid rgba(146, 146, 146, 0.35);
  background: transparent;
  color: rgba(230, 230, 230, 0.7);
  font-family: "poppins";
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: rgba(254, 227, 156, 0.4);
  color: #FEE39C;
}

.filter-btn.active {
  background: rgba(254, 227, 156, 0.12);
  border-color: rgba(254, 227, 156, 0.5);
  color: #FEE39C;
  font-weight: 600;
}

.cardP.hidden {
  display: none;
}

/* ============================== SCROLL FADE-IN ============================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================== RESPONSIVE — NEW SECTIONS ============================== */
@media (max-width: 768px) {
  .about-section,
  .experience-section {
    width: 90%;
    padding-top: 5rem;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-currently {
    justify-content: center;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-header {
    flex-direction: column;
    gap: 6px;
  }

  .timeline-date {
    align-self: flex-start;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
}


/* ============================== COLLAPSIBLE EXPERIENCE ============================== */
.timeline-item.timeline-hidden {
  display: none;
}

.timeline-item.timeline-reveal {
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 1.2rem auto 0 auto;
  padding: 8px 22px;
  border-radius: 20px;
  border: 1px solid rgba(254, 227, 156, 0.5);
  background: rgba(254, 227, 156, 0.07);
  color: #FEE39C;
  font-family: "poppins";
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 8px rgba(254, 227, 156, 0.2),
              0 0 20px rgba(254, 227, 156, 0.08);
  animation: btnGlow 2.5s ease-in-out infinite;
}

.experience-toggle-btn:hover {
  background: rgba(254, 227, 156, 0.15);
  border-color: rgba(254, 227, 156, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(254, 227, 156, 0.45),
              0 0 40px rgba(254, 227, 156, 0.2);
  animation: none;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(254, 227, 156, 0.2),
                0 0 18px rgba(254, 227, 156, 0.07);
  }
  50% {
    box-shadow: 0 0 12px rgba(254, 227, 156, 0.4),
                0 0 30px rgba(254, 227, 156, 0.15);
  }
}


.experience-toggle-btn svg {
  transition: transform 0.45s ease;
}


/* ============================== SMALLER TECH CARDS ============================== */
.cardS {
  width: 100px !important;
  height: 100px !important;
}

.card2S {
  width: 100px !important;
  height: 100px !important;
}

.card2S svg {
  margin-top: 10% !important;
  width: 42% !important;
}

.card2S h2 {
  font-size: 9px !important;
  line-height: 14px !important;
  font-weight: 500 !important;
  padding: 0 4px !important;
}

.box-container {
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr)) !important;
  gap: 8px !important;
}

/* ============================== TIMELINE ICON ============================== */
.timeline-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.timeline-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.timeline-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(254, 227, 156, 0.08);
  border: 1px solid rgba(254, 227, 156, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .cardS { width: 70px !important; height: 70px !important; }
  .card2S { width: 70px !important; height: 70px !important; }
  .card2S svg { width: 45% !important; }
  .card2S h2 { font-size: 7px !important; }
  .box-container { grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)) !important; }
}


/* ============================== MARQUEE ============================== */
.skills-section {
  padding-top: 9rem;
  text-align: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
 
.marquee-wrapper {


  width: 80%;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);

  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
 
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
 
.marquee-left {
  animation: scrollLeft 35s linear infinite;
}
 
.marquee-right {
  animation: scrollRight 40s linear infinite;
}
 
.marquee-track:hover {
  animation-play-state: paused;
}
 
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
 
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 90px;
  padding: 16px 10px;
  border-radius: 14px;
  /* background: rgba(46, 46, 46, 0.25);
  border: 1px solid rgba(146, 146, 146, 0.15); */
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}
 
.marquee-item:hover {
  border-color: rgba(254, 227, 156, 0.4);
  background: rgba(254, 227, 156, 0.06);
  transform: translateY(-3px);
}
 
.marquee-item svg {
  width: 36px;
  height: 36px;
}
 
.marquee-item span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(230, 230, 230, 0.65);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 

/* ============================== BENTO TECH GRID ============================== */
.skills-section {
  padding-top: 9rem;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  overflow: visible;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 10px;
  margin-top: 2rem;
}

.bento-card {
  background: rgba(46, 46, 46, 0.2);
  border: 1px solid rgba(146, 146, 146, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: relative;
  transition: all 0.25s;
  cursor: default;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254,227,156,0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.bento-card:hover {
  border-color: rgba(254, 227, 156, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-wide {
  grid-column: span 2;
}

.bento-card svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.bento-wide svg {
  width: 44px;
  height: 44px;
}

.bento-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(230, 230, 230, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.bento-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(254, 227, 156, 0.12);
  border: 1px solid rgba(254, 227, 156, 0.3);
  color: #FEE39C;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .skills-section {
    width: 90%;
    padding-top: 5rem;
  }
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 90px;
  }
  .bento-wide {
    grid-column: span 1;
  }
  .bento-wide svg {
    width: 36px;
    height: 36px;
  }
}