:root {
  --sankit-base: #00ccff;
}

#labelforsetting,
#labelforvisualmode,
#switchforvisualmode:checked + #labelforvisualmode {
  background-repeat: no-repeat;
  background-position: center;
}

#labelforsetting,
#labelforsound {
  height: 40px;
  background-size: 60%;
}

#preloader,
.invertapplied,
.invertsettinglabel {
  filter: invert(1);
}

#preloader,
noscript {
  width: 100%;
  height: 100%;
}

body,
noscript {
  background-color: var(--color-dark-mode);
}

.main,
body {
  overflow-x: hidden;
}

#backtotopbutton article,
:root {
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
}

.eye,
.image-div,
.logo,
.navbar,
.project-box,
.resume-btn,
footer {
  overflow: hidden;
}

.cta,
.github-redirect,
.navbar-tabs-ul a {
  text-decoration: none;
}

#GmailLogo,
.sign svg path {
  fill: white;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background-color: transparent;
}

::-moz-selection {
  background: 0 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

:root {
  cursor: default;
  --color-white: #fff;
  --color-black: #000;
  --color-dark-mode: #11111b;
  --color-light-mode: #ece7e1;
  --color-ddd-color: #ddd;
  --color-gray: #c4c4c4;
  --color-purple: #8000ff;
  --color-light-purple: #cf59e6;
  --color-light-blue: #6bc5f8;
  --color-navbarBorder-dark: #e2e2e207;
  --color-shadowDark: rgba(0, 0, 0, 0.137);
  --static-heading-gradient-blue: #b0f3f1;
  --static-heading-gradient-pink: #ffcfdf;
  --tech-stack-box-first-color: #1a1a29;
  --tech-stack-box-second-color: rgba(27, 27, 40, 0);
  --tech-stack-box-border-color: #292929;
}

#hello-friend,
.footer-bottom article,
.getintouch-heading article,
.language-speak article,
.navbar-tabs-ul li,
.two-words article {
  font-family: fira code;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0a0a10;
}

::-webkit-scrollbar-thumb {
  background-color: #8000ff;
}

.cursor-inner {
  width: 8px;
  height: 8px;
  background-color: var(--color-light-blue);
}

.cursor-outer {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
}

.cursor-inner,
.cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.setting-container,
.settingactivate {
  transform-origin: left;
  transition-duration: 0.5s;
}

.cursor-inner.hover {
  width: 25px;
  height: 25px;
  transition: 0.2s;
  mix-blend-mode: difference;
}

.cursor-outer.hover {
  width: 50px;
  height: 50px;
  transition: 0.2s;
}

.activeThistab:before,
.navbar-tabs-ul li:hover:before {
  background-color: var(--color-white);
  height: 10px;
  width: 10px;
  left: -20px;
}

.light-mode {
  --color-dark-mode: #ece7e1;
  --color-black: #fff;
  --color-white: #000;
  --color-ddd-color: rgb(31, 31, 31);
  --color-navbarBorder-dark: #d1d6eb;
  --static-heading-gradient-blue: #0f7878;
  --static-heading-gradient-pink: #f09bb9;
  --color-shadowDark: #e2ddd7;
  --tech-stack-box-first-color: #e7e2db;
  --tech-stack-box-second-color: #ece7e100;
  --tech-stack-box-border-color: #dad5cf;
}

.setting-container {
  width: 60px;
  height: 50px;
  margin-left: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

#labelforsetting {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-image: url(src/svg/settings-svgrepo-com.svg);
  transition-duration: 0.5s;
  cursor: pointer;
}

.soundtogglebuttoncontainer,
.visualmodetogglebuttoncontainer {
  align-items: center;
  width: fit-content;
  transition-duration: 0.3s;
}

.settingactivate {
  width: 200px;
}

.visualmodetogglebuttoncontainer {
  height: fit-content;
  display: flex;
  justify-content: center;
  transform: translate(-50px) scale(0);
}

.visualmodeshow {
  transition-duration: 0.3s;
  transform: translate(0) scale(1);
}

#switchforsetting,
#switchforsound,
#switchforvisualmode,
.hamburger,
.mobiletogglemenu {
  display: none;
}

#switchforsetting:checked + #labelforsetting {
  transform: rotate(180deg);
  transition-duration: 0.5s;
}

#labelforvisualmode {
  position: relative;
  width: 40px;
  height: 40px;
  background-image: url(src/png/crescent-moon\\(1\).png);
  background-size: 50%;
  transition-duration: 0.5s;
  cursor: pointer;
}

#switchforvisualmode:checked + #labelforvisualmode {
  transform: rotate(360deg);
  transition-duration: 0.5s;
  background-image: url(src/png/sun.png);
  background-size: 60%;
}

.soundtogglebuttoncontainer {
  height: fit-content;
  display: flex;
  justify-content: center;
  transform: translate(-130px) scale(0);
}

#labelforsound,
#preloader {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
}

.soundmodeshow {
  transition-delay: 0.1s;
  transition-duration: 0.5s;
  display: inline-block;
  transform: translate(0) scale(1);
}

.logo,
.logo:hover {
  transition-duration: 1s;
}

#labelforsound {
  position: relative;
  justify-content: center;
  width: 40px;
  background-image: url(src/svg/Mute_Icon.svg);
  cursor: pointer;
  transition-duration: 0.5s;
}

