.langList {
  list-style: none;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  margin-top: 80px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.langList li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
  box-sizing: border-box;
}
.htmlpic, .csspic, .jspic, .javapic, .pythonpic {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
  vertical-align: middle;
  flex-shrink: 0;
}
.htmlpic {
  background-image: url(images/HtmlLogo.png);
}
.csspic {
  background-image: url(images/CssLogopng.png);
}
.jspic {
  background-image: url(images/jsLogo.png);
}
.javapic {
  background-image: url(images/javaLogo.png);
}
.pythonpic {
  background-image: url(images/pythonLogo.webp);
}
.title{
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px 4px #FFFFFF;
}
.header-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0px;
  background-image: url(images/headerBackground.jpg);
  background-size: cover;
  background-position-y: 0%;
  background-position-x: center;
  margin: auto;
  height: 80vh ;
  width: auto;
  background-repeat: no-repeat;
  position: relative;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.246); 
  z-index: 1; 
}
.header-bar .picture {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin-bottom: 0;
}
.about{
    text-align: center;
    list-style-type: none;
    padding-left: 20%;
    padding-right: 20%;
    font-size: larger;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 50px;
}
.picture{
    object-fit: cover;
    width: 700px;
    height: 700px;
}
.aboutTitle{
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 2px 2px 4px #ffffff;
    text-align: center;
}
.langList{
    background-image: url(images/LangButton.jpg);
    background-size: cover;
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.projectsTitle{
    text-align: center;
    margin-top: 50px;
}
@import url("https://fonts.cdnfonts.com/css/poppins");

body {
  background-color: rgb(231, 254, 254);
}

.banner {
width: 100%;
min-height: 700px;
text-align: center;
overflow: hidden;
position: relative;
margin-top: 100px;
}
.banner .slider {
  position: absolute;
  width: 200px;
  height: 250px;
  top: 10%;
  left: calc(50% - 100px);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 40s linear infinite;
  /*z-index: 2;*/
}
@keyframes autoRun {
  from {
    transform: perspective(1000px) rotateX(-15deg) rotateY(0deg);
  }
  to {
    transform: perspective(1000px) rotateX(-15deg) rotateY(360deg);
  }
}

.banner .slider .item {
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(
      calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(450px);
}

.banner .slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border: 5px solid rgba(0, 242, 255, 0.8);
  opacity: 0.9;
}

.banner .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100vw);
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.contact-section {
width: 100%;
margin-left: auto;
margin-right: auto;
padding: 3rem 1rem;
margin-top: 0;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
}

.contact-description {
  color: rgb(107 114 128);
  text-align: center;
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-left: 20%;
  padding-right: 20%;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #00ddff;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 300px;
  margin-top: 1.2rem;
  background-color: #009db9;
  color: #fff;
  padding: 13px 5px;
  border-radius: 33px;
  justify-content: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.Created{
  text-align: center;
}
.giticon{
  width: 50px;
  height: 50px;
  float: right;
}
.linkedicon{
  width: 55px;
  height: 55px;
  float: right;
}
.project-title{
    margin-bottom: 0px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-shadow: 2px 2px 4px #8df6ff;
    font-size: 50px;
}
.Title{
  text-align: center;
  font-size: 100px;
  box-shadow: 0 10px 30px rgba(0, 195, 255, 0.911);
  background-color: rgb(231, 254, 254);
  background-size: cover;
  padding: 15px 10px;
  border-radius: 33px;
   font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  animation: glow 2s ease-in alternate;
}
@keyframes glow{
  from{
    box-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 50px #ffffff;
  }
  to{
    box-shadow: 0 0 20px #00ddff,0 10 40px rgba(0,195,255,0.911);
  }
}
.Title h1{
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.Title{
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  margin-top: 225px;
  text-align: center;
  margin-bottom: 10px;
}
.contactbutton{
  box-shadow: 0 4px 24px rgba(0, 195, 255, 0.911);
  background-color: rgb(231, 254, 254);
  background-size: cover;
  padding: 15px 10px;
  border-radius: 33px;
  width: 500px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactpic{
  box-shadow: 0 4px 24px rgba(0, 195, 255, 0.911);
  background-image: url(images/headerBackground.jpg);
  background-size: cover;
  padding: 15px 10px;
  border-radius: 33px;
  width: 500px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.contactpage{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

@media (max-width: 700px) {
  .header-bar {
    height: 300px; /* Much shorter on mobile */
    background-size: cover;
    background-position: top center;
    margin-top: 0; /* Avoid large negative margins */
  }

  .header-bar .picture {
    width: 400px;  /* Optional: shrink picture too */
    height: auto;
  }
  .banner .slider .item img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 40px;
  border: 5px solid rgba(0, 242, 255, 0.8);
  opacity: 0.9;
}
.banner .slider .item {
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(
      calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(300px);
}
.banner {
width: 100%;
min-height: 400px;
text-align: center;
overflow: hidden;
position: relative;
}
.Title{
  text-align: center;
  font-size: 25px;
  box-shadow: 0 4px 24px rgba(0, 195, 255, 0.911);
  background-color: rgb(231, 254, 254);
  background-size: cover;
  padding: 15px 10px;
  border-radius: 33px;
   font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.Title h1{
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.Title{
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  margin-top: 130px;
  text-align: center;
  margin-bottom: 10px;
}
  .contactpic {
    display: none !important;
  }
  .langList li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
}

@media (max-width: 926px) {
  .header-bar {
    height: 300px; /* Much shorter on mobile */
    background-size: cover;
    background-position: top center;
    margin-top: 0; /* Avoid large negative margins */
  }

  .header-bar .picture {
    width: 400px;  /* Optional: shrink picture too */
    height: auto;
  }
  .banner .slider .item img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 40px;
  border: 5px solid rgba(0, 242, 255, 0.8);
  opacity: 0.9;
}
.banner .slider .item {
  position: absolute;
  inset: 0 0 0 0;
  transform: rotateY(
      calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(300px);
}
.banner {
width: 100%;
min-height: 400px;
text-align: center;
overflow: hidden;
position: relative;
}
.Title{
  text-align: center;
  font-size: 25px;
  box-shadow: 0 4px 24px rgba(0, 195, 255, 0.911);
  background-color: rgb(231, 254, 254);
  background-size: cover;
  padding: 15px 10px;
  border-radius: 33px;
   font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.Title h1{
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.Title{
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  margin-top: 130px;
  text-align: center;
  margin-bottom: 10px;
}
  .contactpic {
    display: none !important;
  }
  .langList li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
}