/*=============== GOOGLE FONTS ===============*/

@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");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* 
      Change favorite color
      Default: hsl(162, 100%, 40%)
      Orange: hsl(14, 100%, 65%) - Blue: hsl(210, 100%, 70%)
      Pink: hsl(356, 100%, 75%) - Purple: hsl(250, 100%, 75%)

      For more colors visit: https://colors.dopely.top/color-pedia
      -> Choose any color 
      -> click on tab (Color Conversion)
      -> Copy the color mode (HSL)
  */

  --hue: 210;
  --first-color: hsl(var(--hue), 25%, 50%);
  --first-color-alt: hsl(var(--hue), 50%, 45%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 5%, 62%);
  --body-color: hsl(228, 15%, 20%);
  --container-color: hsla(222, 42%, 6%, 0.669);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 4rem;
    --bigger-font-size: 2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
textarea,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
textarea,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 2rem;
}

.section__title,
.section__subtitle {
  text-align: center;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

.section__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

.section__subtitle {
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.section__subtitle span {
  color: var(--first-color);
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  background-color: var(--container-color);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__logo span {
  color: var(--first-color);
}

.nav__toggle,
.nav__close {
  display: flex;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off-screen */
    background-color: hsla(0, 0%, 10%, 0.3);
    width: 75%;
    height: 100%;
    padding: 4.5rem 0 0 3rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: right 0.4s ease-in-out; /* Smooth transition */
    z-index: 1000; /* Ensure it's on top of other elements */
  }
  .nav__menu.show-menu {
    /* Example class to show the menu */
    right: 0; /* Move into view */
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: color 0.4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Add blur to header */
.blur-header {
  background-color: transparent;
}

.blur-header::after {
  content: "";
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(0, 0%, 10%, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  background-color: var(--container-color);
}

.home__container {
  padding-top: 2rem;
  row-gap: 2.5rem;
}

.home__content {
  display: grid;
  row-gap: 2rem;
}

.home__data {
  text-align: center;
}

/*.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Home Section */
/*.home__container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  padding-block: 2rem;
} */

.home__subtitle,
.home__education {
  font-size: var(--bigger-font-size);
}

.home__subtitle span,
.home__title {
  color: var(--first-color);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-semi-bold);
}

.home_description {
  margin-block: 1rem 1.5rem;
}

/* .home__social {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.home__social-link {
  display: flex;
  background-color: var(--first-color-alt);
  padding: 0.5rem;
  color: var(--title-color);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.4s;
}

.home__social-link:hover {
  transform: translateY(-0.25rem);
} */
.home__social {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if necessary */
  column-gap: 1.5rem; /* Space between icons */
  margin-top: 1.5rem; /* Add spacing from the "View Resume" button */
  margin-block: 1rem 1.5rem;
}

.home__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--first-color-alt); /* Hexagonal background */
  padding: 0.75rem;
  color: var(--title-color);
  font-size: 1.75rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagonal shape */
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  
}

.home__social-link:hover {
  transform: translateY(-0.3rem); /* Add lift effect on hover */
  background-color: var(--first-color); /* Change background on hover */
}


.home__image {
  justify-self: center;
}

.home__blob {
  width: 320px;
  fill: var(--first-color);
  filter: drop-shadow(0 12px 12px hsla(var(--hue), 100%, 40%, 0.2));
}

.home__img {
  width: 900px;
  transform: translateX(-140px);
}

/*=============== BUTTON ===============*/
.button {
  /*display: inline-block;*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--first-color);
  padding: 0.5rem 0.5rem;
  border-radius: 0.7rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: box-shadow 0.7s;
  transform: translateY(0.7rem);
}

.button:hover {
  box-shadow: 0 8px 24px hsla(var(--hue), 100%, 40%, 0.25);
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 2.5rem;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: 2rem;
}

.about__image {
  justify-self: center;
}

.about__blob {
  width: 320px;
}

.about__blob path {
  stroke: var(--first-color);
}

/*=============== SKILLS ===============*/
.skills__container {
  display: flex;
  flex-direction: column; /* Arrange items in a column */
  align-items: center; /* Center items horizontally */
  gap: 20px; /* Adjust spacing between groups */

  /* width: 100%;
  max-width: 1200px;
  margin: 0 auto */
}

.skills__item {
  display: flex; /* Enables flexbox on the item container */
  flex-direction: row; /*------- Arrange items in a row */
  gap: 20px; /* Adjusts spacing between items */
  align-items: center; /* Vertically aligns items */
  
  /* flex-wrap: nowrap; 
  overflow-x: auto; 
  justify-content: center; */


}

.skills__group .tooltip {
  position: relative; /* Establishes a positioning context for the tooltip */
  display: inline-block; /* Ensures the tooltip container wraps around its content */
  text-align: center; /* -----Center align text */
}

.skills__group .tooltip img {
  row-gap: 2rem;
  width: 60px; /* Adjust width as needed */
  height: 60px; /* Adjust height as needed */
  object-fit: contain; /* Ensures the image fits within the dimensions without distortion */
}

.skills__group .tooltip .tooltiptext {
  visibility: hidden; /* Hides the tooltip text by default */
  width: 100px; /* Adjust width as needed */
  background-color: hsl(228, 15%, 20%); /* Tooltip background color */
  color: #fff; /* Tooltip text color */
  text-align: center; /* Center align the text */
  border-radius: 5px; /* Rounded corners */
  padding: 5px; /* Padding around the text */
  position: absolute; /* Position relative to the tooltip container */
  z-index: 1; /* Ensure the tooltip is above other content */
  bottom: 125%; /* Position above the logo */
  left: 50%; /* Center horizontally */
  margin-left: -50px; /* Center horizontally by offsetting half the width */
  opacity: 0; /* Hide the tooltip text initially */
  transition: opacity 0.3s; /* Smooth transition effect */
}

.skills__group .tooltip:hover .tooltiptext {
  visibility: visible; /* Show tooltip on hover */
  opacity: 0.9; /* Make tooltip fully opaque */
}

.skills__category {
  margin-bottom: 15px; /* Space between category title and logos */
  text-align: center; /* Center align the category title */
}

/*================EDUCATION=========================*/

.cornell-logo {
  width: auto; /* Adjust the size as needed */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Ensures the image is a block element */
  margin-bottom: 10px; /* Space between the image and the title */
  margin: 0 auto 10px auto;
}

.djsce-logo {
  width: 400px; /* Adjust the size as needed */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Ensures the image is a block element */
  margin-bottom: 10px; /* Space between the image and the title */
  margin: 0 auto 10px auto;
}

.education__details {
  font-size: 14px; /* Adjust font size as needed */
  color: var(--first-color); /* Adjust color as needed */
  margin-bottom: 10px; /* Space between the details and the description */
}

.education__duration,
.education__location {
  display: inline-block;
  margin-right: 5px;
}

.education__container {
  row-gap: 2rem;
  padding-block: 1rem;
}

.education__card {
  text-align: center;
  background-color: var(--container-color);
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--container-color);
  transition: border 0.4s;
}

.education__description {
  text-align: left; /* Left-aligns the text within this element */
  margin: 0 auto; /* Centers the description block */
  max-width: 500px; /* Optional: limits the width for better readability */
}

.education__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.education__card:hover {
  border: 2px solid var(--first-color);
}

/*=============== WORK EXPERIENCE ===============*/

.workexperience__company-logo {
  width: 250px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensures the image is a block element */
  margin-bottom: 10px; /* Space between the image and the title */
  margin: 0 auto 10px auto; /* Centers the image horizontally and adds space below */
}

.workexperience__details {
  font-size: 14px; /* Adjust font size as needed */
  color: var(--first-color); /* Adjust color as needed */
  margin-bottom: 10px; /* Space between the details and the description */
}

.workexperience__duration,
.workexperience__location {
  display: inline-block;
  margin-right: 5px;
}

.workexperience__container {
  row-gap: 2rem;
  padding-block: 1rem;
}

.workexperience__card {
  text-align: center;
  background-color: var(--container-color);
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--container-color);
  transition: border 0.4s;
}

.workexperience__description {
  text-align: left; /* Left-aligns the text within this element */
  margin: 0 auto; /* Centers the description block */
  max-width: 500px; /* Optional: limits the width for better readability */
}

.workexperience__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.workexperience__card:hover {
  border: 2px solid var(--first-color);
}

/*=============== PROJECTS ===============*/

.projects {
  background-color: var(--container-color);
}

.projects__container {
  row-gap: 2rem;
  justify-content: center;
  padding-block: 1rem;
}

.projects__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 800px;
  width: auto;
}

