.centre_div {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  top: 12px;
  z-index: 2;
  position: relative;
  display: flex;
  margin: 0 10px;
  padding: 4px 10px;
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(97 117 117);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  animation: DragBottom 650ms ease-out;
  will-change: transform;

  @media screen and (max-height: 350px) {
    visibility: hidden;
  }
}

.navbar_text_div {
  cursor: none;
  font-size: 28px;
  line-height: 25px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.navbar_text {
  display: flex;
  flex-direction: column;
  padding-block: 1px;
}

.navbar_text_name {
  font-size: 22px;
  font-weight: 400;
}

.navbar_text_role {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}

@media screen and (max-width: 400px) {
  .navbar_text_name {
    font-size: 22px;
  }
}

@media screen and (max-width: 415px) {
  .navbar_text_role {
    font-size: 16px;
  }
}

@media screen and (max-width: 415px) {
  .navbar_text {
    gap: 0;
  }
}

.navbar_icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  pointer-events: none;
}

.navbar_icon:hover {
  border: 2px solid white;
  box-shadow: 0 0 20px white, 0 0, 0 0, 0 0 0.1em white;
}

@media screen and (max-width: 415px) {
  .navbar {
    padding: 4px 6px;
  }
}

.profile_div {
  display: none;
  flex-direction: column;
  animation: PopIn 1s ease-out;
  overflow: hidden;
  will-change: transform;
}

.articles_div {
  display: flex;
  flex-direction: column;
  background: #0e151a;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  gap: 15px;

  @media screen and (max-width: 500px) {
    scroll-snap-type: none;
  }
}

.profile_name {
  margin-top: -0.5em;
  font-size: 10rem;
  letter-spacing: -8px;
  font-weight: 700;
  transition: font-size 0.6s linear, margin 0.5s linear;

  @media screen and (max-width: 800px) {
    font-size: 20vw;
    letter-spacing: -5px;
  }

  @media screen and (max-height: 550px) {
    font-size: 14vw;
    margin-top: 0.5rem;
  }
}

.profile_bottom_details {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  padding-inline: 15px;
  transition: font-size 0.6s linear, margin 0.5s linear;

  @media screen and (max-width: 550px) {
    font-size: 3.2vw;
  }

  @media screen and (max-height: 550px) {
    font-size: 1.6vw;
  }
}

.profile_bg {
  height: 100vh;
  height: 100svh;
  overflow-y: hidden;
  overflow-x: hidden;
  perspective: 10px;
}

.profile_paralax {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  z-index: -1;
  will-change: transform;
}

.paralax_img_fore {
  filter: brightness(0.9);
  transform: translateZ(-5px) scale(1.5) translateY(-4px);
  will-change: transform;
}

.paralax_img_back {
  transform: translateZ(-25px) scale(3.5) translateX(-2px);
  will-change: transform;
}

.paralax_img_fore, .paralax_img_back {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  margin-top: -100px;
  pointer-events: none;
}

.profile_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: -30rem;
  transform: translateZ(-20px) scale(3);
}

.aboutme_banner {
  width: 400px;
  height: inherit;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;

  @media screen and (max-width: 950px) {
    width: 100%;
    height: 100%;
  }
}

.aboutme_inner_column {
  display: flex;
  padding: 15px 17px;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.aboutme_text_div {
  display: flex;
  flex-direction: column;
  gap: 6px;

}

.aboutme_text {
  font-weight: 300;
  font-size: 16.5px;
  text-align: justify;
}

.aboutme_inner {
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  flex-direction: row;
  border: 2.5px solid #16222A;
  background-color: transparent;
  background: radial-gradient(rgb(22, 34, 42), rgb(27, 29, 43));
  background: -webkit-radial-gradient(rgb(22, 34, 42), rgb(27, 29, 43));
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  @media screen and (max-width: 950px) {
    flex-direction: column;
  }
}

.aboutme_social_button {
  color: white;
  display: flex;
  align-items: center;
  font-size: 15.5px;
  padding: 5px 8px;
  border-radius: 10px;
  border: 2px solid #bbd0ca;
  text-decoration: none;
  background-color: #171b21;
  transition: background 0.2s linear, border 0.2s linear;
  gap: 6px;
}

.button {
  display: flex;
  align-items: center;
}

.button_icon {
  justify-content: center;
}

.aboutme_social_div {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: transparent;
  text-align: center;
  gap: 6px;
}

.aboutme_social_button:hover {
  background: #375e5e;
  border-color: white;
}

.aboutme_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  gap: 15px;

  @media screen and (max-width: 550px) {
    padding-inline: 15px;
  }
}

