:root {
  /* --main-color: #ffffff; */
  --main-color: #001c40;
  --border-color: #d6d6d6;
  --hover-color: #f5f5f5;
  --dark-mode-hover-color: #3d3d3d;
  /* --default-color: #e3e3fe; */
  --default-color: #020b38;
  --hilight-color: #a5d8ff;
  /* --text-color: #727272; 7b1;
    --selection-active-colo*/
  --text-color: #bfbbbb;
  --text-another-color: #6e6e6e;
  --label-color: #b4b4b4;
  --muted-text-color: #b8b8b8;
  --dark-mode-color: #121212;
  --dark-mode-text-color: #b8b8b8;
  --default-font-size: 21px;
  --tab-color: #5b57d1; /* need to change the color name */
  --dark-mode-tab-color: #b2aeff;
  --overlay-color: #d0d0d0;
  --modal-header-color: #3e3e3e;
  --project-hover-gradient: rgb(13 34 63 / 80%);
}

* {
  color: var(--text-color);
}

body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
  font-size: var(--default-font-size);
  background-color: var(--main-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1,
h3,
h5,
p {
  padding: 0px;
  margin: 0px;
}

.scroll-arrow {
  z-index: 1;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
  width: 20px;
  height: 30px;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: transform 0.3s ease-in-out;
}

.scroll-arrow:hover {
  cursor: pointer;
  background-color: #2980b9;
}

.arrow {
  font-size: 24px;
}

nav {
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 8;
  backdrop-filter: blur(25px);
}

.profile-container {
  display: grid;
  grid-template-rows: repeat(3, auto);
}

.avatar,
.navbar {
  display: none;
  position: relative;
  align-items: center;
  right: 10%;
  width: 85%;
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  right: 10%;
  width: 30px;
  position: absolute;
}

.navbar-display-menu {
  position: absolute;
  top: 40px;
  min-width: 100%;
  right: 0px;
  display: none;
  background: var(--main-color);
  border-radius: 10px;
  animation: navbar-display-menu-animation 0.3s ease;
  box-shadow: rgb(0 0 0 / 20%) 6px 6px 10px 1px,
    rgb(8 5 5 / 70%) 0px 0px 5px 2px;
}

.navbar-display-menu ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-display-menu ul li {
  padding: 15px 30px;
}

.navbar-display-menu ul li:hover {
  cursor: pointer;
}

.navbar-display-menu ul li a {
  text-decoration: none;
}

.navbar-toggler:hover {
  cursor: pointer;
}

.navbar-toggler:active {
  border: none;
  border: 1px solid var(--hilight-color);
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-item {
  display: flex;
  gap: 20px;
  padding: 5px 7px;
  height: 40px;
  position: relative;
  right: 10%;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0/ 70%);
}

.section-item .anchor__container {
  display: none;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.portfolio__avatar {
  width: 20px;
  height: 20px;
  display: grid;
  border: 2px solid;
  padding: 7px;
  border-radius: 50%;
}

.section-item:hover .anchor__container {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.section-item:hover {
  display: flex;
  gap: 20px;
  cursor: pointer;
  height: 40px;
  padding: 5px 7px;
  position: relative;
  right: 10%;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0/ 70%);
}

.section-item a {
  text-decoration: none;
  padding: 2px 10px;
  border-radius: 30px;
  background-color: transparent;
  transition: background-color 0.8s ease;
}

.section-item a:hover {
  cursor: pointer;
  background-color: rgba(222, 225, 229, 60%);
}

.navbar-toggler:hover .first {
  animation: first-child-animation 0.5s ease forwards;
}

.navbar-toggler:hover .second {
  animation: second-child-animation 0.4s ease forwards;
}

.navbar-toggler:hover .third {
  animation: third-child-animation 0.3s ease forwards;
}

.first {
  border: none;
  width: 50%;
  border-bottom: 2px solid grey;
}

.third {
  border: none;
  width: 100%;
  border-bottom: 2px solid grey;
}

.second {
  border: none;
  width: 70%;
  border-bottom: 2px solid grey;
}

@keyframes first-child-animation {
  0% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes second-child-animation {
  0% {
    width: 70%;
  }
  100% {
    width: 75%;
  }
}

@keyframes third-child-animation {
  0% {
    width: 100%;
  }
  100% {
    width: 50%;
  }
}

.toolbar {
  width: 35%;
  height: 40px;
  border-radius: 7px;
  box-shadow: 2px 3px 7px 2px rgb(216, 216, 216);
  display: grid;
  grid-template-columns: 12% 88%;
  column-gap: 5px;
  font-size: 13px !important;
  background-color: var(--main-color);
  z-index: 8;
}

.toolbar:nth-child(odd) {
  border-right: 1px solid lightgrey;
}

.toolbar__left {
  display: flex;
  flex-direction: row;
  border-right: 1px solid lightgrey;
  background: transparent;
}

#lock {
  display: none;
}

#unlock {
}

.toolbar__right {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.fa-thin {
  font-size: 24px;
  color: white;
}

.tool {
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.tool:hover {
  cursor: pointer;
  background-color: var(--hover-color);
  border-radius: 5px;
}

.tool:active {
  border: 1px solid var(--hilight-color);
}

.tool span {
  font-size: 10px;
  position: relative;
  top: 10px;
  color: var(--muted-text-color);
  background-color: transparent;
}

.footer-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  position: fixed;
  bottom: 0px;
  font-size: 13px !important;
  backdrop-filter: blur(5px);
}

.footer__action {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  z-index: 8;
}

.footer__action-navigation,
.footer__action-zoom {
  width: fit-content;
  height: 35px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}
.footer__action-navigation span,
.footer__action-zoom span {
  padding: 0px 10px;
  font-size: 15px;
}

.prev-page,
.next-page {
  border: none;
  height: inherit;
  background: transparent;
  outline: none;
}

.prev-page {
  border-right: 1px solid var(--border-color);
}

.increase-zoom {
  border: none;
  height: inherit;
  border-right: 1px solid var(--border-color);
  background: transparent;
  outline: none;
}

.decrease-zoom {
  border: none;
  height: inherit;
  border-left: 1px solid var(--border-color);
  background: transparent;
  outline: none;
}

.prev-page:hover,
.increase-zoom:hover {
  background-color: var(--hover-color);
  cursor: pointer;
}

.next-page:hover,
.decrease-zoom:hover {
  background-color: var(--hover-color);
  cursor: pointer;
}

.prev-page:active,
.increase-zoom:active {
  border: none;
  border-radius: 5px 0px 0px 5px;
  border: 1px solid var(--hilight-color);
}

.next-page:active,
.decrease-zoom:active {
  border: none;
  border-radius: 0px 5px 5px 0px;
  border: 1px solid var(--hilight-color);
}

.maincontainer {
  left: 0;
  right: 0;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.maincontainer .about,
.maincontainer .connect,
.maincontainer .experience,
.maincontainer .skills,
.maincontainer .projects {
  width: 80%;
  height: auto;
  display: grid;
  grid-template-columns: 10% 90%;
  column-gap: 5%;
  margin-top: 60px;
}

.maincontainer .heading {
  display: flex;
  align-items: center;
  font-family: "Lobster", cursive;
  font-size: medium;
}

.maincontainer .home {
  min-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.home .main-content {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
}

.download__resume-btn {
  width: 200px;
  height: 50px;
  margin-top: 30px;
}

.maincontainer .main-content {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sidetoolbar {
  margin-top: 40px;
  min-height: 470px;
  border-radius: 7px;
  border: 1px solid rgb(230, 228, 228);
  position: absolute;
  padding: 10px;
  box-shadow: 2px 1px 5px 3px rgb(240, 240, 240, 0.6);
  display: none;
  grid-template-rows: 45% 25% 30%;
  font-size: 15px !important;
  background-color: var(--main-color);
  z-index: 8;
}

.sidetoolbar > div:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.settings > div,
.social__item,
.profile__item {
  border: none !important;
  padding: 8px 10px;
  border-radius: 7px;
}

.background {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: center;
  position: relative;
}

.background input {
  width: 80%;
  height: 30px;
  outline: none;
  background: transparent;
  border: 1px solid lightgrey;
  border-radius: 7px;
  padding: 0px 7px;
}

.background input:focus {
  border: 1px solid blue;
}

.background button {
  width: 30px;
  height: 30px;
  border: 1px solid lightgrey;
  border-radius: 7px;
  background: transparent;
  outline: none;
}

.language__selection:hover,
.background button:hover {
  cursor: pointer;
}

.language__selection {
  width: 100%;
  height: 30px;
  outline: none;
  padding: 2px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid lightgrey;
}

.language__selection:focus {
  border: 1px solid blue;
}

.sitemode {
  height: 15px;
  width: 90%;
  border: none;
  border-radius: 7px;
  padding: 2px;
  margin-top: 10px;
  background: transparent;
  z-index: 1;
}

.social__item:hover,
.profile__item:hover,
.sitemode:hover {
  background-color: var(--hover-color);
  cursor: pointer;
}

.shortcut__text {
  color: var(--muted-text-color) !important;
  float: right;
}

.left__side-items {
  left: 10%;
  position: relative;
  display: grid;
  gap: 30px;
  grid-auto-flow: column;
  grid-template-columns: auto;
}

.color-settings {
  position: relative;
}

.color-pallete {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 28, 64, 0.2) 6px 6px 10px 1px,
    rgba(224, 226, 229, 0.7) 0px 0px 5px 2px;
}

.color-pallete:hover {
  cursor: pointer;
  box-shadow: 6px 6px 10px 1px rgb(0 28 64 / 20%),
    0px 0px 10px 2px rgb(224 226 229 / 70%);
}

.colorPicker {
  top: 40px;
  display: none;
  gap: 3px;
  border-radius: 7px;
  padding: 10px !important;
  position: absolute;
  background-color: var(--main-color);
  grid-template-columns: auto auto auto auto auto;
}

.colorPicker__pad {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.colorPicker__pad:hover {
  cursor: pointer;
}

.colorPicker__pad-active {
  border: 1px solid var(--hilight-color) !important;
}

.home {
  font-size: 40px;
}

.home > p {
  padding: 0px;
  margin: 0px;
}

/* create a wave animation in home section */

.home {
  position: relative;
  cursor: pointer;
}

.wave {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(170, 56, 122, 0.5);
  animation: waveAnimation 1s ease-out forwards;
}

.social__icon {
  height: 40px;
  display: flex;
  padding: 5px 10px;
  position: relative;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.social__icon a {
  display: flex;
  margin: 5px;
  align-items: center;
  justify-content: center;
}

.social__icon svg {
  margin: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: transform 0.5s ease;
  fill: var(--text-color) !important;
}

.footer__resume a {
  font-size: small !important;
  text-decoration: none;
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: all 900ms ease-in-out;
  background-image: linear-gradient(var(--text-color), var(--text-color));
}

.footer__resume a:hover {
  cursor: pointer;
  background-size: 100% 2px;
}

.footer__resume svg {
  width: 15px;
  height: 15px;
  margin: 0px;
  fill: var(--text-color) !important;
}

.social__icon svg:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.heart {
  width: 10px;
  height: 10px;
  background-color: red;
  position: relative;
  transform: rotate(-45deg);
  margin: 8px 10px;
}
.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
}
.heart::before {
  border-radius: 10px 10px 0 0;
  top: -5px;
  left: 0;
}
.heart::after {
  border-radius: 10px 10px 10px 0;
  top: 0;
  left: 5px;
}

.secondline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--text-color);
}

.secondline > p {
  margin: 0;
  padding: 0;
}

.firstline:hover .hand {
  cursor: pointer;
  display: inline-block;
  animation: hand-animaton 1s infinite;
  -webkit-animation: hand-animaton 1s infinite;
  -moz-animation: hand-animaton 1s infinite;
}

.home .wordlist {
  text-align: center;
}

.roles {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 150px;
  margin: 0px 10px;
  overflow: hidden;
}

.roles > p {
  margin: 0;
  padding: 0;
}

.roles > p:first-child {
  animation: role-animation 15s infinite;
}

.about {
  /* padding: 5%; */
  /* animation: header-section-animation 1s ease-in-out */
}

.about__bg {
  background-color: red;
}

.profile-pic {
  position: relative;
  border-radius: 7px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 15px;
  height: 325px;
  width: 325px;
  overflow: hidden;
}

.profile-pic::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 500px;
  background-image: conic-gradient(
    transparent,
    transparent,
    transparent,
    #8a8d8d
  );
  animation-delay: -2s;
}

.profile-pic::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-image: conic-gradient(
    transparent,
    transparent,
    transparent,
    #8a8d8d
  );
  transform: rotate(900deg);
}

@keyframes img-border-animte {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.description__animation {
  animation: animate-description 1s ease-in-out;
}

.profile__pic-animation {
  animation: animate-profile 1s ease-in-out;
}

.profile-pic span {
  z-index: 1;
  position: absolute;
  inset: 2px;
  border-radius: 7px;
  background-color: var(--main-color);
}

.profile-pic img:hover {
  filter: drop-shadow(2px 4px 6px rgb(231, 226, 226));
}

.profile-pic img {
  z-index: 2;
  /* width: 250px;
  height: 250px; */
  max-width: 100%;
  height: auto;
  position: absolute;
  transition: all 0.2s ease-in-out;
}

.profile-pic > p {
  margin: 0;
  padding: 0;
}

.profile-pic img:hover {
  cursor: pointer;
  transform: scale(1.3);
}

.circle {
  position: absolute;
  border: 2px solid rgb(97, 71, 71);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: -1;
}

/* .animate__slideInLeft {
  z-index: 1;
}

.animate__slideInLeft p {
  transition: transform 0.2s;
}

.animate__slideInLeft p:hover {
  cursor: pointer;
  transform: scale(1.2);
} */

.zoom__text {
  transform: scale(1.2);
}

.about__first-section {
  height: 600px;
}

.first__section-content {
  display: grid;
  place-items: center;
  grid-template-columns: 30% 60%;
  column-gap: 10%;
}

.about__Second-section {
  display: grid;
  column-gap: 5%;
  row-gap: 5%;
  margin: 25%;
  display: grid;
  place-items: center;
  padding: 25px 0px;
  min-height: 700px;
  grid-template-columns: repeat(2, 250px);
  grid-auto-rows: 200px;
}

.about__Second-section > div {
  padding: 10px;
}

.about__third-section {
  min-height: 700px;
}

.about__fourth-section {
  min-height: 700px;
  position: relative;
}

.third__section-content {
  display: grid;
  place-items: center;
  grid-template-columns: 55% 40%;
  column-gap: 5%;
}

.image-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5%;
  overflow: hidden;
  overflow-y: scroll;
  padding: 20px;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.image-container::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

/* .image-container .portfolio-projects {
  animation: animate-in linear forwards;
  animation-timeline: scroll();    
}

@keyframes animate-in {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
} */

/* .slide__navigator: {
  border-color: red;
} */

.design,
.deploy {
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: animate_design_deploy 1s ease-in-out;
}

.develop,
.research {
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: animate_research_develpop 1s ease-out;
}

.description {
  position: relative;
  transition: transform 900ms ease-in-out;
}

/* This is for about text animation */
.description p {
  position: relative;
  display: inline;
  padding-bottom: 2px;
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: bottom left;
  transition: all 900ms ease-in-out;
  background-image: linear-gradient(var(--hilight-color), var(--hilight-color));
}

.description:hover p {
  background-size: 100% 2px;
}

.description p:hover {
  transform: scale(0.5);
  font-weight: bolder;
  cursor: pointer;
}
/* This is for about text animation end */

@keyframes header-section-animation {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes hand-animaton {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(50deg);
  }
  100% {
    transform: rotate(100deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes animate_design_deploy {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes animate_research_develpop {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.slide h6 {
  margin: 4px 0;
}

.design .slide,
.develop .slide,
.deploy .slide,
.research .slide {
  width: 100%;
  height: 200px;
  transition: 0.5s;
}

.develop .slide.slide1,
.research .slide.slide1 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.7s;
  border-radius: 7px 7px 0 0;
  transform: translateX(0px);
  background-color: #f6f5fd;
}

.design .slide.slide1,
.deploy .slide.slide1 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.7s;
  border-radius: 7px 7px 0 0;
  transform: translateX(0px);
  background-color: #f6f5fd;
}

.develop .slide.slide2,
.research .slide.slide2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.8s;
  border-radius: 0 0 7px 7px;
  transform: translateX(0px);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.develop:hover .slide.slide2,
.research:hover .slide.slide2 {
  cursor: pointer;
  transform: translateX(-250px);
}

.design .slide.slide2,
.deploy .slide.slide2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.8s;
  border-radius: 0 0 7px 7px;
  transform: translateX(0px);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.design:hover .slide.slide2,
.deploy:hover .slide.slide2 {
  cursor: pointer;
  transform: translateX(250px);
}

.aboutme {
  padding: 0;
  margin: 0;
  opacity: 0.4;
  font-size: xxx-large;
  writing-mode: vertical-lr;
}

section:nth-child(odd) .about {
  color: var(--muted-text-color) !important;
}

.aboutme::before {
  border: 1px solid red !important;
}

.skills__item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}

.skills__item > div {
  padding: 10px;
  margin: 5px;
  text-align: center;
  border-radius: 7px;
  text-transform: capitalize;
  background-color: #0a0a58;
}

.skills__item > div:hover {
  cursor: pointer;
  animation: skill-animation 1s ease-out;
}

.thrid__section-emoji {
  transform: rotate(90deg);
}

/* Tab section style start here */

.tab {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.tab1,
.tab2,
.tab3 {
  border-left: 1px solid gray;
}

.tab__title {
  padding: 10px;
}

.tab__title:hover {
  background-color: var(--hover-color);
  color: var(--tab-color) !important;
}

.tab div {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.tab div:hover {
  cursor: pointer;
}

.content {
  position: absolute;
  top: 10px;
  left: 80px;
  background-color: transparent !important;
}

.selected-tab {
  border-width: 2px;
}

@media (max-width: 1000px) {
  .sidetoolbar {
    width: 30%;
  }
}

@media (max-width: 400px) {
  .content {
    position: absolute;
    top: 60px;
    left: 10px;
  }

  .sidetoolbar {
    width: 90%;
  }

  .tab {
    display: flex;
    flex-direction: row;
  }

  .tab1,
  .tab2,
  .tab3 {
    border: none;
    border-bottom: 1px solid gray;
  }

  .heading h3 {
    font-size: xx-large;
  }
}

@media (max-width: 450px) {
  .wave {
    width: 200px;
    height: 200px;
  }
}
/* Tab section style end here */

/* Experience section style start */
.experience__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.experience__event {
  height: 100px;
  width: 50%;
  background-color: transparent;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  position: relative;
}

.experience__event:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

.experience__desc {
  height: 100%;
  width: calc(100% - 60px - 30%);
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  box-shadow: 2px 3px 7px 2px rgb(216, 216, 216);
  font-size: medium;
}

.Joining__date {
  height: 100%;
  width: calc(100% - 60px - 70%);
  background-color: var(--tab-color);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 7px 2px rgb(216, 216, 216);
}

.org__icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 10px;
  border-radius: 50%;
  background-color: #dadada;
  position: relative;
}

.experience__event:not(:last-child):nth-child(2n + 1) .org__icon::before {
  content: "";
  width: 2px;
  height: 50px;
  background: #ad3e16;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  z-index: -4;
  transform: translateX(-50%);
}

.experience__event:not(:last-child) .org__icon::before {
  content: "";
  width: 2px;
  height: 50px;
  background: rgb(6, 158, 69);
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
}

.experience__event:nth-child(2n + 1) .org__icon::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #2196f3;
  position: absolute;
  right: 100%;
  z-index: -4;
  top: 50%;
  left: auto;
  /* transform: translateY(-50%);
    /* -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
    animation: fillLeft 2s forwards 4s ease-in-out; */
}

.org__icon::after {
  content: "";
  width: 100px;
  height: 2px;
  background: red;
  position: absolute;
  z-index: -4;
  top: 50%;
  left: 0%;
  /* transform: translateY(-50%);
    /* -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
    animation: fillLeft 2s forwards 4s ease-in-out; */
}

.company__logo {
  width: 50px;
  height: 40px;
  aspect-ratio: auto;
  object-fit: contain;
}

.popout__logo {
  width: 30px;
  height: 30px;
  position: relative;
  top: -40px;

  aspect-ratio: auto;
  object-fit: contain;
}

.popout__logo:hover {
  cursor: pointer;
  color: var(--tab-color);
}
/* Experience section style end */

/* modal style start here */
.modal-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 700px;
  width: 70%;
  height: 55%;
  background-color: var(--main-color);
  display: none;
  grid-template-rows: 25% 65% 10%;
  place-items: center;
  z-index: 8;
  border-radius: 7px;
  box-shadow: 2px 3px 7px 2px rgb(216, 216, 216);
  transform: translate(-50%, -50%);
  animation: animate-pop-up 1s ease-in-out;
}

.modal-popup .modal__header > h1 {
  margin-top: 80px;
}

.modal-popup .modal__header > button {
  height: 50px;
  width: 50px;
  margin: 20px;
  border: none;
  outline: none;
  font-size: xx-large;
  background-color: transparent;
}

.modal-popup .modal__header > button :hover {
  cursor: pointer;
}

.modal__header {
  display: grid;
  height: 100%;
  width: 90%;
  grid-template-columns: 90% 10%;
  border-bottom: 1px solid var(--border-color);
  color: var(--modal-header-color) !important;
}

.modal__header-left {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
}

.modal__body {
  padding: 10px;
  width: 90%;
}

/* modal style start end */

.projectlist {
  list-style: none;
  height: 400px;
}

.portfolio-projects {
  display: flex;
  flex-direction: row;
  gap: 5%;
  position: relative;
  padding: 20px;
  background: transparent;
  transition: background 0.3s ease;
}

.portfolio-projects a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.portfolio-projects h3 {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
}

.project-description h3 span {
  color: var(--muted-text-color) !important;
}

.project-description span svg path {
  fill: var(--text-color);
}

.portfolio-projects:hover {
  cursor: pointer;
  border-radius: 5px;
  background: var(--project-hover-gradient);
}

.project-snapshot {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.project-snapshot img {
  width: 200px;
  height: 130px;
  object-fit: contain;
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
}

.project__details {
  position: relative;
  z-index: 4;
  width: 500px;
  left: -70%;
}

.project__details > h5 {
  padding-bottom: 10px !important;
  text-align: right;
}

.project__demo {
  position: relative;
  max-width: 550px;
  height: 400px;
}

.project__demo video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.project-demo video {
  background-color: lightgreen;
  border-radius: var(--border-radius);
  vertical-align: middle;
}

.project__demo a {
  position: relative;
}

.project-description {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img {
  position: relative;
}

.img__style {
  height: 250px;
  aspect-ratio: 1;
  object-fit: contain;
  background-repeat: no-repeat;
}

.overlay {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  display: none;
  opacity: 0.2;
  background: rgb(177, 154, 154);
  z-index: 1;
}

.img:hover {
  cursor: pointer;
}

.img:hover .overlay {
  display: block;
}

.display__imglist {
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.project__layout {
  position: relative;
}

.display__modal {
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #f6f5fd;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.image__modal-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.img__style-tile {
  height: 50px;
  padding: 5px;
  aspect-ratio: 1;
  object-fit: contain;
}

.img__style-tile1 {
  width: 30px;
  height: 40px;
  border: 2px solid rgb(13, 0, 128);
}

.modal__img {
  height: 400px;
  width: 500px;
  z-index: 10;
  object-fit: contain;
  background-repeat: no-repeat;
  border-radius: 7px;
  padding: 5px;
  box-shadow: 0 20px 50px rgba(120, 73, 158, 0.7);
}

.img__style-tile:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* Project style */

.hover-img {
  color: #fff;
  display: inline-block;
  margin: 8px;
  max-width: 550px;
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 7px;
  width: 100%;
}

.hover-img * {
  box-sizing: border-box;
  transition: all 0.45s ease;
}

.hover-img::before,
.hover-img::after {
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 50px solid rgba(0, 0, 0, 0.5);
  border-bottom: 50px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;

  transform: scaleY(2);
}

.hover-img img {
  vertical-align: top;
  max-width: 100%;
  backface-visibility: hidden;
}

.hover-img figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1em;
  opacity: 0;
  z-index: 2;
  transition-delay: 0.1s;
  font-size: 24px;
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hover-img:hover::before,
.hover-img:hover::after {
  transform: scale(1);
  opacity: 1;
}

.hover-img:hover > img {
  opacity: 0.7;
}

.hover-img:hover figcaption {
  opacity: 1;
}

.hover-img figcaption > h3 {
  color: #fff !important;
}

.portfolio__btn-style {
  width: 150px;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 2px;
}

.portfolio__btn-style:hover {
  cursor: pointer;
  background-color: var(--label-color);
}

.connection-channel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sixth__section-content:hover {
  cursor: pointer;
}

.sixth__section-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 30px;
}

.connet__content-area {
  display: grid;
  grid-template-columns: 40% 55%;
  place-items: flex-start;
  column-gap: 5%;
}

.content__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

/* Contant form style start  */

.content__form-header {
  color: #474544;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.content__form > button {
  overflow: visible;
}

.content__form > button,
.content__form > select {
  text-transform: none;
}

.content__form > button,
.content__form > input,
.content__form > select,
.content__form > textarea {
  color: #5a5a5a;
  font: inherit;
  margin: 0;
}

.content__form > input {
  line-height: normal;
}

.content__form > textarea {
  overflow: auto;
}

#container {
  border: var(--border-color);
  border-radius: 7px;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 2px 3px 7px 2px rgb(216, 216, 216);
}

.content__form > form {
  padding: 37.5px;
  margin: 50px 0;
}

.underline {
  border-bottom: var(--border-color);
  margin: -0.512em auto;
  width: 80px;
}

.icon_wrapper {
  width: 100%;
}

.icon {
  display: block;
  fill: #474544;
  height: 50px;
  margin: 0 auto;
  width: 50px;
}

.email {
  width: 90%;
}

input[type="text"],
[type="email"],
select,
textarea {
  background: transparent;
  border: none;
  outline: none;
  border-bottom: solid 1px var(--text-color);
  width: 100%;
  letter-spacing: 1px;
  margin: 0em 0 1.875em 0;
  padding: 0 0 0.875em 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="text"]:focus,
[type="email"]:focus,
textarea:focus {
  outline: none;
  padding: 0 0 0.875em 0;
}

.content__form .message {
  float: none;
}

.content__form .name {
  float: left;
  width: 45%;
}

.content__form > select {
  background: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png")
    no-repeat right;
  outline: none;
}

.content__form > select::-ms-expand {
  display: none;
}

.subject {
  width: 100%;
}

.telephone {
  width: 100%;
}

.content__form > textarea {
  line-height: 150%;
  resize: none;
  width: 100%;
}

::-webkit-input-placeholder {
  color: #474544;
}

:-moz-placeholder {
  color: #474544;
  opacity: 1;
}

::-moz-placeholder {
  color: #474544;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #474544;
}

#form_button {
  background: none;
  color: #fff;
  border: var(--border-color);
  cursor: pointer;
  display: inline-block;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.content__form {
  width: 100%;
}

@media screen and (max-width: 480px) {
  #container > h1 {
    font-size: 26px;
  }

  .underline {
    width: 68px;
  }

  #form_button {
    padding: 15px 25px;
  }

  .scroll-arrow {
    display: none;
  }

  .footer-container .footer__resume,
  .footer-container .footer__action {
    display: none;
  }

  .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 420px) {
  #container > h1 {
    font-size: 18px;
  }

  .icon {
    height: 35px;
    width: 35px;
  }

  .underline {
    width: 53px;
  }
}

/* contact form style end */

/* Skill & Experience style */

.skills__experience::after {
  content: "  |";
}

.aboutme span {
  display: inline-flex;
  animation: word-bounce 1s ease-in-out;
}

.aboutme span:nth-of-type(1) {
  animation-delay: 0.1s;
}

@keyframes word-bounce {
  0%,
  50%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
}

.aboutme span:nth-of-type(2) {
  animation-delay: 0.2s;
}

.aboutme span:nth-of-type(3) {
  animation-delay: 0.3s;
}

/* 3d desk start here */
.container-3d {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  transform: rotateX(50deg);
  perspective-origin: left top;
  position: absolute;
}

.desk {
  width: 600px;
  height: 500px;
  position: relative;
  transform-style: preserve-3d;
  /* animation: cubeRotate 10s linear infinite; */
}

@keyframes cubeRotate {
  from {
    transform: rotateY(0deg) rotateX(720deg) rotateZ(0deg);
  }
  to {
    transform: rotateY(360deg) rotateX(0deg) rotateZ(360deg);
  }
}
.box {
  width: 600px;
  height: 25px;
  position: relative;
  transform-style: preserve-3d;

  transform: translate3d(-500px, 0px, -300px);
}

.box-side {
  position: absolute;
  width: 100%;
  height: 100%;
}

.box-front {
  background-color: #d50000;
  transform: translateZ(100px);
}
.box-back {
  background-color: #aa00ff;
  transform: translateZ(-100px);
}

.box-left {
  width: 30%;
  background-color: #304ffe;
  transform: translateX(500px) rotateY(90deg);
}

.box-right {
  width: 30%;
  background-color: #c7c4ca;
  transform: translateX(-90px) rotateY(-90deg);
}

.box-top {
  height: 200px;
  background-color: #00bfa5;
  transform: translate3d(0px, -100px, 0px) rotateX(90deg);
}

/* .box-middle {
    background-color: red;
    transform: translateY(25px) rotateX(90deg);
  } */
.box-bottom {
  height: 200px;

  transform-origin: left top;
  background-color: #64dd17;
  transform: translate3d(0px, 0px, -100px) rotateX(90deg);
}

.container-3d section {
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform-style: preserve-3d;
  transform: translate3d(-300px, -200px, 0) rotateY(0deg);
  perspective: 1000px;
}

.container-3d section .book {
  position: absolute;
  width: 130px;
  height: 150px;
  background-color: rgb(179, 24, 24);
  /* transform: skewY(-10deg); */
  transform: translate3d(0px, 0, 0) rotateY(90deg);
  box-shadow: -10px 5px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.container-3d section .book::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: red;
  transform-origin: right bottom;
  position: absolute;
  top: 0;
  left: -15px;
  transform: skewY(45deg);
}

.container-3d section .book::after {
  content: "";
  width: 100%;
  height: 15px;
  background-color: white;
  /* border-top-left-radius: 15px;
    border-bottom-left-radius: 15px; */
  transform-origin: bottom left;
  position: absolute;
  top: -15px;
  left: 0;
  transform: skewX(45deg);
}

.container-3d section .book:hover {
  transition: 0.5s;
  transform: rotateY(90deg);
}

/* 3D book style */
box-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}