#switchforsound:checked + #labelforsound {
  transition-duration: 0.5s;
  background-image: url(src/svg/Speaker_Icon.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

header {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#preloader {
  background-color: #fff;
  position: fixed;
  z-index: 99999;
  justify-content: center;
  overflow-y: hidden;
  background-image: url(src/svg/Pulse-0.4s-200px.svg);
  background-size: 10%;
}

.navbar,
noscript {
  display: flex;
  align-items: center;
  position: fixed;
}

#name,
.getintouch-heading article {
  background: -webkit-linear-gradient(
    135deg,
    var(--color-light-blue),
    var(--color-light-purple),
    var(--color-light-blue),
    var(--color-light-purple)
  );
  -webkit-text-fill-color: transparent;
}

noscript {
  justify-content: center;
  font-size: 4rem;
  color: #fff;
  z-index: 999999;
}

.fakenavbar {
  height: 0;
  width: 0%;
  background-color: transparent;
}

.navbar {
  background-image: linear-gradient(
    to bottom right,
    var(--tech-stack-box-first-color),
    var(--tech-stack-box-second-color)
  );
  backdrop-filter: blur(10px);
  height: 80px;
  width: 80%;
  padding: 0 20px;
  justify-content: space-between;
  z-index: 999;
  border: 1px solid var(--color-navbarBorder-dark);
  border-radius: 50px;
}

.navbar-tabs,
.navbar-tabs-ul {
  height: 100%;
  align-items: center;
}

.logo,
.navbar-tabs-ul li {
  position: relative;
  display: flex;
}

.navbar-tabs {
  display: flex;
  width: 80%;
}

.navbar-tabs-ul {
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: flex-end;
  gap: 60px;
  color: var(--color-white);
}

.navbar-tabs-ul li {
  width: fit-content;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.navbar-tabs-ul li:hover:before {
  content: "";
  position: absolute;
  border-radius: 5px;
  z-index: -1;
}

.navbar-tabs-ul a {
  color: var(--color-white);
  font-weight: 100;
}

.logo {
  width: 10%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.face,
.logo-top {
  width: 100%;
  align-items: center;
  display: flex;
}

.hey {
  color: #fff;
  position: absolute;
  font-size: 2.5rem;
  font-weight: 300;
  background-color: #20222e;
  padding: 5px 10px;
  border-radius: 20px;
  left: 120px;
  bottom: 80px;
  opacity: 0;
}

#hello-friend,
#work,
.about-info p,
.activeThistab,
.language-speak article {
  color: var(--color-white);
}

.blob,
.eye,
.pupil {
  border-radius: 50%;
}

.popup {
  animation: 3s linear pop-up;
}

@keyframes pop-up {
  from {
    bottom: -50px;
    left: 50px;
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.logo-top {
  height: 100%;
  justify-content: center;
  transform-origin: bottom;
  position: relative;
}

.activeThistab:before,
.face {
  content: "";
  position: absolute;
}

.logo-top img {
  height: 100%;
  z-index: 2;
}

.face {
  height: 74%;
  bottom: 0;
  justify-content: center;
  gap: 5px;
  z-index: 1;
  padding-left: 1px;
}

.eye {
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.left-eye {
  box-shadow: -1px -2px 2px rgba(0, 0, 0, 0.589) inset;
}

.right-eye {
  box-shadow: 1px 3px 2px rgba(0, 0, 0, 0.589) inset;
}

.pupil {
  width: 3.5px;
  height: 3.5px;
  background: #241010;
}

.logo:hover {
  transform: translateY(200px);
}

.activeThistab:before {
  border-radius: 50%;
  z-index: -1;
}

.dp::after,
.dp::before {
  height: 300px;
  z-index: -2;
  content: "";
}

.main {
  width: 100%;
  height: fit-content;
  position: relative;
}

.blob {
  position: absolute;
  right: -15%;
  top: 0;
  background-color: var(--color-light-purple);
  width: 600px;
  height: 100vh;
  filter: blur(300px);
  opacity: 0.3;
  animation: 1s linear infinite alternate-reverse breath;
}

@keyframes breath {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 0.5;
  }
}

.landing-page-container {
  width: 100%;
  height: calc(100vh - 115px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.text-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}

#hello-friend {
  font-size: 3.5rem;
  font-weight: 600;
  width: fit-content;
  display: flex;
  align-items: flex-end;
}

#name,
#work {
  font-size: 8rem;
  width: fit-content;
}

#name,
#work,
.letsTalkBtn-text {
  display: flex;
  font-weight: 700;
}

@-webkit-keyframes vibrate-1 {
  0%,
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
}

@keyframes vibrate-1 {
  0%,
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
}

#name {
  align-items: flex-start;
  background: linear-gradient(
    -45deg,
    var(--color-light-blue),
    var(--color-light-purple),
    var(--color-light-blue),
    var(--color-light-purple)
  );
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 400% 400%;
  -webkit-animation: 3s infinite gradient;
  animation: 3s infinite gradient;
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

#work {
  align-items: flex-start;
  flex-wrap: wrap;
}

#info-para,
.about-info p {
  font-weight: 400;
  font-size: 2rem;
}

#work div {
  display: flex;
  margin: 0 12px 0 0;
}

.jello:hover {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: #03e6ff;
  -webkit-animation: 0.9s both jello-vertical;
  animation: 0.9s both jello-vertical;
}

#backtotopbutton,
.dp::after,
.dp::before,
.letsTalkBtn {
  background-color: transparent;
}

@-webkit-keyframes jello-vertical {
  0%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }

  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
}

@keyframes jello-vertical {
  0%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }

  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
}

#info-para {
  width: 75%;
  padding-top: 30px;
  color: var(--color-ddd-color);
  line-height: 20px;
}