.education_div_main {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.education_div_main:hover:before {
  box-shadow: 0 0 14px #bbd0ca;
}

.education_div_main::before {
  content: "";
  position: absolute;
  display: inline;
  background-color: #bbd0ca;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  z-index: 1;
  border-style: solid;
  border-color: #375e5e;
  border-width: 1px;
  margin-left: -18px;
  margin-top: 2px;
  transition: box-shadow 0.75s ease-out;
}

.education_timeline {
  margin-left: 4px;
}

.education_div {
  display: flex;
  flex-direction: column;
  background-color: #232c33;
  border: 2px solid #464e4b;
  border-radius: 12px;
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out, transform 0.2s ease-in-out;
  overflow: auto;
  justify-content: center;
  padding: 10px 12px;
  gap: 2.5px;
}

.education_name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: -2px;

  @media screen and (max-width: 450px) {
    font-size: 20px;
  }
}

.education_description_div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.education_description {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  font-size: 16.5px;
  gap: 6px;

  @media screen and (max-width: 450px) {
    font-size: 15.5px;
  }
}

.education_list_div_timeline {
  margin: 0 auto;
  position: relative;
  width: 90%;

  @media screen and (max-width: 700px) {
    width: fit-content;
    margin-left: 20px;    
  }
}

.education_list_div {
  display: flex;
  flex-direction: column;
  gap: 12px;

  @media screen and (max-width: 550px) {
    display: flex;
    flex-direction: column;
  }
}

.education_div:hover {
  background-color: #375e5e;
  border: 2px solid white;
}

.education_list_div_timeline::before {
  top: 0;
  bottom: 0;
  content: '';
  width: 1px;
  display: inline-block;
  position: absolute;
  background-color: white;
  margin-left: -12px;
  margin-top: 4px;
}

.achivementsDiv {
  display: flex;
  flex-direction: row;
  padding-inline: 20px;
  gap: 15px;

  @media screen and (max-width: 950px) {
    display: flex;
    flex-direction: column;
  }
}

.project_name_icon_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: -2px;
  gap: 8px;
}

.project_name {
  font-size: 24px;
  font-weight: 700;

  @media screen and (max-width: 400px) {
    font-size: 20px;
  }
}

.project_description {
  font-weight: 300;
  font-size: 16.5px;
  text-align: justify;

  @media screen and (max-width: 750px) {
    text-align: initial;
  }
}

