@import url("https://fonts.googleapis.com/css2?family=Alike&family=Barlow+Condensed: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&family=Frijole&family=Handjet:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alike&family=Barlow+Condensed: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&family=Frijole&family=Handjet:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Pixelify+Sans:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  padding: 0;
  margin: 0;
}
/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px; /* width of vertical scrollbar */
  height: 10px; /* height of horizontal scrollbar */
  background-color: rgb(50, 54, 71);
}

::-webkit-scrollbar-track {
  background: rgb(50, 54, 71);
}

::-webkit-scrollbar-thumb {
  background: rgb(50, 54, 71);
  border-radius: 0; /* flat corners, not rounded */
  border: 2px solid rgb(50, 54, 71);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(50, 54, 71);
}

/* Firefox support */
* {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: #333 rgb(50, 54, 71);
}

body {
  background: rgb(255, 255, 255);
  height: 100vh;
  width: 100%;
  color: rgb(213, 140, 26);
  font-family: "Nunito Sans", sans-serif;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><defs><radialGradient id='grad' cx='50%25' cy='50%25' r='50%25'><stop offset='0%25' stop-color='yellow' stop-opacity='1'/><stop offset='100%25' stop-color='orange' stop-opacity='0.8'/></radialGradient></defs><circle cx='16' cy='16' r='12' fill='url(%23grad)' stroke='white' stroke-width='2'/></svg>")
      16 16,
    auto;

  background-color: rgb(50, 54, 71);
}

.buble {
  position: relative;
  top: 50%;
  right: 0;
  color: blue;
  width: 50%;
  height: 50vh;
}

header {
  position: relative;

  display: flex;
  margin: 5px 5px;
  height: 8vh;
  justify-content: space-around;
  align-items: center;
  border-radius: 5px;
  font-size: 15px;
}
header:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  background: linear-gradient(
    120deg,
    #94b5eb,
    #acf307,
    #fa0303,
    #e7f3e9,
    #f00d0d
  );
}