.contact-btn-div {
  width: 100%;
  padding-top: 50px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.letsTalkBtn {
  position: relative;
  border: none;
  width: 180px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
}

.letsTalkBtn-text {
  width: 100%;
  height: 100%;
  background-color: rgba(230, 230, 230, 0.466);
  border: none;
  border-radius: 7px;
  backdrop-filter: blur(5px);
  color: #000;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.8px;
}

.cta:hover span,
.text,
.tooltip {
  color: #fff;
}

.resume-btn,
.sign {
  align-items: center;
  transition-duration: 0.3s;
  display: flex;
}

.letsTalkBtn-BG {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(150deg, #71cbff, #8000ff);
  z-index: -1;
  left: 6px;
  top: 6px;
  border-radius: 7px;
  pointer-events: none;
  transition: 0.3s;
}

.letsTalkBtn:hover {
  transform: translateY(-2px) translateX(-2px);
}

.letsTalkBtn:hover .letsTalkBtn-BG {
  transform: translateY(2px) translateX(2px);
}

.letsTalkBtn:active {
  transform: translateY(7px) translateX(7px);
}

.letsTalkBtn:active .letsTalkBtn-BG {
  transform: translateY(-7px) translateX(-7px);
}

.resume-btn {
  margin-top: 25px;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background: linear-gradient(82.3deg, #965de9 10.8%, #6358ee 94.3%);
  position: relative;
}

.projects-heading-article,
.projectsHeadingP,
.section-heading-article,
.sectionHeadingP,
.skills-heading-article,
.skillsHeadingP {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
  background-image: -webkit-linear-gradient(
    left,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
}

.dp::after,
.dp::before,
.text {
  position: absolute;
}

.sign {
  width: 100%;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.text {
  right: 0;
  width: 0%;
  opacity: 0;
  font-size: 1em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.resume-btn:hover {
  width: 130px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.resume-btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}

.resume-btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.dp,
.dp::after,
.dp::before,
.dp:hover::after,
.dp:hover::before {
  transition-duration: 0.5s;
}

.resume-btn:active {
  transform: translate(2px, 2px);
}

.about-section-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 200px;
}

.about-section,
.projects-section-div,
.skills-section {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects-heading,
.section-heading,
.skills-heading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp img,
.dp::after,
.dp::before {
  width: 300px;
  max-height: 300px;
}

.projects-heading-article,
.section-heading-article,
.skills-heading-article {
  font-size: 3rem;
  font-family: fira code;
  font-weight: 500;
  background-image: linear-gradient(90deg, #b0f3f1, #ffcfdf);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projectsHeadingP,
.sectionHeadingP,
.skillsHeadingP {
  width: 300px;
  height: 1px;
  background-image: linear-gradient(
    90deg,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
}

.info-dp-section {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.about-info {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.about-info p {
  line-height: 25px;
}

.dp {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.dp::before {
  box-shadow: 2px 2px 0 inset #8000ff, -2px -2px 0 inset transparent;
}

.dp::after {
  box-shadow: 2px 2px 0 inset transparent, -2px -2px 0 inset #8000ff;
}

.dp:hover::after {
  transform: translate(20px, 20px);
}

.dp:hover::before {
  transform: translate(-20px, -20px);
}

.skills-section-container {
  padding-top: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-speak,
.tech-stack-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

.language-speak {
  height: 50px;
  justify-content: center;
}

.language-speak article {
  font-size: 2rem;
  font-weight: 600;
}

.frontend-dev-section {
  width: 100%;
  margin-top: 50px;
}

.frontend-dev-heading {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 900;
  height: 100px;
  letter-spacing: 5px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
  background-image: -webkit-linear-gradient(
    left,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
  background-image: linear-gradient(
    90deg,
    var(--static-heading-gradient-blue),
    var(--static-heading-gradient-pink)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-box,
.tech-stack-box {
  background-image: linear-gradient(
    to bottom right,
    var(--tech-stack-box-first-color),
    var(--tech-stack-box-second-color)
  );
}

.tech-stack-wrapper {
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}

.tech-stack-box,
.tooltip {
  align-items: center;
  display: flex;
}

.tech-stack-box {
  width: 160px;
  height: 160px;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--tech-stack-box-border-color);
  position: relative;
}

.tech-stack-box img {
  width: 80%;
}

.tech-stack-box:hover .tooltip {
  opacity: 1;
  transition-duration: 0.3s;
}

.tooltip {
  position: absolute;
  top: -20px;
  opacity: 0;
  background: linear-gradient(
    to bottom right,
    var(--tech-stack-box-first-color),
    var(--tech-stack-box-second-color)
  );
  border: 1px solid var(--tech-stack-box-border-color);
  padding: 5px 10px;
  border-radius: 5px;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  backdrop-filter: blur(5px);
  font-weight: 500;
}

.cta,
.cta span,
.cta svg,
.project-box,
footer {
  position: relative;
}

.projects-section-container {
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.project-boxes-div {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 50px;
}

.cta:hover:before,
.project-box-wrapper {
  width: 100%;
}

.project-box {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition-duration: 0.3s;
  border-radius: 30px;
  border: 1px solid var(--tech-stack-box-border-color);
}

.info-div {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
}

.faviconforProject {
  width: 30px;
  border-radius: 50%;
}

.faviconforProjectAquaregia {
  width: 20px;
}

.image-div {
  width: 50%;
  height: 100%;
  padding-top: 70px;
  padding-left: 10px;
}

.image-div img {
  height: 100%;
  border-top-left-radius: 30px;
}

.ProjectHeading {
  color: var(--color-white);
  font-size: 3.4rem;
  font-weight: 700;
  text-decoration: none;

  &:hover {
    color: #6bc5f8;
  }
}

.ProjectDescription {
  color: gray;
  font-size: 1.7rem;
  font-weight: 400;
}

.project-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.github-redirect {
  width: 50px;
}

.github-redirect img {
  width: 45px;
  height: auto;
  transition: 0.3s;
  filter: brightness(2);
}

.github-redirect:hover img {
  filter: brightness(4);
}

.cta {
  padding: 12px 18px;
  transition: 0.2s;
  border: none;
  background: 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cta::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #2b2f4e;
  width: 45px;
  height: 45px;
  transition: 0.3s;
}

.cta span {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-light-blue);
}

.cta svg {
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--color-light-blue);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: 0.3s;
}

.cta:hover svg {
  stroke: white;
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

#backtotopbutton {
  position: fixed;
  right: 10px;
  bottom: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  width: 3rem;
  height: 15rem;
  z-index: 101;
  text-align: center;
  transition: 0.4s;
  display: none;
}

#backtotopbutton article {
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 400;
  writing-mode: vertical-rl;
  mix-blend-mode: difference;
}

#backtotopbutton:hover {
  transform: translate(0, -20px);
  text-decoration: line-through var(--color-white);
}

footer {
  width: 100%;
  height: fit-content;
  border-top: 1px solid var(--tech-stack-box-border-color);
}

.footer-background {
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.footer-blob {
  width: 100%;
  height: 200px;
  background-color: var(--color-light-purple);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
}

.footer-foreground {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.footercontainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.two-words {
  color: #b3b3b3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.getintouch-heading,
.logos {
  height: 80px;
  width: 100%;
  display: flex;
}

.two-words article {
  font-size: 3rem;
}

.social-media-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.social-media-container a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #e2dede;
  position: relative;
  box-shadow: 0 0 0 #8000ff inset;
  transition-duration: 0.3s;
}

.getintouch-heading {
  align-items: center;
  justify-content: center;
}

.getintouch-heading article {
  font-size: 2rem;
  background: linear-gradient(
    -45deg,
    var(--color-light-blue),
    var(--color-light-purple),
    var(--color-light-blue),
    var(--color-light-purple)
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}

.fa-copyright,
.footer-bottom article {
  font-size: 1.5rem;
  color: #b0b0b0;
}

.logos {
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.SocialHandle {
  fill: white;
  width: 60%;
}

#GmailLogo {
  height: 70%;
}

.social-media-container a:hover {
  box-shadow: 0 0 50px 100px #8000ff inset;
  transition-duration: 1s;
  border: none;
}

.social-media-container a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  background-color: transparent;
  transition-duration: 0.3s;
  z-index: -1;
}

.social-media-container a:hover::before {
  transform: scale(1);
  transition-duration: 0.3s;
}

.footer-avatar-container {
  width: 220px;
  margin-top: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.footer-avatar-img {
  width: 100%;
  z-index: 2;
}

.footer-avatar-face {
  position: absolute;
  width: 100%;
  height: 97%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-left: 5px;
}

.footer-avatar-eye {
  width: 50px;
  height: 50px;
  background-color: #dfd2d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-pupil {
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  border: 5px solid #413333;
  filter: blur(0.6px);
}

.footer-right-eye {
  box-shadow: 15px 15px 5px rgba(0, 0, 0, 0.233) inset,
    10px 10px 5px rgba(41, 33, 33, 0.644) inset;
  position: relative;
}

.footer-left-eye {
  box-shadow: -10px -15px 5px rgba(0, 0, 0, 0.349) inset;
  position: relative;
}

.footer-avatar-eye::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(214, 214, 214, 0.726);
  z-index: 2;
  filter: blur(0.2px);
  left: 15px;
  transform: rotate(45deg);
}

.footer-bottom {
  background-color: #0b0b0b;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  z-index: 3;
}

.tonechange {
  color: #000;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 60%;
  }

  .projects-section-div,
  .skills-section,
  .text-content {
    width: 80%;
  }

  .about-section {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logo:hover {
    transform: translateY(200px);
    transition-duration: 1s;
  }
}

@media screen and (max-width: 1150px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 998px) {
  #hamburger-button,
  .hamburger {
    background-color: transparent;
  }

  .mobile-navbar-tabs-ul a,
  .mobiletogglemenu {
    text-decoration: none;
  }

  .activeThismobiletab,
  .mobile-navbar-tabs-ul a {
    color: var(--color-white);
  }

  html {
    font-size: 55%;
  }

  .blob,
  .cursor-inner,
  .cursor-outer,
  .navbar-tabs-ul {
    display: none;
  }

  .stopscrolling {
    overflow: hidden;
  }

  .hamburger {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 115px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9998;
  }

  .activeThismobiletab:before,
  .burger-bar,
  .hamburger-animation1,
  .hamburger-animation2,
  .hamburger-animation3 {
    background-color: white;
  }

  .hamburgerbase {
    width: 80%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
  }

  #hamburger-button {
    font-size: 3rem;
    font-weight: 800;
    width: 4.5rem;
    height: 3.5rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  #burger-bar1,
  #burger-bar2,
  #burger-bar3 {
    height: 3px;
    border-radius: 0;
    transition-duration: 0.3s;
  }

  #burger-bar1,
  #burger-bar3 {
    width: 60%;
  }

  #burger-bar2 {
    width: 100%;
  }

  .hamburger-animation1 {
    transform: rotate(45deg) scaleX(1.7);
    transition-duration: 0.3s;
    transform-origin: left;
  }

  .hamburger-animation2 {
    transform: scaleX(0);
  }

  .hamburger-animation3 {
    transform: rotateZ(-45deg) scaleX(1.7);
    transform-origin: left;
    transition-duration: 0.3s;
  }

  .mobiletogglemenu {
    background-color: transparent;
    z-index: 9990;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    list-style: none;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    transform: translate(1000px);
    transition-duration: 1s;
  }

  .show-toggle-menu {
    transform: translate(0);
    transition-duration: 0.6s;
  }

  .mobile-navbar-tabs-ul {
    background-color: var(--color-dark-mode);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.176);
  }

  .mobile-navbar-tabs-li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    font-family: fira code;
    height: 30px;
    width: fit-content;
  }

  .about-info,
  .dp,
  .info-dp-section {
    width: 100%;
    display: flex;
  }

  .info-dp-section {
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }

  .about-info {
    flex-direction: column;
  }

  .dp {
    align-items: center;
    justify-content: center;
  }

  .activeThismobiletab:before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    left: -20px;
    border-radius: 50%;
  }

  .projects-section-div {
    width: 80%;
  }

  .project-box {
    flex-direction: column;
    height: 800px;
  }

  .image-div,
  .info-div {
    width: 100%;
    height: 50%;
  }

  .image-div {
    padding: 0 0 0 80px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .text-content {
    padding-left: 0;
    width: 80%;
  }

  #hello-friend {
    height: 100px;
    font-size: 3.5rem;
  }

  #name,
  #work {
    font-size: 5.5rem;
  }

  #info-para,
  .language-name {
    width: 100%;
  }

  .contact-btn-div {
    height: 140px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .setting-container {
    margin-left: 0;
  }

  .dp::after,
  .dp::before {
    display: none;
  }

  .logo {
    width: 18%;
  }

  .logo:hover {
    transform: translateY(200px);
    transition-duration: 1s;
  }

  .projects-section-div {
    width: 80%;
  }

  .project-boxes-div {
    padding: 40px 0;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 45%;
  }

  .hamburgerbase,
  .navbar {
    height: 70px;
  }

  #hamburger {
    margin-right: 20px;
    height: 115px;
    align-items: flex-end;
  }

  #hello-friend,
  .two-words article {
    font-size: 2.5rem;
  }

  .hey {
    left: 70px;
  }

  .logo:hover {
    transform: translateY(200px);
    transition-duration: 1s;
  }

  .landing-page-container {
    height: 85vh;
  }

  .text-content {
    justify-content: flex-start;
  }

  .project-box {
    height: 550px;
  }

  .info-div {
    height: 60%;
  }

  .image-div {
    height: 40%;
    padding-left: 50px;
  }

  .image-div img {
    border-top-left-radius: 10px;
  }

  .tech-stack-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tech-stack-box {
    width: 100%;
    height: calc(76vw / 2);
  }
}

@media screen and (max-width: 430px) {
  html {
    font-size: 45%;
  }

  .about-section,
  .projects-section-div,
  .skills-section {
    width: 80%;
  }

  .info-div {
    padding: 0 30px;
  }

  .two-words article {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 375px) {
  html {
    font-size: 42%;
  }

  .dp img {
    width: 200px;
  }

  .two-words {
    height: 50px;
  }

  .two-words article {
    font-size: 2rem;
  }

  .footer-bottom article {
    font-size: 1.3rem;
  }

  .logos {
    gap: 20px;
  }
}

@media screen and (max-width: 300px) {
  html {
    font-size: 42%;
  }

  .language-name article {
    text-align: center;
  }

  .two-words {
    align-items: flex-end;
    height: 50px;
  }

  .two-words article {
    font-size: 1.5rem;
  }

  .footer-bottom article {
    font-size: 1rem;
  }

  .social-media-container a {
    width: 50px;
    height: 50px;
  }

  .logos {
    gap: 20px;
  }
}

@media only screen and (max-width: 1300px) and (max-height: 730px) {
  .landing-page-container {
    height: fit-content;
    margin-top: 100px;
  }
}

.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--sankit-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--sankit-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--sankit-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  .custom-cursor__cursor-two,
  .custom-cursor__cursor {
    display: none;
  }
}

.pe-none {
  pointer-events: none;
}

/* contact section */
/* .contact-section section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.contact-section section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.contact-section section .trees {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 100;
  pointer-events: none;
}

.contact-section section .girl {
  position: absolute;
  scale: 0.5;
  pointer-events: none;
  animation: animateGirl 10s linear infinite;
}

@keyframes animateGirl {
  0% {
    transform: translateX(calc(100% + 100vw));
  }

  50% {
    transform: translateX(calc(-100% - 100vw));
  }

  50.01% {
    transform: translateX(calc(-100% - 100vw)) rotateY(180deg);
  }

  100% {
    transform: translateX(calc(100% + 100vw)) rotateY(180deg);
  }
}

.contact-section .login {
  position: relative;
  padding: 60px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-section .login h2 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 2.5em;
  font-weight: 600;
  color: #8f2c24;
  margin-bottom: 10px;
}

.contact-section .login .inputBox {
  position: relative;
}

.contact-section .login .inputBox input {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  outline: none;
  font-size: 1.25em;
  color: #8f2c24;
  border-radius: 5px;
  background: #fff;
  border: none;
  margin-bottom: 30px;
}

.contact-section .login .inputBox ::placeholder {
  color: #8f2c24;
}

.contact-section .login .inputBox #btn {
  position: relative;
  border: none;
  outline: none;
  background: #8f2c24;
  color: #fff;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: 500;
  transition: 0.5s;
}

.contact-section .login .inputBox #btn:hover {
  background: #d64c42;
}

.contact-section .login .group {
  display: flex;
  justify-content: space-between;
}

.contact-section .login .group a {
  font-size: 1.25em;
  color: #8f2c24;
  font-weight: 500;
  text-decoration: none;
}

.contact-section .login .group a:nth-child(2) {
  text-decoration: underline;
}

.contact-section .leaves {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.contact-section .leaves .set {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.contact-section .leaves .set div {
  position: absolute;
  display: block;
}

.contact-section .leaves .set div:nth-child(1) {
  left: 20%;
  animation: animatecontact 20s linear infinite;
}

.contact-section .leaves .set div:nth-child(2) {
  left: 50%;
  animation: animatecontact 14s linear infinite;
}

.contact-section .leaves .set div:nth-child(3) {
  left: 70%;
  animation: animatecontact 12s linear infinite;
}

.contact-section .leaves .set div:nth-child(4) {
  left: 5%;
  animation: animatecontact 15s linear infinite;
}

.contact-section .leaves .set div:nth-child(5) {
  left: 85%;
  animation: animatecontact 18s linear infinite;
}

.contact-section .leaves .set div:nth-child(6) {
  left: 90%;
  animation: animatecontact 12s linear infinite;
}

.contact-section .leaves .set div:nth-child(7) {
  left: 15%;
  animation: animatecontact 14s linear infinite;
}

.contact-section .leaves .set div:nth-child(8) {
  left: 60%;
  animation: animatecontact 15s linear infinite;
}

@keyframes animatecontact {
  0% {
    opacity: 0;
    top: -10%;
    transform: translateX(20px) rotate(0deg);
  }

  10% {
    opacity: 1;
  }

  20% {
    transform: translateX(-20px) rotate(45deg);
  }

  40% {
    transform: translateX(-20px) rotate(90deg);
  }

  60% {
    transform: translateX(20px) rotate(180deg);
  }

  80% {
    transform: translateX(-20px) rotate(45deg);
  }

  100% {
    top: 110%;
    transform: translateX(20px) rotate(225deg);
  }
} */

.contact-section {
  font-family: "poppins", sans-serif;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  background: #11111bc1;
}

.contact-section .box {
  position: relative;
  width: 380px;
  height: 480px;
  background: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;

  @media screen and (max-width: 575px) {
    width: 95%;
  }
}

.contact-section .box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 320px;
  height: 420px;
  background: linear-gradient(0deg, transparent, #cf59e6, transparent, #cf59e6);
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
}

.contact-section .box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 320px;
  height: 420px;
  background: linear-gradient(
    10deg,
    transparent,
    #cf59e6,
    transparent,
    #cf59e6
  );
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
  animation-delay: -3s;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-section .form {
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: #151521;
  z-index: 10;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

.contact-section .form h2 {
  color: #71cbff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 20px;
  margin-bottom: 10px;
}

/* linear-gradient(150deg, #71cbff, #8000ff) */
.contact-section .inputbox {
  position: relative;
  width: 300px;
  margin-top: 22px;
  margin-bottom: 10px;

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

.contact-section .inputbox input {
  position: relative;
  width: 100%;
  padding: 8px 10px 10px;
  background: transparent;
  border: none;
  outline: none;
  color: #b3b3b3 !important;
  font-size: 14px;
  letter-spacing: 0.05em;
  z-index: 10;
}

.contact-section .inputbox span {
  position: absolute;
  left: 0;
  padding: 20px 0px 10px;
  font-size: 12px;
  color: #8f8f8f;
  pointer-events: none;
  letter-spacing: 0.05em;
  transition: 0.5s;
  color: #cf59e6;
  transform: translateX(0px) translateY(-34px);
  font-size: 10px;
}

.contact-section .inputbox input:valid ~ span,
.contact-section .inputbox input:focus ~ span {
  color: #cf59e6;
  transform: translateX(0px) translateY(-34px);
  font-size: 10px;
}

.contact-section .inputbox i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px !important;
  background: #cf59e6;
  border-radius: 4px;
  transition: 0.5s;
  pointer-events: none;
  /* height: 44px !important; */
}

/* .contact-section .inputbox input:valid~i, */
.contact-section .inputbox input:focus ~ i {
  height: 44px;
}

.contact-section .links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.contact-section .links a {
  margin: 10px 0;
  font-size: 12px;
  color: #8f8f8f;
  text-decoration: none;
}

.contact-section .links a:hover,
.contact-section .links a:nth-child(2) {
  color: #45f3ff;
}

.contact-section input[type="submit"] {
  border: none;
  outline: none;
  background: #45f3ff;
  padding: 11px 25px;
  width: 100px;
  margin-top: 10px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.contact-section input[type="submit"]:active {
  opacity: 0.8;
}

/* <style> */
/* Contact Us Custom Component - All styles scoped under .contact-us-cst */
.contact-us-cst {
  font-family: "Inter", sans-serif;
  /* background: #0a0a1a; */
  color: #ffffff;
  /* min-height: 100vh; */
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-us-cst *,
.contact-us-cst *::before,
.contact-us-cst *::after {
  box-sizing: border-box;
}

/* Enhanced Animated Background */
.contact-us-cst-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  z-index: -10;
}

/* Animated Grid */
.contact-us-cst-grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 191, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: contact-us-cst-gridMove 20s linear infinite;
  z-index: -9;
}

@keyframes contact-us-cst-gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating Orbs */
.contact-us-cst-orb {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 255, 0.3) 0%,
    transparent 70%
  );
  animation: contact-us-cst-orbFloat 15s infinite ease-in-out;
  z-index: -8;
}

@keyframes contact-us-cst-orbFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-100px) translateX(50px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50px) translateX(-30px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-150px) translateX(80px) scale(1.1);
    opacity: 0.7;
  }
}

/* Scanning Lines */
/* .contact-us-cst-scan-line {
            position: fixed;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, red, transparent);
            animation: contact-us-cst-scanMove 4s linear infinite;
            z-index: -7;
            box-shadow: 0 0 10px #00bfff;
        } */

@keyframes contact-us-cst-scanMove {
  0% {
    top: -2px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* Data Stream */
.contact-us-cst-data-stream {
  position: fixed;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, #00ff88, transparent);
  animation: contact-us-cst-dataFlow 3s linear infinite;
  z-index: -6;
}

@keyframes contact-us-cst-dataFlow {
  0% {
    top: -100px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* Pulse Waves */
.contact-us-cst-pulse-wave {
  position: fixed;
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 50%;
  animation: contact-us-cst-pulseExpand 6s infinite ease-out;
  z-index: -5;
}

@keyframes contact-us-cst-pulseExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 800px;
    height: 800px;
    opacity: 0;
  }
}

/* Starfield Animation */
.contact-us-cst-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}

.contact-us-cst-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00bfff;
  border-radius: 50%;
  animation: contact-us-cst-twinkle 3s infinite ease-in-out;
  box-shadow: 0 0 6px #00bfff;
}

@keyframes contact-us-cst-twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Matrix Rain Effect */
.contact-us-cst-matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
}

.contact-us-cst-matrix-char {
  position: absolute;
  color: #00ff88;
  font-family: "Courier New", monospace;
  font-size: 14px;
  animation: contact-us-cst-matrixFall 8s linear infinite;
  opacity: 0.7;
}

@keyframes contact-us-cst-matrixFall {
  0% {
    top: -20px;
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* Sparkle Animation */
.contact-us-cst-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00bfff;
  border-radius: 50%;
  pointer-events: none;
  animation: contact-us-cst-sparkleFloat 1.5s ease-out forwards;
  box-shadow: 0 0 8px #00bfff;
}

@keyframes contact-us-cst-sparkleFloat {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0);
  }
}

/* Corner Brackets */
.contact-us-cst-corner-bracket {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #00bfff;
  z-index: 10;
  animation: contact-us-cst-bracketGlow 3s ease-in-out infinite alternate;
}

@keyframes contact-us-cst-bracketGlow {
  0% {
    border-color: #00bfff;
    box-shadow: 0 0 5px #00bfff;
  }
  100% {
    border-color: #ffffff;
    box-shadow: 0 0 15px #00bfff;
  }
}

.contact-us-cst-corner-bracket.contact-us-cst-top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.contact-us-cst-corner-bracket.contact-us-cst-top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.contact-us-cst-corner-bracket.contact-us-cst-bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.contact-us-cst-corner-bracket.contact-us-cst-bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Main Container */
.contact-us-cst-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.contact-us-cst-form {
  background: rgba(10, 10, 26, 0.9);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: contact-us-cst-formPulse 4s ease-in-out infinite alternate;
}

@keyframes contact-us-cst-formPulse {
  0% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 191, 255, 0.1);
  }
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 191, 255, 0.3);
  }
}

