* {
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  margin: 0;
  overflow-x: hidden;
}

/* scrolling stuff */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.2s ease, transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* task bar stuff */
.taskbar-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  overflow: hidden;
  background-color: black;
  z-index: 100;
}

.taskbar-left {
  justify-self: start;
  font-size: 20px;
  color: rgb(255, 255, 255);
  min-width: 0;
  text-decoration: none;
}

.taskbar-left:hover {
  text-decoration: underline;
  cursor: pointer;
}

.taskbar-right:hover {
  text-decoration: underline;
  cursor: pointer;
}

.taskbar-right {
  justify-self: end;
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.taskbar-center {
  justify-self: center;
  text-align: center;
  font-size: 25px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/* hero section */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%, 100% 0%, 100% 100%, 0% 100%;
  }

  50% {
    background-position: 100% 50%, 0% 100%, 0% 0%, 100% 0%;
  }

  100% {
    background-position: 0% 50%, 100% 0%, 100% 100%, 0% 100%;
  }
}

.hero-sect {
  min-height: 90vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-blend-mode: screen;
  padding-left: 70px;
  padding-top: 10vh;
  padding-bottom: 20px;
  margin-top: 10vh;
  background-color: hsla(0, 0%, 0%, 1);
  background-image:
    radial-gradient(at 40% 20%, hsla(24, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(189, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(266, 65%, 40%, 1) 0px, transparent 50%),
    radial-gradient(at 2% 100%, rgb(108, 5, 156) 0px, transparent 50%);
  background-size: 200% 200%;
  background-repeat: no-repeat;
  filter: contrast(110%) brightness(112%);
  animation: gradientMove 15s ease infinite;
}

.title-txt {
  display: flex;
  flex-direction: column;
  font-size: 90px;
  color: white;
  align-items: left;
  justify-content: left;
  gap: 20px;
}

/* about section */
.about-sect {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  font-size: 20px;
  color: white;
  background-color: black;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 1600px;
  height: auto;
  grid-gap: 10px;
  color: #fff;
  padding-top: 5vh;
  font-size: 24px;
  text-align: center;
  padding-bottom: 7vh;

}

.div2 {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.div5 {
    grid-column: span 4 / span 4;
    grid-row: span 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.resume-btn {
    min-width: 10vw;
    font-size: 20px;
    border-radius: 30px;
    padding: 10px;
    color: white;
    background-color: #a92be4;
    overflow: hidden;
    white-space: nowrap;
    align-self: center;
    border: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    margin-top: 20px;
    text-decoration: none;
}

.resume-btn:hover {
  color: #a92be4;
  background-color: white;
  cursor: pointer;
  transform: scale(1.1);
}

.rotating-circle {
  width: 28vw;
  height: 28vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 15px dashed #530379;
  animation: spin 19s linear infinite;
  -webkit-box-shadow: 0px 0px 101px 17px rgba(88, 5, 136, 0.9);
  -moz-box-shadow: 0px 0px 101px 17px rgba(178, 135, 202, 0.9);
  box-shadow: 0px 0px 101px 17px rgba(200, 132, 240, 0.9);
}

.rotating-circle-two {
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 101px 17px rgba(88, 7, 109, 0.9);
  -moz-box-shadow: 0px 0px 101px 17px rgba(178, 135, 202, 0.9);
  box-shadow: 0px 0px 101px 17px rgba(200, 132, 240, 0.9);
  border: 10px dashed #7d16dd;
  animation: spin 16s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* skills section */
.skills-sect {
  min-height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
  background-color: black;
}

.progress-bars {
  width: 90%;
  max-width: 1300px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 50px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.container {
  margin: 0;
  width: fit-content;
  max-width: 450px;
  text-align: left;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.progress-text {
  width: 160px;
  min-width: 160px;
  text-align: left;
}

.progress {
  padding: 6px;
  background: #8a3cff;
  border-radius: 6px;

}

.progress2 {
  border-radius: 30px;
  background: #8a3cff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}

.progress-bar2 {
  height: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 101px 17px rgba(200, 132, 240, 0.9);
  -moz-box-shadow: 0px 0px 101px 17px rgba(200, 132, 240, 0.9);
  box-shadow: 0px 0px 101px 17px rgba(200, 132, 240, 0.9);
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.progress-moved .progress-bar2 {
  width: 85%;
  background-color: #a35ff5;
  animation: progressAnimation 6s;
}

@keyframes progressAnimation {
  0% {
    width: 10%;
    background-color: #d3afff;
  }

  100% {
    width: 85%;
    background-color: #a35ff5;
  }
}

.progress-oscillate .progress-bar2 {
  width: 10%;
  animation: progressOscillate var(--osc-speed) ease-in-out infinite;
}

@keyframes progressOscillate {
  0% {
    width: 10%;
    background-color: #d3afff;
  }

  50% {
    width: var(--osc-target, 70%);
    background-color: #a35ff5;
  }

  100% {
    width: 10%;
    background-color: #d3afff;
  }
}

@keyframes waveMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.jobs-sect {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  margin-bottom: 50px;
  font-size: 40px;
  color: white;
  background-color: hsla(0, 0%, 0%, 1);
  background-image:
    radial-gradient(at 84% 47%, hsla(278, 66%, 48%, 0.43) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(19, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(240, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(343, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 18% 50%, hsla(278, 68%, 43%, 1) 0px, transparent 50%);
  background-size: 200% 100%;
  animation: waveMove 8s ease-in-out infinite;
}

.carousel {
  width: min(1100px, 90vw);
  height: 480px;
  position: relative;
  perspective: 1600px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.job-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 55%;
  max-width: 640px;
  height: 570px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(134, 127, 134, 0.79);
  border: 1px solid rgba(134, 127, 134, 0.31);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: start;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: #f7eaff;
  transform: translateX(0) scale(0.78);
  opacity: 0;
  pointer-events: none;
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease, box-shadow 420ms ease;
  overflow: hidden;
}

.job-card::after {
  content: attr(data-desc);
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.job-card.is-active {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.45), 0 0 80px rgba(163, 95, 245, 0.45);
}

.job-card.is-prev {
  transform: translateX(-95%) scale(0.85);
  opacity: 0.8;
  pointer-events: auto;
  z-index: 2;
  filter: blur(0.5px) saturate(0.9);
}

.job-card.is-next {
  transform: translateX(95%) scale(0.85);
  opacity: 0.8;
  pointer-events: auto;
  z-index: 2;
  filter: blur(0.5px) saturate(0.9);
}

.job-card.is-hidden {
  opacity: 0;
  transform: translateX(0) scale(0.6);
  filter: blur(4px);
}

.date-comp {
  height: 35px;
  width: 180px;
  background-color: rgb(73, 5, 119);
  border-radius: 15px;
  text-align: left;
  margin-bottom: 10px;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.job-para {
  font-size: 18px;
  text-align: start;
  list-style-type: disc;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 8px;
}

.skills-cont {
  display: flex;
  font-size: 18px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.skills-comp {
  height: 35px;
  width: 100px;
  background-color: rgb(73, 5, 119);
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.skills-col {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-shrink: 0;

}

.skills-col ul {
  list-style-type: none;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  
}

/* inspo section */
.inspo-sect {
  min-height: 100vh;
  width: 100%;
  display: flex;
  font-size: 30px;
  color: white;
  background-color: black;
  padding-left: 40px;
  padding-right: 100px;
  gap: 30px;
  padding-top: 30px;
}

.inspo-col {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  flex-direction: column;
  line-height: 1.5;
  font-size: 24px;
  justify-content: center;
}

.inspo-list {
  list-style: none;
  line-height: 2;
}

.inspo-comp {
  background-color: rgb(73, 5, 119);
  border-radius: 15px;
  margin-bottom: 10px;
  font-size: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  margin-top: 30px;
}

/* apps section */
.apps-sect {
  min-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  color: white;
  background-color: black;
  padding-left: 40px;
  padding-right: 100px;
  box-sizing: border-box;
  place-items: center;
  justify-content: flex-start;
}

.title-txt-apps {
  margin-bottom: 50px;
}

.title-txt-apps {
  margin-bottom: 50px;
}

.container-apps {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 10px;

  >div {
    flex: 0 0 300px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px #1e0e3e;
    position: relative;
    overflow: hidden;

    &:nth-of-type(1) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/rubiks-img.jpg") no-repeat 50% / cover;
    }

    &:nth-of-type(2) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/go-img.jpg") no-repeat 50% / cover;
    }

    &:nth-of-type(3) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/celestia-img.png") no-repeat 50% / cover;
    }

    .content {
      font-size: 1.5rem;
      color: #fff;
      display: flex;
      align-items: center;
      padding: 15px;
      opacity: 0;
      flex-direction: column;
      height: 100%;
      justify-content: flex-end;
      background: rgb(2, 2, 46);
      background: linear-gradient(0deg,
          rgba(2, 2, 46, 0.6755077030812324) 0%,
          rgba(255, 255, 255, 0) 100%);
      transform: translatey(100%);
      transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
      visibility: hidden;
      text-decoration: none;
    }

    &:hover {
      flex: 0 0 400px;
      box-shadow: 1px 3px 15px #7645d8;
      transform: translatey(-30px);
    }

    &:hover .content {
      opacity: 1;
      transform: translatey(0%);
      visibility: visible;
    }
  }
}

/* designs section */
.design-sect {
  min-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  font-size: 30px;
  color: white;
  background-color: black;
  padding-left: 40px;
  padding-right: 100px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background-color: hsla(0, 0%, 0%, 1);
  background-image:
    radial-gradient(at 1% 0%, hsla(92, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 40% 20%, hsla(26, 0%, 0%, 1) 0px, transparent 50%),
    radial-gradient(at 97% 68%, hsla(277, 94%, 7%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 93%, hsla(270, 89%, 25%, 1) 0px, transparent 50%),
    radial-gradient(at 67% 95%, hsla(285, 81%, 66%, 1) 0px, transparent 50%),
    radial-gradient(at 5% 44%, hsla(300, 91%, 23%, 1) 0px, transparent 50%);
}

.title-txt-design {
  margin-bottom: 50px;
}

.carousel-wrapper-des {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.carousel-viewport-des {
  width: calc(300px * 5 + 10px * 4);
  height: 500px;
  overflow: hidden;
  position: relative;
}

.container-apps-des {
  width: calc(300px * 6 + 10px * 5);
  height: 500px;
  display: flex;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  >div, >a {
    flex: 0 0 300px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px #1e0e3e;
    position: relative;
    overflow: hidden;

    &:nth-of-type(1) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/greengrid-img.png") no-repeat 50% / cover;
    }

    &:nth-of-type(2) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/pulse-img.png") no-repeat 50% / cover;
    }

    &:nth-of-type(3) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/goodbakery-img.jpg") no-repeat 50% / cover;
    }

    &:nth-of-type(4) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/scoop-img.jpg") no-repeat 50% / cover;
    }

    &:nth-of-type(5) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/michi-img.webp") no-repeat 50% / cover;
    }
    &:nth-of-type(6) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/childrens-center-img.jpg") no-repeat 50% / cover;
    }

    &:nth-of-type(7) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/kikis-poster.png") no-repeat 50% / cover;
    }

    &:nth-of-type(8) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/spirited-poster.png") no-repeat 50% / cover;
    }

    &:nth-of-type(9) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/howl-poster.png") no-repeat 50% / cover;
    }

    &:nth-of-type(10) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/ponyo-poster.png") no-repeat 50% / cover;
    }

    &:nth-of-type(11) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/laputa-poster.png") no-repeat 50% / cover;
    }

    &:nth-of-type(12) {
      background: linear-gradient(rgba(162, 10, 208, 0.25), rgba(128, 0, 128, 0.25)), url("./images/totoro-poster.png") no-repeat 50% / cover;
    }


    .content-des {
      font-size: 1.5rem;
      color: #fff;
      display: flex;
      align-items: center;
      padding: 15px;
      opacity: 0;
      flex-direction: column;
      height: 100%;
      justify-content: flex-end;
      background: rgb(2, 2, 46);
      background: linear-gradient(0deg,
          rgba(2, 2, 46, 0.6755077030812324) 0%,
          rgba(255, 255, 255, 0) 100%);
      transform: translatey(100%);
      transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
      visibility: hidden;
    }

    &:hover {
      box-shadow: 1px 3px 15px #7645d8;
      transform: translatey(-30px);
    }

    &:hover .content-des {
      opacity: 1;
      transform: translatey(0%);
      visibility: visible;
    }
  }
}

.carousel-arrow {
  background: rgba(134, 127, 134, 0.79);
  border: 1px solid rgba(134, 127, 134, 0.31);
  color: #f7eaff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.poster-card {
  text-decoration: none;
  color: inherit;
}

.carousel-arrow:hover {
  background: rgba(163, 95, 245, 0.3);
  border-color: #a35ff5;
  box-shadow: 0 0 20px rgba(163, 95, 245, 0.5);
  transform: scale(1.1);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* footer content */
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1rem, 1.5vw, 4rem);
  color: white;
  width: 100%;
}

.personal-logo {
  width: 6vw;
  height: auto;
  padding-right: 1rem;
}

.linkedin-btn {
  margin-right: auto;
  color: inherit;
  transition: color 0.5s ease-out, transform 0.5s ease-out;
}

.linkedin-btn:hover {
  color: #a35ff5;
  transform: scale(1.1);
}

.git-btn {
  margin-left: auto;
  color: inherit;
  transition: color 0.5s ease-out, transform 0.5s ease-out;
}

.git-btn:hover {
  color: #a35ff5;
  transform: scale(1.1);
}

/* contact page */
.contact-sect {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  font-size: 30px;
  color: white;
  background-color: black;
  padding-left: 40px;
  padding-right: 100px;
  padding-top: 30px;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background-color: hsla(0, 0%, 0%, 1);
  background-image:
    radial-gradient(at 0% 18%, hsla(283, 81%, 51%, 0.7) 0px, transparent 50%),
    radial-gradient(at 91% 53%, hsla(283, 83%, 46%, 0.46) 0px, transparent 50%),
    radial-gradient(at 7% 92%, hsla(285, 83%, 34%, 0.57) 0px, transparent 50%),
    radial-gradient(at 83% 100%, hsla(289, 90%, 51%, 0.42) 0px, transparent 50%),
    radial-gradient(at 43% 100%, rgb(120, 10, 184) 0px, transparent 50%);
  background-size: 220% 220%;
  background-repeat: no-repeat;
  animation: contactGradientMove 14s ease-in-out infinite;
}

@keyframes contactGradientMove {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  }

  50% {
    background-position: 80% 20%, 20% 80%, 60% 30%, 30% 70%, 50% 20%;
  }

  100% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  }
}

.contact-container {
  width: min(640px, 80vw);
  padding: 32px 36px 40px;
  margin-top: 10vh;
  background: rgba(134, 127, 134, 0.59);
  border: 1px solid rgba(134, 127, 134, 0.31);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
  border-radius: 15px;
}

.contact-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-txt {
  font-size: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(37, 26, 26, 0.13);
  background: rgba(0, 0, 0, 0.596);
  color: #f7eaff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a35ff5;
  box-shadow: 0 0 0 3px rgba(163, 95, 245, 0.25);
}

.submit-btn {
  margin-top: 6px;
  align-self: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(120deg, #a406b994, #6a1bbf);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, color 0.15s ease;
}

.submit-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);

}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, rgba(30, 0, 50, 0.95), rgba(10, 0, 30, 0.95));
  border: 2px solid rgba(163, 95, 245, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  width: 90%;
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(163, 95, 245, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #a35ff5;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.modal-close:hover {
  color: #d3afff;
  transform: rotate(90deg);
}

.modal-body h2 {
  color: #a35ff5;
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 0;
}

.modal-body p {
  color: #f7eaff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

#modalImages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#modalImages img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(163, 95, 245, 0.2);
  transition: transform 0.3s, border-color 0.3s;
}

#modalImages img:hover {
  transform: scale(1.02);
  border-color: rgba(163, 95, 245, 0.5);
}

.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(30, 0, 50, 0.5);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #a35ff5;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #d3afff;
}


@media (min-width: 1200px) {
  .modal-content {
    margin: 80px auto 40px auto;
  }
}

/* Blogs page stuff */
.header {
  color: white;
  font-size: 32px;
  margin-top: 15vh;
  text-align: center;
}