box-middle .book {
  position: relative;
  width: 130px;
  height: 150px;
  background-color: rgb(179, 24, 24);
  transform: skewY(-10deg);
  box-shadow: -10px 5px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.box-middle .book::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: red;
  transform-origin: right bottom;
  position: absolute;
  top: 0;
  left: -15px;
  transform: skewY(45deg);
}

.box-middle .book::after {
  content: "";
  width: 100%;
  height: 15px;
  background-color: white;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transform-origin: bottom left;
  position: absolute;
  top: -15px;
  left: 0;
  transform: skewX(45deg);
}

/* 3D book Style End */

.side {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.front {
  background-color: #d50000;
  transform: translateZ(150px);
}
.back {
  background-color: #aa00ff;
  transform: translateZ(-300px);
}

.left {
  background-color: #304ffe;
  transform: translateX(300px) rotateY(90deg);
}
.right {
  background-color: #0091ea;
  transform: translateX(-300px) rotateY(90deg);
}

.top {
  background-color: #00bfa5;
  transform: translateY(250px) translateZ(-50px) rotateX(90deg);
}
.bottom {
  background-color: #64dd17;
  transform: translateY(-250px) rotateX(90deg);
}

.blub {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
}

.blub::before {
  content: "";
  top: -70px;
  left: 25%;
  width: 50px;
  height: 70px;
  background-color: white;
  position: absolute;
  border-top: 30px solid green;
}

.blub span:nth-child(1) {
  width: 51px;
  height: 50px;
  top: -30px;
  left: -17px;
  display: block;
  background-color: red;
  background: transparent;
  position: absolute;
  box-shadow: 12px 20px 0px 0px #fff;
  border-bottom-right-radius: 100px;
  transform: rotate(330deg);
}

.blub span:nth-child(2) {
  width: 51px;
  height: 50px;
  top: -30px;
  right: -17px;
  display: block;
  background-color: red;
  background: transparent;
  position: absolute;
  box-shadow: -12px 20px 0px 0px #fff;
  border-bottom-left-radius: 100px;
  transform: rotate(27deg);
}

.wire {
  width: 10px;
  background-color: rgb(59, 24, 24);
  height: 60vh;
  bottom: 50%;
  position: absolute;
  left: calc(50% -5px);
}

.cover {
  /* height: 150px;
    width: 300px; */
  bottom: 50%;
  position: absolute;

  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;

  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  border-bottom: 200px solid rgb(59, 24, 24);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.light {
  position: absolute;
  width: 500px;
  height: 400px;
  /* background-color: #e5e6e4; */
  opacity: 0.2;
  filter: blur(30px);
  top: 50%;
  border-bottom: 500px solid #e5e6e4;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
}

.wall {
  top: 50%;
  height: 500px;
  width: 500px;
  position: absolute;
  background-color: #737371;
  transform-style: preserve-3d;
  transform: rotateX(97deg) translate3d(0, -250px, 0);
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.wall span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: red;
  transform: rotateY(90deg * var(--i)) translateZ(100px);
}

/* .wall::before {
    content: '';
    width: 100px;
    height: 30px;
    position: absolute;
    background: green;
    transform: rotateX(7deg) translate3d(0, -200px, 0);
  } */

.wall::before {
  border: 50px;
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: #303030;
  transform: rotateX(84deg);
}

.wall::after {
  border: 50px;
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: #303030;
  transform: rotateX(84deg);
}

.walls {
  top: 50%;
  height: 500px;
  width: 500px;
  position: absolute;
  background-color: #737371;
  transform-style: preserve-3d;
  /* transform: rotateX(86deg) translate3d(0, -250px, 0);
    display: flex;
    align-items: center;
    justify-content: center; */
}

.walls div:nth-child(1) {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-origin: left;
  background-color: aquamarine;
  transform: translate3d(0px, 10px, 500px) rotateY(90deg);
}

.walls div:nth-child(2) {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-origin: top right;
  background-color: #932828;
  transform-style: preserve-3d;
  transform: translate3d(0px, 0px, 400px) rotateY(270deg) rotateX(90deg);
}

/* .walls div:nth-child(2)::before {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;
    background-color: green;
    transform: translate3d(-40px, 0px, 100px) rotateY(275deg) rotateX(180deg);
  } */
/* 
  .book {
    width: 100px;
    height: 200px;
    position: absolute;
    background-color: yellow;
    box-shadow: 30px 20px 0px 20px black;
  } */

.walls div:nth-child(2) div {
  width: 160px;
  height: 50%;
  position: absolute;
  transform-style: preserve-3d;
  background-color: #e87e56;
  /* transform: rotateX(180deg) rotateY(273deg) translate3d(300px, -10px, -90px); */
}

.walls div:nth-child(2) div:nth-child(1) {
  transform: rotateY(90deg) translate3d(0, 0, 200px);
}

.walls div:nth-child(2) div:nth-child(2) {
  transform: rotateY(90deg) translate3d(0, 0, 300px);
}

.walls div:nth-child(2) div:nth-child(3) {
  transform: rotateY(90deg) translate3d(0, 0, 200px);
}

/* .wall-one > div:nth-child(3)::before {
    content: '';
    width: 300px;
    height: 300px;
    position: absolute;
    transform-style: preserve-3d;
    background-color: #e87e56;
    transform: rotateX(180deg) rotateY(273deg) translate3d(300px, -10px, -90px);
  } */

/* .wall-one .slef {
    width: 100px;
    height: 50px;
    position: absolute;
    transform-style: preserve-3d;
    background-color: coral;
  } */

.walls div:nth-child(2) div:nth-child(3) div:nth-child(1) {
  position: absolute;
  background-color: peachpuff;
  transform: rotateX(251deg) translate3d(100px, -60px, -20px);
}

.walls div:nth-child(2) div:nth-child(3) div:nth-child(2) {
  position: absolute;
  background-color: peachpuff;
  transform: rotateX(251deg) translate3d(100px, -130px, 10px) skewX(340deg);
}

.walls div:nth-child(2) div:nth-child(3) div:nth-child(3) {
  position: absolute;
  background-color: peachpuff;
  transform: rotateX(251deg) translate3d(100px, -70px, 10px) skewX(340deg);
}

.walls span:nth-child(3) {
}

/* .box-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
  } */

.box-middle .book {
  position: relative;
  width: 130px;
  height: 150px;
  background-color: rgb(179, 24, 24);
  transform: skewY(-10deg);
  box-shadow: -10px 5px 20px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.box-middle .book::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: red;
  transform-origin: right bottom;
  position: absolute;
  top: 0;
  left: -15px;
  transform: skewY(45deg);
}

.box-middle .book::after {
  content: "";
  width: 100%;
  height: 15px;
  background-color: white;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transform-origin: bottom left;
  position: absolute;
  top: -15px;
  left: 0;
  transform: skewX(45deg);
}

.box-middle .book:hover {
  transition: 0.5s;
  transform: rotateZ(-15deg);
}

/* Journey */

.slides__container {
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: justify;
}

.slidetrack {
  display: flex;
  height: inherit;
  text-align: justify;
  flex-direction: row;
  transition: 1s ease;
}

.slide-text-wrap {
  margin: 10px;
  word-wrap: break-word;
}

.navigator__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.year-list {
  list-style: none;
}

.experience-details {
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  overflow: hidden;
}

/* .company-experience {
  padding: 10px;
} */

.slide__navigator {
  border-bottom: 3px solid var(--text-color);
}

.current__navigator {
  border-bottom: 3px solid #2934bd;
}

.slide__navigator:hover {
  cursor: pointer;
}

.navigation__next-btn:hover,
.navigation__prev-btn:hover {
  cursor: pointer;
}

.year-item a {
  color: var(--muted-text-color);
  text-decoration: none;
}

.year-item {
  width: 200px;
  text-align: center;
  margin: 5px;
}

.navigation__prev-btn svg,
.navigation__next-btn svg {
  fill: var(--text-color);
}

.navigation__prev-btn svg:hover,
.navigation__next-btn svg:hover {
  fill: #2934bd;
}
/* 
  .year-item-active:hover {
    
    cursor: pointer;
    font-size: xx-large;
  } */

/* .year-item-link{
    color: var(--text-color);
  } */

.year-item-selected {
  color: #304ffe !important;
}

.year-item-active {
  transition: transform 0.3s ease-in-out;
  cursor: pointer !important;
  font-size: xx-large;
  color: var(--text-color) !important;
}

.seven__section-content .content__details ul {
  list-style: none;
  padding: 0px;
  width: 100%;
}

.content__details ul a {
  text-decoration: none;
  font-size: x-large;
}

.content__details ul li {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.list__item span {
  border: 1px solid #4a4747;
  display: flex;
  align-items: center;
  width: 10px;
  height: 10px;
  padding: 5px;
  font-weight: bolder;
  background-color: var(--muted-text-color);
  border-radius: 5px;
}

.list__item span svg path {
  fill: #fff;
}

.list__item span:hover {
  cursor: pointer;
  background-color: var(--dark-mode-hover-color);
}

.connect-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 30px;
  top: -30px;
  background-color: var(--main-color);
  box-shadow: 0px 0px 5px 1px;
}

.footer__resume,
.footer__text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-icon i {
  color: var(--text-another-color);
}

.connect-me:hover .connect-icon i {
  color: var(--text-color);
  transition: scale(0.4);
}

.connect-me:hover {
  cursor: pointer;
}

.connect-me {
  bottom: 5%;
  width: 100%;
  position: fixed;
  display: flex;
  z-index: 1;
}

.connect-form {
  width: 30%;
  height: 400px;
  right: 35px;
  bottom: 40px;
  padding: 10px;
  display: none;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  color: black !important;
  background-color: var(--main-color);
  box-shadow: 0px 0px 5px;
}

.connect-form form {
  display: flex;
  flex-direction: column;
  color: var(--main-color);
}

.connect-form form input,
textarea {
  /* color: var(--main-color); */
}

#form_button {
  border-radius: 7px;
  background-color: #0a0a58;
}

#form_button:hover {
  border-radius: 7px;
  background-color: rgb(10, 10, 88, 0.7);
}