/* Background Sparkle Container */
.contact-us-cst-sparkle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.contact-us-cst-form-content {
  position: relative;
  z-index: 2;
}

/* Logo */
.contact-us-cst-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-us-cst-logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bfff 0%, #8a2be2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
  animation: contact-us-cst-logoRotate 10s linear infinite;
}

@keyframes contact-us-cst-logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-us-cst-logo-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Title */
.contact-us-cst-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #00bfff;
  margin-bottom: 8px;
  letter-spacing: 2px;
  animation: contact-us-cst-titleGlow 2s ease-in-out infinite alternate;
}

@keyframes contact-us-cst-titleGlow {
  0% {
    text-shadow: 0 0 10px #00bfff;
  }
  100% {
    text-shadow: 0 0 20px #00bfff, 0 0 30px #00bfff;
  }
}

.contact-us-cst-subtitle {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Form Groups */
.contact-us-cst-form-group {
  margin-bottom: 20px;
}

.contact-us-cst-form-label {
  display: block;
  font-size: 14px;
  color: #00bfff;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-us-cst-input-container {
  position: relative;
}

.contact-us-cst-form-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.contact-us-cst-form-input::placeholder {
  color: #666;
}

.contact-us-cst-form-input:focus {
  border-color: #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.contact-us-cst-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #666;
  transition: fill 0.3s ease;
}

.contact-us-cst-form-input:focus + .contact-us-cst-input-icon {
  fill: #00bfff;
}

textarea.contact-us-cst-form-input {
  min-height: 100px;
  resize: vertical;
  padding-top: 15px;
}

/* Submit Button */
.contact-us-cst-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #00bfff 0%, #8a2be2 100%);
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.contact-us-cst-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-us-cst-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.contact-us-cst-submit-btn:hover::before {
  left: 100%;
}

.contact-us-cst-submit-btn:active {
  transform: translateY(0);
}

/* Loading State */
.contact-us-cst-submit-btn.contact-us-cst-loading {
  background: #333;
  cursor: not-allowed;
}

.contact-us-cst-submit-btn.contact-us-cst-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 191, 255, 0.3);
  border-top: 2px solid #00bfff;
  border-radius: 50%;
  animation: contact-us-cst-spin 1s linear infinite;
}

