@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(2, 2, 28);
  color: white;
  font-family: "Poppins", sans-serif;
  --accent: white;
}

.main hr {
  width: 83vw;
  margin: 0 10% 0 9%;
}

.grey {
  color: rgb(143, 143, 203);
}

.progress-bar {
  position: fixed;
  top: 20vh;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, red, white);
  transform-origin: 0%;
  z-index: 5;
}

.bulb {
  position: absolute;
  width: 4%;
  height: 8%;
  left: -3.8%;
  top: -2%;
  z-index: 2;
}

/* Slide-in Animation */
@keyframes slideIn {
  from {
    transform: translateY(-100%) rotate(180deg);
  }
  to {
    transform: translateY(0) rotate(180deg);
  }
}

/* Slide-out Animation */
@keyframes slideOut {
  from {
    transform: translateY(0) rotate(180deg);
  }
  to {
    transform: translateY(100%) rotate(180deg);
  }
}

/* Applying the Animation to an Element */
.slide-in {
  animation: slideIn 0.5s ease-in-out forwards;
}

.slide-out {
  animation: slideOut 0.5s ease-in-out forwards;
}

/* ------------------------------------------------- */

/* -----pointer----------------------------------- */

.box-pointer {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(175, 100, 245);
  z-index: 0;
}

/* ------------------------------------------------- */

/* ------icosahedron---------------------------------------- */

::-webkit-scrollbar {
  height: 12px;
  width: 5px;
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  -webkit-border-radius: 1ex;
}

::-webkit-scrollbar-corner {
  background: var(--background);
}

.container-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.canvas-icosahedron {
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  image-rendering: optimize-contrast;
}

/* ---------------------------------------------------- */

/* -------------------------navbar------------------------------ */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 20vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul li {
  list-style: none;
  margin: 0 2%;
}
nav .left {
  width: 15vw;
  height: 88%;
  margin-right: 16%;
}

nav .left img {
  width: 100%;
  height: 100%;
}

nav li .social-icons {
  width: 8vw;
  display: flex;
  justify-content: space-between;
  margin: 11% 0 0 30%;
}

nav .git:hover {
  color: rgb(143, 143, 203);
  transform: scale(1.2);
}
nav .linkdin:hover {
  color: rgb(143, 143, 203);
  transform: scale(1.2);
}
nav .insta:hover {
  color: rgb(143, 143, 203);
  transform: scale(1.2);
}

nav .icons {
  width: 90%;
  height: 90%;
}

nav .connect {
  color: rgb(0, 0, 33);
  font-weight: 700;
  transition: all 0.7s;
  position: relative; /* Add this to enable z-index on ::before pseudo-element */
  animation: wave 3s infinite linear;
}

nav .container-connect {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
nav .lets-connect {
  background-color: #fff;
  height: 10vh;
  width: 9vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -2rem 0 0;
}

nav .section-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30vw;
  margin: 0 10%;
}

@keyframes wave {
  0% {
    transform: translateX(-5%) rotate(-10deg);
  }
  50% {
    transform: translateX(5%) rotate(10deg);
  }
  100% {
    transform: translateX(-5%) rotate(-10deg);
  }
}

@media screen and (max-width: 350px) {
  nav {
    padding: 0 2% 0 0;
  }
  nav ul {
    flex-direction: column;
  }
  nav .logo {
    height: 58%;
    width: 40%;
  }

  nav .lets-connect {
    display: none;
  }
  nav li .social-icons {
    /* display: none; */
    height: 6vh;
    width: 23vw;
    margin: -10% 0;
  }
  nav .icons {
    width: 100%;
    height: 100%;
  }
  .link p {
    font-size: 40%;
  }
}

@media screen and (max-width: 401px) {
  nav {
    padding: 0 2% 0 0;
    height: 15%;
  }

  nav .section-tab {
    flex-direction: column;
    margin-right: -2%;
  }
  nav .right {
    margin: 0 2% 0;
  }
  nav .logo {
    height: 60%;
    width: 80%;
    margin-left: 2%;
  }
  .progress-bar {
    margin-top: -9%;
  }
  nav .lets-connect {
    display: none;
  }

  nav li .social-icons {
    /* display: none; */
    height: 10%;
    width: 50%;
    margin: -10% 0;
  }
  nav .icons {
    width: 100%;
    height: 100%;
  }
  .link p {
    font-size: 60%;
  }
}