.project__title {
  text-align: center;
  margin-bottom: 1.5rem; /* Adjust the margin value as needed */
  padding: 10px 0; /* Optional: adds some padding above and below the title */
}

.projectCard {
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(var(--hue), 70%, 40%, 0.8) 190%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* .projects__modal {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(var(--hue), 70%, 40%, 0.8) 190%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s;
} */

.projects__subtitle,
.projects__button {
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.projects__subtitle {
  display: block;
  margin-bottom: 0.25rem;
}

.projects__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.3rem;
  text-align: center;
  margin: 10px 10px 0; /* Add margin at the top */
  padding: 5px 0; /* Optional: adds some padding above and below the title */
}

.projects__button {
  color: white;
}

.center-text {
  color: var(--text-color);
  text-align: left; /* Left-aligns the text within this element */
  margin: 0 auto; /* Centers the description block */
  max-width: 500px; /* Optional: limits the width for better readability */
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
  .projects__card {
    height: auto; /* Allow height to adjust based on content */
  }
  .projects__modal {
    padding: 10px; /* Reduce padding for smaller screens */
  }
  .project__title {
    font-size: var(--h3-font-size); /* Adjust font size for smaller screens */
    margin: 15px 15px 5px; /* Adjust margins */
  }
  .center-text {
    padding: 5px 10px; /* Adjust padding for smaller screens */
    font-size: var(
      --small-font-size
    ); /* Adjust font size for better readability */
  }
  .projects__button {
    font-size: var(--small-font-size); /* Adjust button font size */
  }
}

/*=============== Volunteer Experience ===============*/
.carousel {
  position: relative;
  height: auto;
  width: 100;
  max-width: 350px; /* Adjust the max width as needed */
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 10px; /* Optional: adds rounded corners */
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 100%;
  max-width: 100%;
}

.carousel-item img {
  width: 70%;
  height: 200px; /* Maintains aspect ratio */
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.carousel-control.left {
  left: 0;
}

.carousel-control.right {
  right: 0;
}

/* Existing styles */
.djrobocon-logo,
.djlit-logo,
.Igniting-logo {
  display: block;
  margin: 0 auto;
}

.volunteer__details {
  font-size: 14px; /* Adjust font size as needed */
  color: var(--first-color); /* Adjust color as needed */
  margin-bottom: 10px; /* Space between the details and the description */
}

.volunteer__duration,
.volunteer__location {
  display: inline-block;
  margin-right: 5px;
}

.volunteer__container {
  row-gap: 2rem;
  padding-block: 1rem;
}

.volunteer__card {
  text-align: center;
  background-color: var(--container-color);
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--container-color);
  transition: border 0.4s;
}

.volunteer__description {
  text-align: left; /* Left-aligns the text within this element */
  margin: 0 auto; /* Centers the description block */
  max-width: 500px; /* Optional: limits the width for better readability */
}

.volunteer__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
}