.portfolio__section:nth-child(odd) {
  opacity: 0;
  transform: translateX(calc(50vw - 50%));
  transition: opacity 1s, transform 2s;
}

.portfolio__section.animate:nth-child(odd) {
  opacity: 1;
  transform: translateX(0px);
}

.portfolio__section:nth-child(even) {
  opacity: 0;
  transform: translateX(calc(-50vw + 50%));
  transition: opacity 1s, transform 2s;
}

.portfolio__section.animate:nth-child(even) {
  opacity: 1;
  transform: translateX(0px);
}

/* Skill & Experience style  End*/

@keyframes skill-animation {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes height-animate {
  0% {
    height: 0px;
  }
  100% {
    height: 400px;
  }
}

/* .image-container img:hover ~ .overlay {
    display: block;
} */

@keyframes animate-pop-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes left_right_animation {
  0% {
    transform: scaleZ(1);
  }
  100% {
    transform: scaleZ(2);
  }
}

@keyframes animate-aboutme {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes role-animation {
  0% {
    margin-top: 0;
    opacity: 1;
  }
  14% {
    margin-top: -130px;
    opacity: 0;
  }
  28% {
    margin-top: -265px;
    opacity: 1;
  }
  42% {
    margin-top: -400px;
    opacity: 0;
  }
  64% {
    margin-top: -265px;
    opacity: 1;
  }
  90% {
    margin-top: -130px;
    opacity: 1;
  }
  100% {
    margin-top: 0px;
    opacity: 1;
  }
}

@keyframes animate-description {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes animate-profile {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes waveAnimation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes navbar-display-menu-animation {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}

@media (max-width: 900px) {
  .navigation__prev-btn,
  .navigation__next-btn {
    display: none;
  }

  .first__section-content {
    grid-template-columns: none;
    place-items: center;
    gap: 25px;
  }

  .about > h3 {
    text-align: center;
  }

  .roles {
    height: 50px;
  }

  .aboutme {
    writing-mode: horizontal-tb;
  }

  .maincontainer {
    position: absolute;
    display: flex;
    height: auto;
    flex-direction: column;
    transform: none !important;
  }

  .main-content .aboutme:nth-child(odd):after {
    margin: 2%;
  }

  .home {
    font-size: 50px !important;
  }

  .maincontainer .home,
  .maincontainer .about,
  .maincontainer .connect,
  .maincontainer .experience,
  .maincontainer .skills,
  .maincontainer .projects {
    min-height: 700px;
  }

  .slidetrack {
    /* flex-direction: column; */
  }

  .fifth__section-content,
  .third__section-content {
    grid-template-columns: none !important;
    grid-template-rows: auto auto;
    row-gap: 50px;
  }

  .connet__content-area {
    grid-template-columns: none;
    grid-template-rows: auto auto;
    row-gap: 5%;
  }

  .portfolio-projects a {
    gap: 15px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .project-snapshot img {
    height: 100%;
  }

  .navigator__container {
    /* display: none; */
  }

  /* .slides__container {
    max-width: 100%;
  } */
}

@media (max-width: 600px) {
  .main-content .aboutme:nth-child(odd):after {
    margin: 4%;
  }

  .home {
    font-size: 25px !important;
  }

  .roles {
    height: 40px;
  }
}

@media (max-width: 1350px) {
  .aboutme {
    writing-mode: horizontal-tb;
    margin: 0px;
  }

  .heading {
    justify-content: center;
  }

  .maincontainer .about,
  .maincontainer .connect,
  .maincontainer .experience,
  .maincontainer .skills,
  .maincontainer .projects {
    width: 100%;
    grid-template-columns: none;
    margin-top: 40px;
    column-gap: 0;
    align-items: center;
    justify-content: center;
  }

  .connect-form {
    width: 30%;
  }
}

@media (max-width: 900px) {
  .maincontainer .main-content:not(:first-child) {
    padding: 10px;
    justify-content: flex-start;
  }

  .connect-form {
    width: 40%;
  }
}

@media (max-width: 630px) {
  .portfolio-projects {
    display: flex;
    flex-direction: row;
    flex-flow: column-reverse;
    gap: 5%;
  }
}

@media (max-width: 700px) {
  .section-item {
    display: none;
  }

  .navbar-toggler {
    display: flex;
  }

  .navbar {
    display: flex !important;
  }

  .connect-form {
    width: 50%;
  }

  .social__icon {
    display: none;
  }

  .left__side-items .footer__resume {
    display: none;
  }
}

@media (min-width: 701px) {
  .navbar-display-menu {
    display: none !important;
  }
}