@media screen and (max-width: 450px) {
  nav {
    padding: 0 2% 0 0;
    height: 18%;
  }

  nav .section-tab {
    /* flex-direction: column; */
    margin-right: 10%;
    justify-content: center;
    align-items: center;
  }
  nav ul {
    flex-direction: row;
    justify-content: space-between;
  }
  nav .right {
    margin: 0 20% 0;
  }
  nav .logo {
    height: 60%;
    width: 30%;
    margin-left: 0;
    margin-right: -10%;
  }
  .progress-bar {
    margin-top: -4%;
  }
  nav .lets-connect {
    display: none;
  }

  nav li .social-icons {
    /* display: none; */
    height: 18%;
    width: 6vw;
    margin: -10% 0;
    flex-direction: column;
    margin-right: -20vw;
  }
  nav .icons {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 450px) and (max-width: 541px) {
  nav {
    padding: 0 2% 0 0;
    height: 18%;
    justify-content: space-evenly;
  }

  nav .section-tab {
    margin-left: -10%;
    width: 40vw;
  }
  nav ul {
    flex-direction: row;
    justify-content: space-between;
  }
  nav .right {
    margin: 0 20% 0;
  }
  nav .logo {
    height: 60%;
    width: 30%;
    margin-left: -5%;
    margin-right: -15%;
  }
  .progress-bar {
    margin-top: -4%;
  }
  nav .lets-connect {
    display: none;
  }
  nav .link p {
    margin-right: 2vw;
    font-size: 0.8rem;
  }

  nav li .social-icons {
    /* display: none; */
    height: 4vh;
    width: 20vw;
    justify-content: space-evenly;
    margin: -10% 0;
    flex-direction: row;
    margin-right: -20vw;
  }
  nav .icons {
    width: 100%;
    height: 100%;
    margin-right: 20%;
  }
}

@media (min-width: 541px) and (max-width: 1431px) {
  nav {
    padding: 0 2% 0 0;
    height: 18%;
  }

  nav .logo {
    height: 60%;
    width: 10rem;
    margin-right: 6rem;
  }
  .progress-bar {
    margin-top: -2vh;
  }
  nav .right {
    width: 20rem;
    margin-right: 2.2rem;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  nav .link p {
    margin-right: 2vw;
    font-size: 0.8rem;
  }

  nav ul {
    width: 60vw;
  }
  nav li .social-icons {
    height: 100%;
    width: 100%;
  }
  nav .icons {
    width: 80%;
    height: 80%;
  }
  nav .lets-connect {
    width: 7.6rem;
    height: 10vh;
  }
}

/* ---------------------------first-section-------------------------------- */

.pseudo {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
}

.pseudo .text1 {
  font-size: 4rem;
  color: rgb(244, 89, 226);
}
.pseudo .text2 {
  font-size: 2rem;
}
.pseudo .text {
  text-align: center;
}

.first-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10% 0 6% 4%;
  height: 90vh;
  width: 95vw;
  position: relative;
}

.first-section .box-background {
  background-color: rgba(0, 0, 0, 0.8);
  height: 90vh;
  width: 75vw;
  right: 22%;
  top: 5%;
  position: absolute;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.first-section .box-vertical {
  margin-right: 2%;
  margin-top: -4%;
  width: 16px;
  background: linear-gradient(to bottom, rgb(211, 12, 162), transparent);
  height: 40vh;
  z-index: 1;
}
.first-section .box-vertical .circle {
  background-color: rgb(211, 12, 162);
  border-radius: 50%;
  width: 1.5vw;
  height: 3vh;
  margin: -2.9vh 0 0 -0.5vw;
  position: absolute;
}
.first-section div {
  width: 100%;
}

.left-section {
  z-index: 1;
}

.left-section .firstText {
  font-size: 5rem;
  font-weight: 800;
}
.left-section div {
  width: 100%;
}
.left-section .secondText {
  font-size: 2rem;
  margin: 2% 0 0 0;
  height: 6rem;
}

.left-section .thirdText {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}

#element {
  color: rgb(211, 12, 162);
}

.right-section {
  align-items: center;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  max-width: 45rem;
  height: 48rem;
  /* background-color: green; */
  position: relative;
  margin-bottom: 4%;
}

.right-section .box-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* background-color: #ef4040; */
  width: 70%;
  height: 100%;
  border-radius: 0 0 100vw 100vw;
  overflow: hidden;
  flex-direction: column;
  position: relative;
}
.right-section .box-inner img {
  position: relative;
  width: 72rem;
  height: 44rem;
  left: -7%;
  border-radius: 0 0 100vw 100vw;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.right-section .box-inner img:hover {
  transform: scale(1.1) 1s ease;
}
.right-section .box-inner .image-circle {
  width: 100%;
  height: 68%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  background: linear-gradient(to bottom, yellow, transparent);
  border-radius: 50%;
  bottom: 0;
  overflow: hidden;
  position: absolute;
  padding: px;
}

.purple {
  color: yellow;
}

.link {
  color: inherit;
  text-decoration: none;
  font-size: 1.2rem;
}
.link:hover {
  color: rgb(143, 143, 203);
  font-size: 1.1rem;
}

.first-section .btn {
  background: rgb(10, 9, 55);
  color: aliceblue;
  border: 2px solid white;
  padding: 10px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  margin: 18% 5% 0 0;
}

.first-section .btn:hover {
  background: aliceblue;
  color: rgb(10, 9, 55);
}

.controls button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: rgb(211, 12, 162);
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
  color: white;
  border: none;
  margin-top: 80px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 55px;
  height: 55px;
  position: absolute;
  left: -49vw;
  top: 0;
  z-index: 5;
}