.project_technologies {
  opacity: 0.9;
  width: fit-content;
  padding: 5px 8px;
  font-size: 16.5px;
  border-radius: 1px 8px 8px 1px;
  background: #181b20;
  border-left: 3.5px solid #6b8d85;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.project_link_div {
  gap: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.project_link_icon {
  color: white;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 5px 8px;
  border-radius: 8px;
  border: 2px solid #74827e;
  text-decoration: none;
  background-color: #171b21;
  transition: background 0.2s linear, border 0.2s linear;
  gap: 5px;
}

.project_link_name {
  font-size: 16px;
}

.project_link_icon:hover {
  border-color: white;
}

.project_image {
  width: 100%;
  height: 198px;
  object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
}

.project_icon {
  width: 38px;
  height: 38px;
}

.project_details_div {
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  padding-top: 6px;
  gap: 8px;
}

.project_div {
  display: flex;
  flex-direction: column;
  background-color: #232c33;
  border: 2px solid #464e4b;
  border-radius: 20px;
  min-height: 30em;
  scroll-snap-align: start;
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out, transform 0.2s ease-in-out;
  animation: FadePopIn 1.5s ease-in-out;
  will-change: opacity, scroll-snap;

  @media screen and (max-width: 1180px) {
    min-height: 100%;
    width: 100%;
  }

  @media screen and (max-height: 750px) {
    min-height: 100%;
    width: 100%;
  }
}

.project_div:hover {
  background-color: #375e5e;
  border: 2px solid white;
}

.divider_heading {
  display: flex;
  font-size: 32px;
  margin-top: -5px;
  margin-bottom: -10px;
  text-align: center;
  transition: font-size 0.2s linear, margin 0.5s linear;
  gap: 10px;

  @media screen and (max-width: 850px) {
    font-size: 28px;
  }
}

.projects_list_div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  align-items: center;
  overflow: auto;
  justify-content: space-around;
  height: 30em;
  padding-right: 8px;
  gap: 12.5px;
  scroll-snap-type: y mandatory;
  will-change: scroll-snap;

  @media screen and (max-width: 1180px) {
    padding-right: 0;
    height: 100%;
  }
  @media screen and (max-width: 650px) {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  @media screen and (max-height: 750px) {
    padding: 0;
    width: 100%;
    height: 100%;
  }
}

.projects_list_bubble {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.projects_bubble {
  width: 12px;
  height: 12px;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid #375e5e;
}

.projects_bubble_active {
  background-color: #bbd0ca;
}

.parallax_contents {
  display: flex;
  flex-direction: column;
  background: #0e151a;
  padding-block: 15px;
  gap: 25px;
}

.show_pc {
  display: inherit;

  @media screen and (max-width: 750px) {
    display: none;
  }
}

.show_mobile {
  display: none;

  @media screen and (max-width: 750px) {
    display: inherit;
  }
}

.green_glow {
  text-shadow: 0 0 20px #375e5e, 0 0, 0 0, 0 0 0.1em #bbd0ca;
}


.events_inner {
  display: flex;
  padding-block: 10px;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.events_heading {
  display: flex;
  font-size: 26px;
  margin-top: -5px;
  margin-bottom: 4px;
  transition: font-size 0.2s linear, margin 0.5s linear;
  gap: 15px;
}

.events_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: hidden;
  border-radius: 15px;
  padding-right: 8px;
  width: 100%;
  gap: 10px;
  will-change: scroll-snap;
}
.events_gallery::-webkit-scrollbar {
  height: 8px;
}
.events_gallery::-webkit-scrollbar-thumb {
  border-radius: 15px;
}

.events_image {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transform: scale(1.0);
  border-radius: 6px;
  transition: transform 0.4s ease;
  scroll-snap-align: end;
  will-change: transform, scroll-snap;
}

.events_image_box {
  display: inline-block;
  color: white;
  position: relative;
  height: 11em;
}

.events_caption {
  bottom: -8px;
  left: 15px;
  right: 6px;
  opacity: 0.0;
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 3px;
  will-change: transform, opacity;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.events_transparent_box {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.events_image_box:hover .events_transparent_box {
  background-color:rgba(0, 0, 0, 0.75);
}

.events_image_box:hover .events_caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.events_image_box:hover {
  cursor: pointer;
}

.events_caption > p:nth-child(2) {
  font-size: 0.8em;
}

.events_opacity_low {
  opacity: 0.8;
}

.projectsDiv {
  @media screen and (max-width: 450px) {
    padding-inline: 10px;
  }
}

.technologiesDiv {
  width: 60%;

  @media screen and (max-width: 950px) {
    width: 100%;
  }
}

.tech_stack_main {
  display: flex;
  flex-direction: column;
  gap: 15px;

  @media screen and (max-width: 850px) {
    width: 100%;
  }
}

.tech_stack_div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 15px;

  @media screen and (max-width: 450px) {
    gap: 10px;
  }
}

.tech_stack_button {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 4px;
  border-radius: 16px;
  background: rgba(97, 117, 117, 50%);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  transition: background 0.2s linear, border 0.2s linear, transform 0.4s ease-in-out;
  will-change: transform;
}

.tech_stack_button:hover {
  border-color: white;
  background: rgb(97, 117, 117);
  transform: scale(1.1);
}

.margin_left_10 {
  margin-left: 10px;
}

@keyframes PopIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes DragBottom {
  from {
    transform: scale(0.8) translateY(-100px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}

@keyframes FadePopIn {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}