header .h_logo,
.contact-footer .h_logo:hover {
  font-size: 25px;
  font-weight: bold;
  margin-left: 25px;
  color: white;
}
header .h_logo:hover,
.contact-footer .h_logo {
  color: rgb(45, 224, 9);
  cursor: pointer;
  border-bottom: 2px solid rgb(228, 228, 7);
}
header ul {
  width: 30%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  list-style: none;
  padding: 0;
}
header ul li {
  position: relative;
}
header ul li a {
  text-decoration: none;
  color: white;
}
header ul li:hover {
  border-bottom: 2px solid rgb(228, 228, 7);
}
header ul li a:hover {
  color: rgb(45, 224, 9);
}
header ul li:active:nth-child() {
  color: red;
}
nav {
  height: 100vh;
  overflow: hidden;
}
.navs {
  display: flex;
  width: 100%;
  height: 100vh;
}
.navs .left {
  width: 60%;
  position: relative;
  background: url("/images/me.png");
  background-size: 50vh;
  background-position: -10vh 80%;
  background-repeat: no-repeat;
  color: white;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navs .left .btxt {
  position: absolute;
  font-size: 7vw;
  bottom: 10%;
  font-weight: bold;
  opacity: 0;
  animation: slideIn 1.2s ease-out forwards;
  font-family: "Handjet", sans-serif;
  color: #a7ff5f;
  justify-content: center;
  align-items: center;
}
.navs .right {
  width: 40%;
  color: white;
  padding: 20px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: slideIn 1.2s ease-out forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nt1 {
  font-size: 3.5rem;
  font-weight: bold;
}
.nt2 {
  padding-right: 20%;
  font-weight: lighter;
  margin: 15px 0;
}
.navs button {
  width: 8rem;
  background-color: transparent;
  padding: 5px;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  color: rgb(255, 255, 0);
  border-bottom: 2px solid yellow;
}
.navs button:hover {
  color: red;
  border-bottom: 2px solid rgb(212, 60, 0);
}
/* START: Hamburger Menu Styles */
#menu-toggle {
  display: none; /* This checkbox will be hidden */
}

/* This is the container for the three bars */
.hamburger-menu {
  display: none; /* Hide the hamburger on large screens */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001; /* Ensure it's on top of other content */
}

/* This styles the individual bars of the icon */
.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  /* Show the hamburger menu icon */
  .hamburger-menu {
    display: flex;
  }

  /* Hide the original navigation list by default on small screens */
  header ul.h_btnlist {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 8vh; /* Position it below the header */
    right: 0;
    width: 50%;
    background-color: rgba(50, 54, 71, 0.95); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    gap: 20px;
  }

  @keyframes s2 {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* This is the key rule! It shows the menu when the hidden checkbox is checked */
  #menu-toggle:checked ~ .h_btnlist {
    display: flex;
    animation: s2 1.2s backwards;
  }

  /* Animate the hamburger icon into an 'X' when the menu is open */
  #menu-toggle:checked ~ .hamburger-menu .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  #menu-toggle:checked ~ .hamburger-menu .bar:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .hamburger-menu .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
/* END: Hamburger Menu Styles */
/* @media only screen and (max-width: 1024px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .navs .left {
    height: 50vh;
    position: relative;
    background: url("/images/me.png");
    background-size: 30vh;
    background-position: -20% 80%;
    background-repeat: no-repeat;
    color: white;
  }
  .navs .left::after {
    content: "";
    position: absolute;
    bottom: 2%;
    left: 0;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, #161813, #010300);
    border-radius: 2px;
  }
  .navs .left .btxt {
    position: absolute;
    color: white;
    font-size: 2.5rem;

    left: 0%;
    font-weight: bold;
    opacity: 0;
    animation: slideIn 1.2s ease-out forwards;
  }
  header ul {
    width: 90%;
    margin-top: 20px;
  }
  nav {
    height: auto;
  }
  .navs {
    flex-direction: column;
    height: auto;
  }
  .navs .left,
  .navs .right {
    width: 100%;
    box-sizing: border-box;
  }
  .navs .left {
    height: 60vh;
    background-size: contain;
    background-position: center bottom;
  }
  .navs .left .btxt {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    bottom: auto;
    right: auto;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
  .navs .right {
    height: auto;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  .nt1 {
    font-size: 2.5rem;
  }
  .nt2 {
    padding-right: 0;
  }
} */

@media only screen and (max-width: 1248px) {
  .nt1 {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 720px) {
  header .h_logo {
    margin-left: 0;
  }
  .navs {
    display: flex;
    flex-direction: column;
  }
  .navs .left,
  .navs .right {
    width: 100%;
  }

  .navs .left {
    height: 50vh;
    position: relative;
    background: url("/images/me.png");
    background-size: 30vh;
    background-position: -10% 80%;
    background-repeat: no-repeat;
    color: white;
  }
  /* .navs .left::after {
    content: "";
    position: absolute;
    bottom: 2%;
    left: 0;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, #161813, #010300);
    border-radius: 2px;
  } */
  .navs .left .btxt {
    font-size: 12vw;
  }

  .nt2 {
    font-size: 0.9rem;
    padding-right: 0;
  }
  .navs button {
    font-size: 1rem;
  }
  .navs .right {
    height: 50vh;
    padding: 0;
    text-align: center;
  }
}
/* About */

/* .about {
  height: 100vh;
  display: flex;
  align-items: center;
}
.left,
.right {
  width: 50%;
}

.about .left img {
  width: 50%;
  height: 50vh;
  border-radius: 15px;
}

.about .left {
  display: flex;
  flex-direction: column;
  color: white;
  font-weight: lighter;
}
.abtext {
  text-align: justify;
}

.info {
  display: flex;
  justify-content: space space-around;
  align-items: center;
  background-color: rgba(186, 93, 189, 0.027);
  border-radius: 20px;
  padding: 5px 10px;
}
.info div {
  display: flex;
  flex-direction: column;
}

.info img {
  height: 8vh;
} */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5%;
  gap: 40px;
  overflow: hidden;
  background-color: #12121c;
  font-family: "Poppins", sans-serif;
  color: #f0f0f0;
}

.about .left,
.about .right {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about .left {
  cursor: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="120" height="32">\
      <text x="0" y="24" font-size="24" fill="black">ℹ️</text>\
    </svg>')
      0 0,
    auto;
}

.about .right {
  cursor: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="120" height="32">\
      <text x="0" y="24" font-size="24" fill="black">🎓</text>\
    </svg>')
      0 0,
    auto;
}

.about .left .title {
  font-size: 2.5rem;
  font-weight: lighter;
  color: #f0f0f0;
  position: relative;
  padding-bottom: 10px;
}

.about .left .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 170px;
  height: 4px;
  background: linear-gradient(90deg, #81e60e, #47bbff);
  border-radius: 2px;
}

.stext.nt2 {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgb(55, 187, 22);
  background-color: rgba(147, 112, 219, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.abtext {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #a0a0c0;
  text-align: justify;
}

.right .title {
  font-size: 2.5rem;
  font-weight: lighter;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.info {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.right .info:nth-of-type(1) {
  animation-delay: 0.2s;
}
.right .info:nth-of-type(2) {
  animation-delay: 0.4s;
}

.info:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.info img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
}

.info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info div .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0;
}

.info div span {
  font-size: 0.9rem;
  color: #a0a0c0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    height: auto;
    padding: 50px 20px;
    text-align: center;
  }

  .left,
  .right {
    width: 100%;
    max-width: none;
    align-items: center;
  }

  .abtext {
    text-align: center;
  }

  .left .title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .left .title,
  .right .title {
    font-size: 2rem;
  }

  .info {
    flex-direction: column;
    text-align: center;
  }
}

/* Project */

.project {
  min-height: 100vh;
  padding: 80px 5%;
  background-color: #1a1a2e;
  font-family: "Poppins", sans-serif;
  color: #f0f0f0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.project-title-section {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 20px;
}

.project-title-section .subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a0a0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-title-section .main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.project-title-section .description {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #c0c0e0;
  max-width: 500px;
}

.project-title-section .explore-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #8a2be2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-title-section .explore-button:hover {
  color: #9370db;
}

.project-title-section .explore-button::after {
  content: "→";
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.project-title-section .explore-button:hover::after {
  transform: translateX(5px);
}

.projectCard {
  background-color: transparent;
  overflow: hidden;
  height: 400px;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.projectCard-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #2a2a4e;
  box-shadow: 10px 50px 15px rgba(121, 243, 8, 0.973);
  transition: transform 0.3s ease;
}

.projectCard:hover .projectCard-inner {
  transform: scale(1.02);
}

.projectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.projectCard:hover img {
  filter: brightness(1);
}

.projectCard .title {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.projectCard .lang {
  position: absolute;
  top: 75px;
  left: 30px;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 400;
  color: #b7e415;
  text-shadow: 1px 1px 5px rgba(229, 236, 204, 0.993);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projectCard:hover {
  transform: translateY(-8px);
}

@media (max-width: 1200px) {
  .project {
    grid-template-columns: repeat(2, 1fr);
  }
  .projectCard .title {
    font-size: 1.5rem;
    max-lines: 1;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .project {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 5%;
  }

  .project-title-section .main-title {
    font-size: 2.5rem;
  }

  .projectCard {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .project-title-section .main-title {
    font-size: 2rem;
  }

  .projectCard {
    height: 350px;
  }

  .projectCard .title {
    font-size: 1.5rem;
    top: 20px;
    left: 20px;
  }

  .projectCard .lang {
    font-size: 0.8rem;
    top: 55px;
    left: 20px;
  }
}

/* Contact & Footer */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

.contact-page {
  font-family: "Poppins", sans-serif;
  color: #f0f0f0;
  padding: 100px 5%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  cursor: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="120" height="32">\
      <text x="0" y="24" font-size="24" fill="black">📧</text>\
    </svg>')
      0 0,
    auto;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 80px;
}

.contact-intro {
  padding-right: 20px;
}

.contact-intro h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-intro p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #c0c0e0;
  margin-bottom: 40px;
  max-width: 400px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #8a2be2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #9370db;
}

.email-link .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.email-link:hover .arrow {
  transform: translateX(5px);
}

.contact-form-container h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;

  align-items: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: #2a2a4e;
  border: 1px solid #4a4a6e;
  border-radius: 8px;
  color: #f0f0f0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a0c0;
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 220px;
}

.submit-button {
  background-color: #8a2be2;
  border: none;
  color: #ffffff;
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.submit-button:hover {
  background-color: #9370db;
  transform: translateY(-2px);
}

.contact-footer {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fa {
  font-size: 0.9rem;
  color: #c0c0e0;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-intro,
  .contact-form-container {
    padding-right: 0;
    text-align: center;
  }

  .contact-intro h2,
  .contact-form-container h3 {
    font-size: 2.5rem;
  }

  .contact-intro p {
    max-width: 100%;
  }

  .email-link {
    justify-content: center;
  }

  .submit-button {
    align-self: center;
  }
  .contact-footer {
    padding-bottom: 10vh;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 60px 4%;
  }

  .contact-content-wrapper {
    gap: 40px;
  }

  .contact-intro h2,
  .contact-form-container h3 {
    font-size: 2rem;
  }
}

.contact-footer .h_logo,
.contact-footer .h_logo:hover {
  font-size: 25px;
  font-weight: bold;
  margin-left: 0;
  text-decoration: none;
}

#skills {
  border-top: 0.5px solid rgba(255, 255, 0, 0.233);
  min-height: 100vh;
  width: 100%;
  background-color: #12121c; /* Same as About section */
  font-family: "Poppins", sans-serif;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  box-sizing: border-box; /* Ensures padding is included in height */
}

.skills-title-section {
  text-align: center;
  margin-bottom: 50px;
}

.skills-title-section .subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a0a0c0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills-title-section .main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 10px;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 800px;
}

.skill-card {
  background-color: #1a1a2e; /* Same as project/info cards */
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.skill-card img {
  height: 60px;
  /* Set a fixed width for the image's container box */
  width: 90px;
  /* This is the key property: it fits the image within the box without stretching it */
  object-fit: contain;
  margin-bottom: 15px;
}

.skill-card span {
  color: #c0c0e0;
  font-size: 1rem;
  font-weight: 500;
}
