@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
#burger-list {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(15, 32, 39, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  top: 75px;
}
#burger-list a {
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  width: 100%;
  text-align: center;
  transition: 0.3s ease-in-out;
}
#burger-list a:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.2);
  color: #00d4ff;
}
#burger-list a:hover {
  background: #00d4ff;
  color: #0f2027;
  border-radius: 5px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  nav {
    position: initial;
  }
}
nav .nav-logo {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: bold;
  color: #00d4ff;
  letter-spacing: -2px;
  transition: 0.3s ease-in-out;
}
nav .nav-logo:hover {
  transform: scale(1.05);
}
nav .nav-logo span {
  font-size: 28px;
  color: white;
}
nav .nav-options {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav .nav-options a {
  color: white;
  font-family: sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
nav .nav-options a:hover {
  color: #0f2027;
  background: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}
@media (max-width: 800px) {
  nav .nav-options a {
    display: none;
  }
}
nav .nav-options button {
  border-radius: 8px;
  border: 2px solid #00d4ff;
  padding: 8px 20px;
  background-color: transparent;
  color: #00d4ff;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
nav .nav-options button:hover {
  background-color: #00d4ff;
  color: #0f2027;
}
nav .burger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
nav .burger .burger-button {
  position: relative;
  width: 35px;
  height: 5px;
  background-color: white;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
}
nav .burger .burger-button:before, nav .burger .burger-button:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 5px;
  background-color: white;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
}
nav .burger .burger-button:before {
  transform: translateY(-12px);
}
nav .burger .burger-button:after {
  transform: translateY(12px);
}
nav .burger.open-burger .burger-button {
  background: transparent;
}
nav .burger.open-burger .burger-button:before {
  transform: rotate(45deg) translate(6px, 6px);
}
@media only screen and (max-width: 600px) {
  nav .burger.open-burger .burger-button:before {
    transform: rotate(45deg) translate(0px, -3px);
  }
}
nav .burger.open-burger .burger-button:after {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media only screen and (max-width: 600px) {
  nav .burger.open-burger .burger-button:after {
    transform: rotate(-45deg) translate(3px, 0px);
  }
}
@media (min-width: 800px) {
  nav .burger {
    display: none;
  }
}

.footer-container {
  margin-top: 50px;
  padding: 30px 0;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  border-radius: 20px 20px 0 0;
  box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 600px) {
  .footer-container {
    border-radius: 0;
  }
}
.footer-container .footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  .footer-container .footer {
    flex-direction: column;
    text-align: center;
  }
}
.footer-container .footer .footer-area {
  flex: 1;
  min-width: 250px;
}
.footer-container .footer .footer-area .area-title {
  color: #00d4ff;
  font-size: 1.7em;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 600px) {
  .footer-container .footer .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-container .footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 500;
  margin: 5px 0;
}
.footer-container .footer .contact-info p i {
  color: #00d4ff;
  font-size: 20px;
}
.footer-container .footer .contact-info p a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer-container .footer .contact-info p a:hover {
  color: #00d4ff;
  text-decoration: underline;
}
.footer-container .footer .socials {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .footer-container .footer .socials {
    justify-content: center;
  }
}
.footer-container .footer .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.footer-container .footer .socials a:hover {
  background: #00d4ff;
  transform: scale(1.1);
}
.footer-container .footer .socials a i {
  font-size: 24px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.footer-container .footer .socials a i:hover {
  color: #0f2027;
}

.intro-container {
  position: relative;
  overflow: hidden;
  padding-top: 89px;
}
@media only screen and (max-width: 600px) {
  .intro-container {
    padding-top: 0;
    height: calc(100dvh - 89px);
    min-height: auto;
  }
}
.intro-container .background-canvas {
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.intro-container #intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85dvh;
  text-align: center;
  padding: 20px;
}
.intro-container #intro .intro-image img {
  width: 220px;
  border-radius: 50%;
  border: 3px solid #00d4ff;
  box-shadow: 0px 0px 15px rgba(0, 212, 255, 0.6);
  margin-bottom: 30px;
  transition: transform 0.4s ease-in-out;
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .intro-container #intro .intro-image img {
    width: 190px;
  }
}
.intro-container #intro .intro-image img:hover {
  transform: scale(1.05);
}
.intro-container #intro .intro-block .intro-greeting {
  font-size: 24px;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 1px;
  animation: fade-in 1s;
}
@media only screen and (max-width: 600px) {
  .intro-container #intro .intro-block .intro-greeting {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .intro-container #intro .intro-block .intro-greeting {
    font-size: 22px;
  }
}
.intro-container #intro .intro-block .intro-name {
  font-size: 50px;
  font-weight: bold;
  color: #f0f0f0;
  margin: 5px 0;
  animation: fade-in 1.5s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .intro-container #intro .intro-block .intro-name {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .intro-container #intro .intro-block .intro-name {
    font-size: 42px;
  }
}
.intro-container #intro .intro-block .intro-profession {
  font-size: 28px;
  font-style: italic;
  color: #00d4ff;
  margin: 5px 0;
  animation: fade-in 2s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .intro-container #intro .intro-block .intro-profession {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .intro-container #intro .intro-block .intro-profession {
    font-size: 24px;
  }
}
.intro-container #intro .intro-block .intro-details p {
  font-size: 20px;
  color: #a0d2eb;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  max-width: 900px;
  margin-top: 20px;
  line-height: 1.6;
  animation: fade-in 3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .intro-container #intro .intro-block .intro-details p {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .intro-container #intro .intro-block .intro-details p {
    font-size: 16px;
  }
}
.intro-container #intro .intro-block .intro-cta {
  margin-top: 25px;
}
.intro-container #intro .intro-block .intro-cta a {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #0f2027;
  background: #00d4ff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}