@keyframes contact-us-cst-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.contact-us-cst-submit-btn.contact-us-cst-loading .contact-us-cst-btn-text {
  opacity: 0;
}

/* Footer */
.contact-us-cst-form-footer {
  text-align: center;
}

.contact-us-cst-footer-link {
  color: #00bfff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-us-cst-footer-link:hover {
  color: #ffffff;
}

.contact-us-cst-footer-text {
  color: #666;
  font-size: 12px;
  margin-top: 10px;
}

/* Success Message */
.contact-us-cst-success-message {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  color: #00ff88;
  text-align: center;
  font-size: 14px;
  display: none;
  animation: contact-us-cst-slideDown 0.3s ease;
}

@keyframes contact-us-cst-slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input Activity Animation */
.contact-us-cst-form-input.contact-us-cst-active {
  border-color: #00bfff;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

/* Responsive */
@media (max-width: 480px) {
  .contact-us-cst-form {
    padding: 30px 20px;
    margin: 10px;
  }

  .contact-us-cst-corner-bracket {
    width: 30px;
    height: 30px;
  }

  .contact-us-cst-corner-bracket.contact-us-cst-top-left,
  .contact-us-cst-corner-bracket.contact-us-cst-top-right {
    top: 10px;
  }

  .contact-us-cst-corner-bracket.contact-us-cst-bottom-left,
  .contact-us-cst-corner-bracket.contact-us-cst-bottom-right {
    bottom: 10px;
  }

  .contact-us-cst-corner-bracket.contact-us-cst-top-left,
  .contact-us-cst-corner-bracket.contact-us-cst-bottom-left {
    left: 10px;
  }

  .contact-us-cst-corner-bracket.contact-us-cst-top-right,
  .contact-us-cst-corner-bracket.contact-us-cst-bottom-right {
    right: 10px;
  }
}
/* </style> */

/* Modern Contact Section */
.modern-contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  /* overflow: hidden; */
  /* background: var(--color-dark-mode); */
}