.controls {
  display: flex;
  flex-direction: column;
  padding: 0;
  padding-bottom: 50px;
  align-items: center;
  position: absolute;
}

.example {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Slide-in Animation */
@keyframes slideIn-x {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Applying the Animation to an Element */
.slide-in-x {
  animation: slideIn-x 0.5s ease-in-out forwards;
}

/* Slide-in Animation */
@keyframes slideIn-y {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Applying the Animation to an Element */
.slide-in-y {
  animation: slideIn-y 0.5s ease-in-out forwards;
}

@media screen and (max-width: 350px) {
  .pseudo .text1 {
    font-size: 90%;
  }
  .pseudo .text2 {
    font-size: 50%;
  }
  .pseudo .text {
    text-align: center;
  }
  .first-section {
    height: 90vh;
    justify-content: space-evenly;
    margin-bottom: 40vh;
    margin-top: 20vh;
  }
}

@media screen and (max-width: 541px) {
  .box-pointer {
    display: none;
  }
  .first-section {
    margin-top: 10rem;
    height: 90vh;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .pseudo {
    margin-top: 6rem;
    width: 100vw;
  }
  .controls button {
    /* display: none; */
    margin-left: 0%;
    margin-top: 0.2rem;
    width: 2rem;
    height: 2rem;
    font-size: 2%;
  }
  .first-section .left-section {
    margin-top: -12rem;
  }
  .first-section .right-section {
    display: none;
  }
  .box-background {
    display: none;
  }
  .first-section .circle {
    display: none;
  }
  .first-section .box-vertical {
    margin-top: -78%;
  }

  .first-section .firstText {
    font-size: 2.5rem;
  }
  .first-section .secondText {
    font-size: 1.5rem;
  }
  .first-section .thirdText {
    font-size: 2rem;
  }
  .first-section .btn p {
    font-size: 0.5rem;
  }
  .first-section .both-buttons {
    margin-top: 2rem;
  }
  .bulb {
    width: 8%;
    height: 10%;
    margin-left: 1.5%;
    margin-top: -2rem;
  }
  .pseudo .text1 {
    font-size: 2rem;
  }
  .pseudo .text2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 541px) and (max-width: 1281px) {
  .box-pointer {
    display: none;
  }
  .first-section {
    margin-top: 8rem;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    flex-direction: column;

    justify-content: center;
    display: flex;
    align-items: center;
  }
  .first-section .box-vertical {
    display: none;
  }

  .pseudo {
    margin-top: 6rem auto;
    width: 100vw;
  }
  .box-background {
    display: none;
  }
  .first-section .right-section {
    width: 15rem;
    height: 15rem;
    margin-left: -2rem;
    align-items: center;
    justify-content: center;
  }
  .first-section .right-section img {
    margin: 0;
    width: 18rem;
    height: 15rem;
  }
  .first-section .right-section .box-inner {
    width: 65%;
  }

  .first-section .left-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .first-section .circle {
    display: none;
  }
  .first-section .box-vertical {
    margin-top: -55%;
  }

  .first-section .firstText {
    font-size: 2.5rem;
    text-align: center;
  }
  .first-section .secondText {
    font-size: 1rem;
    text-align: center;
  }
  .first-section .thirdText {
    font-size: 1.5rem;
    text-align: center;
  }
  .first-section .btn p {
    font-size: 0.5rem;
  }
  .first-section .both-buttons {
    width: 8rem;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .bulb {
    width: 7%;
    height: 7%;
    margin-left: 50%;
    margin-top: -3%;
  }
  .controls button {
    width: 2rem;
    height: 2rem;
    font-size: 2%;
    margin-left: 50%;
    margin-top: 7.5rem;
  }
}

@media (min-width: 541px) and (max-width: 900px) {
  .bulb {
    width: 4%;
    height: 5%;
    margin-left: 50%;
    margin-top: -2%;
  }
}

@media (min-width: 900px) and (max-width: 1281px) {
  .bulb {
    width: 4%;
    height: 5%;
    margin-left: 50%;
    margin-top: -2%;
  }
}

/* ------------------------------second-section---------------------- */

.secondSection {
  max-width: 80vw;
  margin: 0 auto;
  padding-top: 5%;
  height: auto;
  position: relative;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.secondSection .about {
  display: flex;
  margin: 5% 0 10% 0;
  padding-bottom: 1%;
  justify-content: space-around;
  background-color: rgba(250, 250, 252, 0.9);
  /* background: linear-gradient( to bottom, rgba(211, 12, 162,0.6), white ); */
  color: rgb(0, 0, 33);
}

.secondSection .about-text {
  width: 40vw;
  height: fit-content;
  margin: 1.5% 10% 0 0;
  border: solid;
  border-color: rgb(0, 0, 33);
  /* background-color: rgba(244, 244, 8,0.8); */

  border-width: 4px;
  border-radius: 10px;
  padding: 6px 5px 0 5px;
  /* background-color: rgb(0, 0, 33); */
}
.secondSection .about-text p {
  margin: 2% 0 0 0;
  font-size: 1rem;
}
.secondSection .about-text h3 {
  margin: 1% 0 1% 0;
  font-size: 1.5rem;
}
.secondSection .about-text h2 {
  font-size: 2rem;
}

.secondSection .profile-photo {
  border: solid;
  border-color: whitesmoke;
  border-width: 0.1rem;
  margin: 4% 0 2% 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-photo-container {
  width: 30%;
  height: 30%;
}
.secondSection .threeD-image3 {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: -37rem;
  margin-left: 10rem;
}

@media screen and (max-width: 913px) {
  .secondSection {
    height: auto;
  }
  .secondSection .about {
    flex-direction: column;
  }
  .profile-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .profile-photo {
    margin: 4% 0 2% 0;
    width: 100vw;
    max-width: 300px;
    max-height: 300px;
    height: 100vh;
    border-radius: 50%;
  }
  .threeD-image3 {
    display: none;
  }
  .secondSection .about {
    display: flex;
    margin: 5% 0 5% 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .secondSection .about-text {
    width: 70vw;
    height: fit-content;
    margin: 1.5% 10% 0 0;
    padding: 6px 5px 0 5px;
  }
  .secondSection .about-text p {
    font-size: 0.75rem;
  }
  .secondSection h2 {
    font-size: 1.2rem;
  }
  .secondSection .about-text h3 {
    font-size: 1rem;
  }
}

@media (min-width: 913px) and (max-width: 1431px) {
}

/* -----------------------------third-section---------------------- */

.thirdSection {
  height: auto;
  max-width: 80vw;
  margin: 2% auto 15% auto;
}

.certification-details {
  padding-left: 10vw;
}

.card-certificate {
  font-size: 16px;
  width: 300px;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 1px hsl(0deg 0% 0% / 0.075), 0 0 2px hsl(0deg 0% 0% / 0.075),
    0 0 4px hsl(0deg 0% 0% / 0.075), 0 0 8px hsl(0deg 0% 0% / 0.075),
    0 0 16px hsl(0deg 0% 0% / 0.075);
  transform-origin: 10% 60%;
}

.card-certificate img {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: -moz-crisp-edges; /* Firefox */
  image-rendering: pixelated; /* Chrome */
}
.card-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 20px;
  margin-bottom: -120px;
}

.main-container {
  padding-left: 8vw;
}

.splash {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  clip-path: path(
    "M 0 303.5 C 0 292.454 8.995 285.101 20 283.5 L 460 219.5 C 470.085 218.033 480 228.454 480 239.5 L 500 430 C 500 441.046 491.046 450 480 450 L 20 450 C 8.954 450 0 441.046 0 430 Z"
  );
}

@media screen and (max-width: 351px) {
  .thirdSection {
    margin-bottom: 50%;
  }
}

@media (min-width: 351px) and (max-width: 814px) {
  .thirdSection {
    margin-bottom: 40%;
  }
}
/* ------------- */

/* -----------------------------fourth-section---------------------- */

.fourthSection {
  position: relative;
  max-width: 80vw;
  margin: auto;
  padding-top: 3%;
  padding-bottom: 30%;
  height: auto;
  /* background-color: rgb(0, 0, 33, 0.8); */
  background-color: rgba(0, 0, 0, 0.4);
}

.fourthSection .hl-box {
  /* align-items: center; */
  justify-content: space-evenly;
  width: 75vw;
  height: 2px;
  background: whitesmoke;
  display: flex;
  flex-direction: row;
  margin: 10% 0 0 0;
  position: relative;
}

.fourthSection .vertical-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 6rem;
  width: 2px;
  background: whitesmoke;
  /* margin: 0 8% 0 8%; */
}

.fourthSection .vertical-big {
  height: 10rem;
  width: 2px;
  background: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.fourthSection .vertical-big .container {
  width: 10vw;
  height: 20vh;
  /* margin: 300px 0 0 0; */
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: 8rem;
}

.fourthSection .vertical-small .container {
  width: 10vw;
  height: 20vh;
  /* margin: 120px 0 0 0; */
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: 4rem;
}
.fourthSection .vertical-small img {
  width: 3rem;
  height: 3rem;
  margin-top: -3rem;
}
.fourthSection .vertical-big img {
  width: 3rem;
  height: 3rem;
  margin-top: -3rem;
}
.fourthSection .heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fourthSection .top-container {
  margin-bottom: 5%;
}

.fourthSection .text-box {
  width: 73.8vw;
  /* margin-top: -80px; */
  /* margin-left: 37px; */
  background-color: rgb(0, 0, 33);
  opacity: 0.9;
  border: solid;
  border-color: #fff;
  padding: 1% 0 1% 1%;
  border-width: 1px;
}
.canvas-ball {
  width: 20%;
  height: 20%;
}
.ball-text-container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.ball-text-container h3 {
  font-size: 95%;
}
.ball-text-container p {
  font-size: 1rem;
}

.threeD-image2 {
  width: 30vw;
  height: 62vh;
  position: absolute;
  top: -24.6rem;
  left: -5rem;
}

@media screen and (max-width: 350px) {
  .threeD-image2 {
    width: 30%;
    height: 20%;
    position: absolute;
    top: -7.6rem;
    left: 0.2rem;
  }
  .fourthSection {
    width: 100%;
    margin-bottom: 50%;
  }
  .fourthSection .hl-box {
    justify-content: space-between;
  }

  .fourthSection h3 {
    font-size: 60%;
  }
  .fourthSection .vertical-small {
    height: 4rem;
  }
  .fourthSection .vertical-small .container {
    margin-top: 2rem;
  }
  .fourthSection .hl-box {
    margin-top: 5rem;
  }
  .fourthSection .vertical-big img {
    width: 8vw;
    height: 6vh;
    margin-top: -1.8rem;
  }
  .fourthSection .vertical-small img {
    width: 8vw;
    height: 6vh;
    margin-top: -1.8rem;
  }
}

@media (min-width: 350px) and (max-width: 401px) {
  .threeD-image2 {
    width: 30%;
    height: 20%;
    position: absolute;
    top: -7.6rem;
    left: 0.2rem;
  }
  .fourthSection {
    width: 100%;
    margin-bottom: 50%;
  }
  .fourthSection .hl-box {
    justify-content: space-between;
  }

  .fourthSection h3 {
    font-size: 60%;
  }
  .fourthSection .vertical-small {
    height: 4rem;
  }
  .fourthSection .vertical-small .container {
    margin-top: 2rem;
  }
  .fourthSection .hl-box {
    margin-top: 5rem;
  }
}

@media (min-width: 401px) and (max-width: 500px) {
  .fourthSection {
    width: 100%;
    margin-bottom: 30%;
  }
}
@media (min-width: 500px) and (max-width: 790px) {
  .fourthSection {
    width: 100%;
    margin-bottom: 20%;
  }
}

@media (min-width: 401px) and (max-width: 1150px) {
  .threeD-image2 {
    width: 30%;
    height: 20%;
    position: absolute;
    top: -7.6rem;
    left: 0.2rem;
  }
  .fourthSection {
    width: 100%;
    /* margin-bottom: 40%; */
  }

  .fourthSection h3 {
    font-size: 60%;
  }
  .fourthSection .vertical-small {
    height: 5rem;
  }
  .fourthSection .vertical-small .container {
    margin-top: 2rem;
  }
  .fourthSection .hl-box {
    margin-top: 5rem;
  }
}
/* -----------------------------fifth-section---------------------- */

.fifthSection {
  height: auto;
  max-width: 80vw;
  margin: 2% auto;
}
.special-sub-heading {
color: rgb(241, 39, 143);
}
.special-main-heading {
  color: rgb(235, 185, 5);
}
.fifthSection .text-card-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.fifthSection .card-progress-container {
  display: flex;
  align-items: center;
  /* margin-left: 40px; */
  margin-top: 100px;
  scroll-behavior: smooth;
  position: relative;
  width: 100%;
  /* justify-content: space-around; */
}
.fifthSection .threeD-image img {
  position: absolute;
  /* right: -35px;
  top: -300px;
  width: 400px;
  height: 700px; */
  /* right: -35px;
  top: -300px; */
  right: 0;
  top: -60%;
  width: 25rem;
  height: 42rem;
}

.fifthSection .text-box {
  width: 70%;
  margin-left: 5%;
  /* margin-left: 2.5rem; */
  /* margin-top: 2rem; */
  background-color: rgba(0, 0, 0, 0.8);
}
.fifthSection .all-project-cards {
  display: flex;
  list-style: none;
  overflow-x: scroll;
  /* flex: 0 0 600px; */
  /* margin: 0 70px 0 0; */
  border: solid;
  border-width: 2px;
  border-color: #141414;
  /* padding: 20px 20px 0 20px; */
  background-color: rgba(250, 250, 252, 0.9);
  /* align-items: center;
  justify-content: center; */

  width: 50%;
  height: auto;
  margin-left: 8.4%;
}
.fifthSection .project {
  width: 15vw;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 6%;
  /* border-radius: 20px; */
  border: solid;
  border-color: #0a0a0a;
  background-color: rgb(0, 0, 33);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.fifthSection .card:hover {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

.fifthSection .project-details h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.fifthSection .project-details p {
  /* margin: 10px 0 0; */
  font-size: 0.9rem;
  font-weight: 600;
  color: #cecbcb;
}

.fifthSection .project img {
  width: 100%;
  height: 25vh;
}

/* ----------- */

.fifthSection #progress {
  /* position: fixed; */
  /* top: 100px;
  left: 20px;
  margin-right: 70px; */
  transform: rotate(-90deg);
  width: 200px;
  height: 200px;
}

.fifthSection circle {
  stroke-dashoffset: 0;
  stroke-width: 15%;
  fill: none;
}

.fifthSection .bg {
  stroke: #fafafa;
  opacity: 0.3;
}

.fifthSection #progress .indicator {
  stroke: #fafafa;
}

.fifthSection ::-webkit-scrollbar {
  height: 5px;
  width: 5px;

  background: #fff3;
  -webkit-border-radius: 1ex;
}

.fifthSection ::-webkit-scrollbar-thumb {
  background: #ef4040;
  -webkit-border-radius: 1ex;
}

.fifthSection li {
  /* flex: 0 0 200px; */
  background: transparent;
  margin: 4%;
}

/* .fifthSection li:last-of-type {
  margin: 0;
} */

@media screen and (max-width: 541px) {
  .fifthSection {
    height: auto;
  }
  .fifthSection .threeD-image img {
    right: 0;
    top: -60%;
    width: 2rem;
    height: 4rem;
    display: none;
  }
  .fifthSection .card-progress-container {
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 0;
  }
  .fifthSection #progress {
    width: 50%;
    height: 20%;
    margin: 2% 0 5% 0;
  }
  .fifthSection .all-project-cards {
    width: 90%;
    margin-left: 0;
  }
  .fifthSection .card {
    width: 100%;
  }
  .fifthSection .project {
    width: 11rem;
    margin: 2% 2rem 1% 1%;
  }
  .fifthSection .text-box p {
    font-size: 50%;
    width: 80vw;
    height: fit-content;
    margin-left: 0;
  }
  .fifthSection .text-box {
    margin-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -60%;
    width: 2rem;
    height: 4rem;
    display: none;
  }

  .fifthSection .card-progress-container {
    justify-content: space-evenly;
  }
  .fifthSection .text-box {
    width: 100%;
    margin-left: 0;
    /* margin-left: 5%; */
  }

  .fifthSection .project-details h3 {
    font-size: 0.8rem;
  }

  .fifthSection .project-details p {
    font-size: 0.6rem;
    font-weight: 600;
  }
}

/* @media (min-width: 350px) and (max-width: 401px) {
  
} */

/* @media (min-width: 401px) and (max-width: 450px) {
  
} */
/* @media (min-width: 450px) and (max-width: 541px) {
  
} */

@media (min-width: 1000px) and (max-width: 1415px) {
  .fifthSection .text-box {
    width: 100%;
    margin-left: 0;
    /* margin-left: 5%; */
  }
  .fifthSection .project-details h3 {
    font-size: 1rem;
  }

  .fifthSection .project-details p {
    font-size: 0.7rem;
    font-weight: 600;
  }
}

@media (min-width: 1000px) and (max-width: 1115px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -30%;
    width: 24%;
    height: 90%;
  }
}
@media (min-width: 1115px) and (max-width: 1215px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -30%;
    width: 26%;
    height: 95%;
  }
}
@media (min-width: 1215px) and (max-width: 1315px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -30%;
    width: 28%;
    height: 100%;
  }
}
@media (min-width: 1315px) and (max-width: 1415px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -30%;
    width: 30%;
    height: 110%;
  }
}

@media (min-width: 1415px) and (max-width: 1471px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -70%;
    width: 30%;
    height: 170%;
  }
  .fifthSection .project-details h3 {
    font-size: 1rem;
  }

  .fifthSection .project-details p {
    font-size: 0.7rem;
    font-weight: 600;
  }
}
@media (min-width: 1471px) and (max-width: 1496px) {
  .fifthSection .threeD-image img {
    right: 0;
    top: -75%;
    width: 30%;
    height: 170%;
  }
}
/* -----------------------------sixth-section---------------------- */

.sixthSection {
  height: fit-content;
  max-width: 80vw;
  margin: 0 auto;
  padding: 5%;
}

.sixth-section-top {
  margin-bottom: 2%;
}

.sixthSection button {
  background-color: whitesmoke;
  color: rgb(10, 9, 55);
  font-weight: 700;
  border-radius: 15px;
  font-size: 1rem;
  height: 40px;
  width: 80px;
  margin-left: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.sixthSection .big-container {
  margin: 0;
  /* height: 500px; */
  height: fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
}
.sixthSection .mid-container {
  width: 40%;
  height: fit-content;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 10% 10% 0 5%;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#simple-form {
  padding: 25px 20px 0px 20px;
  width: 400px;
  height: 450px;
  margin: 10px 30px 0 100px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  background-color: rgb(10, 9, 55);
}

.sixthSection .inputBox label {
  color: whitesmoke;
}

.sixthSection .inputBox input {
  background: transparent;
  border: none;
  border-bottom: 1px solid whitesmoke;
  color: whitesmoke;
  font-size: 1rem;
  margin-bottom: 30px;
  outline: none;
  padding: 10px 0;
  width: 100%;
}

.sixthSection .inputBox textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid whitesmoke;
  color: whitesmoke;
  /* font-size: 18px;
  letter-spacing: 2px; */
  font-size: 1rem;
  margin-bottom: 10px;
  outline: none;
  padding: 10px 0;
  width: 100%;
}

.sixthSection .submitButton {
  margin-left: 0.1%;
}

.inputBox label {
  position: absolute;
  transition: transform 0.3s;
}

.inputBox.active label {
  transform: translateY(-25px);
}

.sixthSection button:hover {
  background-color: rgb(0, 0, 33);
  color: whitesmoke;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.sixthSection button {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 900px) {
  .sixthSection button {
    /* height: 5vh;
    width: 18%; */
    margin-left: 5vw;
    font-size: 15px;
    font-weight: 600;
  }

  .sixthSection .big-container {
    /* margin-top: 2%; */
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sixthSection .mid-container {
    width: 70%;
    height: 50%;
    color: white;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 10% 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }

  #simple-form {
    padding: 5% 5% 0px 5%;
    width: 60%;
    height: 80%;
    margin: 5% 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    /* background-color: whitesmoke; */
  }

  .sixthSection .inputBox label {
    color: whitesmoke;
  }

  .sixthSection .inputBox input {
    background: transparent;
    border: none;
    border-bottom: 1px solid whitesmoke;
    color: whitesmoke;
    /* font-size: 18px;
    letter-spacing: 1px; */
    font-size: 0.8rem;
    margin-bottom: 30px;
    outline: none;
    padding: 10px 0;
    width: 100%;
  }

  .sixthSection .inputBox textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid whitesmoke;
    color: whitesmoke;
    /* font-size: 18px;
    letter-spacing: 1px; */
    font-size: 0.8rem;
    margin-bottom: 10px;
    outline: none;
    padding: 10px 0;
    width: 100%;
  }
}

/* -----------------------------Footer-------------------- */

.Footer {
  /* background-color: #f1f1f1; */
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0 20px 0;
  text-align: center;
  width: 100%;
  height: fit-content;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-left: 2%;
  width: 20%;
}

.footer-links p {
  /* margin: 0 40px; */
  text-decoration: none;
  color: whitesmoke;
  font-size: 80%;
}

.footer-icons {
  width: fit-content;
  height: fit-content;
}
.footer-icons {
  font-size: 80%;
}

.Footer .url-link {
  margin: 0 5px;
  color: whitesmoke;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}



.Footer .icons {
  font-size: 20px;
  margin-right: 6px;
}

.footer-copyright {
  margin-top: 20px;
  color: #666;
  font-size: 12px;
}

.Footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 15px;
}

.Footer .email {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 80%;
}

@media screen and (max-width: 1100px) {
  .url-link p {
    display: none;
  }
  .Footer .container {
    flex-direction: column;
    justify-content: space-evenly;
  }

  .footer-links {
    justify-content: space-evenly;
    width: 50vw;
    margin: 3%;
  }
  .footer-links p {
    
    font-size: 1rem;
  }
  .footer-icons {
    display: flex;
    flex-direction: row;
    width: fit-content;
  }
}


/*------------------------------------------------responsive design-----------------------------------------------------------------------*/


/* @media screen and (max-width: 350px) {
  
}

@media (min-width: 350px) and (max-width: 401px) {
  
}

@media (min-width: 401px) and (max-width: 450px) {
  
}
@media (min-width: 450px) and (max-width: 541px) {
  
}

@media (min-width: 541px) and (max-width: 1431px) {
  
  
} */