.intro-container #intro .intro-block .intro-cta a:hover {
  background: #fff;
  color: #00d4ff;
  transform: scale(1.05);
}

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(91, 173, 170);
  font-size: 14px;
  font-weight: bold;
  opacity: 0.8;
  animation: fade-in 2s ease-in-out;
}
.scroll-hint span {
  margin-bottom: 5px;
}
.scroll-hint .scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgb(91, 173, 170);
  border-radius: 12px;
  position: relative;
  margin-inline: auto;
}
.scroll-hint .scroll-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: rgb(91, 173, 170);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#about-me {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding-block: 40px;
}
#about-me .grades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 1rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 600px) {
  #about-me .grades-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  #about-me .grades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#about-me .grades-grid .grade-group {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#about-me .grades-grid .grade-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
#about-me .grades-grid .grade-group .year {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
#about-me .grades-grid .grade-group .modules {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about-me .grades-grid .grade-group .modules li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}
#about-me .grades-grid .grade-group .modules li span {
  font-weight: 600;
}
#about-me .grades-grid .grade-group .modules li:last-child {
  border-bottom: none;
}
#about-me .grades-grid .color-green {
  color: #27ae60;
}
#about-me .about-me-block .about-me-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a202c;
}
#about-me .about-me-block .about-me-content {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 1320px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3748;
}
@media only screen and (max-width: 600px) {
  #about-me .about-me-block .about-me-content {
    padding: 2rem 1rem;
  }
}
#about-me .about-me-block .about-me-content p {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 600px) {
  #about-me .about-me-block .about-me-content p {
    font-size: 12px;
  }
}
#about-me .about-me-block .about-me-content p:first-of-type {
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  #about-me .about-me-block .about-me-content p:first-of-type {
    font-size: 15px;
  }
}
#about-me .about-me-block .about-me-content p:last-of-type {
  font-style: italic;
  color: #4a5568;
}
#about-me .about-me-block .education {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  max-width: 1320px;
  margin: 0 auto 3rem auto;
}
@media only screen and (max-width: 600px) {
  #about-me .about-me-block .education {
    padding: 2rem 0;
  }
}
#about-me .about-me-block .education-header {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a202c;
}
#about-me .about-me-block .university,
#about-me .about-me-block .degree,
#about-me .about-me-block .years,
#about-me .about-me-block .modules-header {
  text-align: center;
  margin: 0.5rem 0;
  font-weight: 500;
  color: #4a5568;
}
#about-me .about-me-block .grades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
@media only screen and (max-width: 600px) {
  #about-me .about-me-block .grades-grid {
    grid-template-columns: 1fr;
  }
}
#about-me .about-me-block .grade-group {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}
#about-me .about-me-block .grade-group .year {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #2d3748;
}
#about-me .about-me-block .grade-group .modules {
  list-style: none;
  padding: 0;
}
#about-me .about-me-block .grade-group .modules li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #4a5568;
}
#about-me .about-me-block .grade-group .modules li span {
  font-weight: bold;
}
#about-me .about-me-block .grade-group .modules li .color-green {
  color: #10b981;
}
#about-me .about-me-block .grade-group .modules li .color-lgreen {
  color: #34d399;
}
#about-me .about-me-block .grade-group .modules li .color-yellow {
  color: #fbbf24;
}
#about-me .about-me-image {
  width: 100%;
  height: 85%;
  -o-object-fit: cover;
     object-fit: cover;
}