/* Background with gradient orbs - only 2 orbs for performance */
.modern-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.modern-contact-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.modern-contact-orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--color-light-purple),
    var(--color-purple)
  );
  top: -100px;
  right: -100px;
  animation: modern-contact-float 8s ease-in-out infinite;
}

.modern-contact-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--color-light-blue),
    var(--color-purple)
  );
  bottom: -100px;
  left: -100px;
  animation: modern-contact-float 10s ease-in-out infinite reverse;
}

@keyframes modern-contact-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.modern-contact-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

/* Heading */
.modern-contact-heading {
  text-align: center;
  margin-bottom: 50px;
}

.modern-contact-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
  font-family: "fira code", monospace;
}

.modern-contact-bracket {
  background: linear-gradient(
    135deg,
    var(--color-light-blue),
    var(--color-light-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-contact-subtitle {
  font-size: 1.8rem;
  color: var(--color-ddd-color);
  font-weight: 300;
}

/* Form Wrapper */
.modern-contact-form-wrapper {
  background: linear-gradient(
    to bottom right,
    var(--tech-stack-box-first-color),
    var(--tech-stack-box-second-color)
  );
  border: 1px solid var(--tech-stack-box-border-color);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modern-contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modern-contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modern-contact-form-group-full {
  grid-column: 1 / -1;
}

.modern-contact-label {
  font-size: 1.5rem;
  color: var(--color-light-blue);
  font-weight: 500;
  font-family: "fira code", monospace;
}

.modern-contact-input-wrapper {
  position: relative;
}

.modern-contact-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.modern-contact-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.modern-contact-input::placeholder {
  color: var(--color-gray);
  opacity: 0.5;
}

.modern-contact-input:focus {
  border-color: var(--color-light-blue);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}

.modern-contact-input:focus ~ .modern-contact-input-line {
  transform: scaleX(1);
}

.modern-contact-input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-light-blue),
    var(--color-light-purple)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

/* Submit Button */
.modern-contact-submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--color-light-blue),
    var(--color-purple)
  );
  border: none;
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.modern-contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.modern-contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(107, 197, 248, 0.4);
}