.volunteer__card:hover {
  border: 2px solid var(--first-color);
}

/*=============== CONTACT ===============*/
.contact__container {
  padding-top: 0.2rem;
}

.contact__form,
.contact__group {
  display: grid;
  row-gap: 1rem;
}

.contact__form {
  position: relative;
}

.contact__input {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  background-color: var(--container-color);
  color: var(--title-color);
}

.contact__input::placeholder {
  color: var(--text-color);
}

.contact__form textarea {
  height: 10rem;
  resize: none;
  margin-bottom: 0.8rem;
}

.contact__button {
  justify-self: center;
  cursor: pointer;
}

.contact__message {
  position: absolute;
  left: 0;
  bottom: 3.5rem;
  font-size: var(--small-font-size);
  color: var(--title-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--container-color);
  padding-block: 3.5rem 2rem;
}

.footer__container {
  row-gap: 0.5rem;
  text-align: center;
}

.footer__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-semi-bold);
}

.footer__title span {
  color: var(--first-color);
}

.footer__education {
  font-size: var(--normal-font-size);
}

.footer__social {
  display: flex;
  justify-content: center;
  column-gap: 1.25rem;
}

.footer__social-link {
  display: flex;
  background-color: var(--first-color-alt);
  padding: 0.5rem;
  color: var(--title-color);
  font-size: 1.5rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.4s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(228, 12%, 25%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 8%, 35%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 45%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  padding: 6px;
  display: inline-flex;
  border-radius: 0.25rem;
  color: var(--first-color);
  font-size: 1.25rem;
  box-shadow: 0 4px 12px hsla(228, 15%, 8%, 0.4);
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}

.scrollup:hover {
  transform: translate(-0.25rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/

/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-inline: 1rem;
  }

  .skills__content {
    grid-template-columns: max-content;
    row-gap: 1rem;
  }

  .education__card {
    padding-block: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .home__container,
  .about__container,
  .skills__container,
  .volunteer__container {
    grid-template-columns: 360px;
    justify-content: center;
    align-items: center;
  }

  @media screen and (min-width: 768px) {
    .nav__menu {
      width: 55%;
    }

    .home__container,
    .skills__container {
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
    }

    .home__data,
    .home__social,
    .home__social-link {
      align-items: center;
    }

    .home__social {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .about__data,
    :is(.about__data) :is(.section__subtitle, .section__title) {
      text-align: initial;
    }

    .home__social {
      justify-content: center;
    }

    .home__blob,
    .about__blob {
      width: 300px;
    }

    .about__data {
      order: 1;
    }

    .workexperience__container {
      grid-template-columns: repeat(3, 352px);
    }

    .volunteer__container {
      grid-template-columns: repeat(3, 200px);
    }

    .education__container {
      grid-template-columns: repeat(2, 550px);
    }
  }
}

@media screen and (min-width: 950px) {
  .container {
    margin-inline: auto;
    padding-inline: 1rem; /*--- inline----*/
  }

  .home__container {
    /* grid-template-columns: 350px 350px;
    column-gap: 3rem;
    padding-block: 2rem 3rem; */
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    padding-block: 2rem;
    /*display: flex;*/
  }

  .home__data,
  .home__social,
  .home__social-link {
    align-items: center;
  }

  .home__blob {
    /*width: 550px; */
    width: 100%;
    max-width: 300px;
  }

  .home__content {
    row-gap: 2.5rem;
    text-align: left; /* align */
  }

  .home__description {
    margin-block: 0.5rem 1.5rem;
  }

  .home__social {
    column-gap: 1.5rem;
  }

  /*img*/
  .home__img {
    display: flex;
    justify-content: center;
  }

  .about__container {
    grid-template-columns: 500px 400px;
    column-gap: 4.5rem;
    padding-bottom: 1rem;
  }

  .about__blob,
  .home__blob {
    width: 450px;
  }

  .about__description {
    margin-bottom: 1.5rem;
  }

  .workexperience__card {
    padding: 3.5rem 2rem;
  }

  .volunteer__container {
    grid-template-columns: repeat(3, 300px);
  }

  .contact__container {
    grid-template-columns: auto;
    padding-block: 0.2rem 3rem;
  }

  .contact__form {
    row-gap: 1.5rem;
    /*align-items: center;
justify-content: center;*/
  }
  .contact__group {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .contact__input {
    padding: 1.5rem;
  }

  .contact__form textarea {
    height: 10rem;
  }

  .footer {
    padding-block: 2.5rem 2rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

/* For large devices */
@media screen and (min-width: 900px) {
  .section {
    padding-block: 6rem 2rem;
  }

  .section__subtitle {
    font-size: var(--small-font-size);
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 1rem;
  }

  .nav__menu {
    width: initial;
  }

  .blur-header::after {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .home__data,
  .home__social,
  .home__social-link {
    align-items: center;
  }
}