.education .education-header {
  color: rgb(91, 173, 170);
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .education .education-header {
    font-size: 24px;
  }
}
.education .university {
  color: rgb(132, 144, 172);
  font-size: 23px;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .education .university {
    font-size: 19px;
  }
}
.education .degree {
  color: rgb(201, 213, 244);
  font-size: 23px;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .education .degree {
    font-size: 19px;
  }
}
.education .years {
  font-size: 18px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 600px) {
  .education .years {
    font-size: 15px;
  }
}
.education .modules-header {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 600px) {
  .education .modules-header {
    font-size: 15px;
  }
}
.education .year {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .education .year {
    font-size: 12px;
  }
}
.education .modules {
  list-style-type: none;
  text-decoration: none;
  padding: 0;
}
.education .modules li {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.education .modules li span {
  float: right;
  font-weight: bold;
  position: relative;
}
.education .modules li span span {
  position: absolute;
  left: 100%;
}

.work-experience {
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
  width: 100%;
  max-width: 1320px;
}
.work-experience .header {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  margin: 40px 0;
  white-space: nowrap;
  color: white;
  padding-inline: 20px;
  padding-top: 15px;
}
@media only screen and (max-width: 600px) {
  .work-experience .header {
    font-size: 30px;
  }
}
.work-experience .header:after {
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  top: -5px;
  background-color: white;
}
.work-experience .description {
  color: white;
  padding: 20px;
}
.work-experience .experience-cards {
  display: grid;
  gap: 15px;
  padding-inline: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 600px) {
  .work-experience .experience-cards {
    grid-template-columns: 1fr;
  }
}
.work-experience .experience-cards .grid-item:nth-last-child(1):nth-child(odd) {
  grid-column: span 2;
}
.work-experience .experience-cards .experience-card {
  background-color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.25s;
}
@media only screen and (max-width: 600px) {
  .work-experience .experience-cards .experience-card {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
}
.work-experience .experience-cards .experience-card:hover {
  transform: scale(1.1);
}
.work-experience .experience-cards .experience-card .job-image {
  height: 75px;
  width: 75px;
}
.work-experience .experience-cards .experience-card .job-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 600px) {
  .work-experience .experience-cards .experience-card .job-details {
    width: 100%;
  }
}
.work-experience .experience-cards .experience-card .job-details h3 {
  font-size: 18px;
  font-weight: bold;
  color: rgb(10, 25, 48);
}
.work-experience .experience-cards .experience-card .job-details h4 {
  font-size: 15px;
  font-weight: 500;
  color: rgb(91, 173, 170);
}
.work-experience .experience-cards .experience-card .job-details p {
  font-size: 12px;
  font-weight: 400;
  color: rgb(132, 144, 172);
  margin: 0;
}

#projects .my-projects {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  margin: 40px 0;
  white-space: nowrap;
  color: rgb(201, 213, 244);
  position: relative;
}
@media only screen and (max-width: 600px) {
  #projects .my-projects {
    font-size: 30px;
  }
}
#projects .my-projects:after {
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  top: -5px;
  background-color: rgb(201, 213, 244);
  margin-left: 10px;
}