.modern-contact-submit-btn:hover::before {
  left: 100%;
}

.modern-contact-submit-btn:active {
  transform: translateY(-1px);
}

.modern-contact-btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.modern-contact-submit-btn:hover .modern-contact-btn-icon {
  transform: translateX(5px);
}

/* Success Message */
.modern-contact-success-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #00ff88;
  font-size: 1.5rem;
  font-weight: 500;
}

.modern-contact-success-message svg {
  width: 24px;
  height: 24px;
  stroke: #00ff88;
}

.modern-contact-success-message.show {
  display: flex;
  animation: modern-contact-slideIn 0.4s ease;
}

@keyframes modern-contact-slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .modern-contact-title {
    font-size: 3.5rem;
  }

  .modern-contact-subtitle {
    font-size: 1.6rem;
    /* text-align: center; */
  }

  .modern-contact-form-wrapper {
    padding: 20px 20px;
    border-radius: 16px;
  }

  .modern-contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-contact-orb-1,
  .modern-contact-orb-2 {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  /* .modern-contact-section {
    padding: 80px 15px;
  }

  .modern-contact-title {
    font-size: 2.8rem;
  }

  .modern-contact-subtitle {
    font-size: 1.4rem;
  }

  .modern-contact-form-wrapper {
    padding: 25px 20px;
  } */

  /* .modern-contact-input,
  .modern-contact-textarea {
    padding: 12px 15px;
    font-size: 1.4rem;
  } */

  /* .modern-contact-submit-btn {
    padding: 15px 30px;
    font-size: 1.4rem;
  } */
}