.project-block {
  max-width: 1440px;
  margin-inline: auto;
}

.project-slide {
  text-decoration: none;
}
.project-slide img {
  width: 100%;
  min-height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 600px) {
  .project-slide img {
    min-height: 0;
  }
}
.project-slide .project-slide-title {
  text-align: center;
  color: white;
  padding: 10px;
  border: 2px solid white;
}

.project-block-header {
  text-align: center;
  color: rgb(201, 213, 244);
  font-weight: 600;
  margin-bottom: 10px;
}

.slider-block {
  position: relative;
  margin-bottom: 55px;
}
.slider-block i {
  color: white;
  position: absolute;
  font-size: 25px;
  top: 100%;
  cursor: pointer;
  transition: ease-in-out 0.5s;
}
.slider-block i:hover {
  color: rgb(91, 173, 170);
}
.slider-block .arrow-right {
  right: 5%;
  top: -5px;
}
.slider-block .arrow-left {
  left: 5%;
  top: -5px;
}

.tech-used {
  padding: 10px;
  background-color: white;
  border-radius: 0 0 10px 10px;
}
.tech-used .tech-used-header {
  color: rgb(10, 25, 48);
  font-weight: 600;
  margin: 10px;
  white-space: nowrap;
}
.tech-used .tech-used-block {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.tech-used .tech-used-block .tech-used-item {
  font-size: 10px;
  margin: 10px;
  padding: 10px 25px;
  background-color: rgb(10, 25, 48);
  color: white;
  border-radius: 10px;
}
@media only screen and (max-width: 600px) {
  .tech-used .tech-used-block .tech-used-item {
    font-size: 12px;
    font-weight: 400;
    border-radius: 0;
    border: 1px solid;
    margin: 0;
  }
}

#skills {
  padding-block: 55px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#skills .skills-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  margin: 40px 0;
  white-space: nowrap;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}
@media only screen and (max-width: 600px) {
  #skills .skills-header {
    font-size: 30px;
  }
}
#skills .skills-header:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #3498db;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#skills .skills-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 600px) {
  #skills .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1023px) {
  #skills .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#skills .skills-grid .skill-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#skills .skills-grid .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
#skills .skills-grid .skill-card .card-image {
  padding: 15px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f4f4f4;
}
@media only screen and (max-width: 600px) {
  #skills .skills-grid .skill-card .card-image {
    padding: 10px;
    height: 100px;
    width: 100px;
  }
}
#skills .skills-grid .skill-card .card-image img {
  height: 100%;
  width: 100%;
  transform: scale(0.9);
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 600px) {
  #skills .skills-grid .skill-card .card-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#skills .skills-grid .skill-card .card-image img.auto-width {
  width: auto;
}
#skills .skills-grid .skill-card .card-image img:hover {
  transform: scale(1);
}
#skills .skills-grid .skill-card .card-title {
  color: #333;
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  #skills .skills-grid .skill-card .card-title {
    font-size: 17px;
  }
}

* {
  font-family: "Roboto", sans-serif;
}
* p {
  font-family: "Roboto", sans-serif;
}

:target {
  scroll-margin-top: 89px; /* Adjust the offset of scrolling*/
}
@media only screen and (max-width: 600px) {
  :target {
    scroll-margin-top: 0;
  }
}

.row {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .row {
    width: auto;
  }
}

html {
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
}

body {
  margin: 0;
  background: none;
  color: black;
}

section {
  min-height: 100vh;
  width: 100%;
}

.bk-white {
  background-color: white;
}

.color-green {
  color: rgb(0, 166, 81);
}

.color-lgreen {
  color: yellowgreen;
}

.color-yellow {
  color: rgb(251, 78, 18);
}

.no-min-height {
  min-height: -moz-fit-content;
  min-height: fit-content;
}/*# sourceMappingURL=main.css.map */