/* CSS Version as of 25/08/2025 16:58 */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: poppins, sans-serif;
  text-decoration: none;
}

html, body 
{
    overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  right: 0;
}

.hero-section {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #3aafa9;
}

.wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 40px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #3aafa9;
}

.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.logo i {
  height: 45px;
  width: 45px;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 10px;
  margin-right: 5px;
  cursor: pointer;
  text-align: center;
}

.logo .logo-text {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
}

nav .togglebtn {
  width: 35px;
  height: 35px;
  position: fixed;
  top: 45px;
  right: 3%;
  z-index: 5;
  cursor: pointer;
  display: initial;
}

nav .togglebtn span {
  display: block;
  background-color: #16213e;
  margin: 5px 0;
  width: 80%;
  height: 3px;
  transition: 0.3s;
  transition-property: transform, opacity;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
}

.hero-text {
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.hero-text h5 {
  color: #fff;
  font-size: 80px;
}

.hero-text h5 span {
  color: #17252a;
  font-size: 80px;
}

.hero-text h1 {
  color: #f5f5f5;
  font-size: 3rem;
}

.hero-text p {
  color: #f5f5f5;
  font-size: 1.5rem;
}

.btn-group {
  margin: 45px 0;
}

.btn-group .btn {
  border-color: #d5d5d5;
  color: #fff;
  padding: 12px 25px;
  margin: 5px 0;
  margin-right: 7px;
  border-radius: 30px;
  border: 2px solid #fff;
  box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.78);
}

.btn.active {
  border-color: #f5f5f5;
}

/* Arrow Animation */
.arrowContainer {
  display: flex;
  width: 100%;
  justify-content: center;  
  font-size: 40px;
  color: #17252a;
  padding-top: 300px;
}

/* Hamburger Menu Toggle Animation */
.click {
  top: 45px;
}
.click span {
  position: absolute;
  margin-top: 12px;
}
.click span:first-child {
  transform: rotate(-40deg);
  background-color: white;
}
.click span:nth-child(2) {
  opacity: 0;
  margin: 0;
  background-color: white;
}
.click span:last-child {
  transform: rotate(45deg);
  top: 0;
  background-color: white;
}

nav .navlinks {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: -100%;
  bottom: 0;
  width: 0;
  height: 100vh;
  background-color: #17252a;
  z-index: 3;
  box-shadow: 5px 13px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 25px 0;
}

nav .navlinks li {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-bottom: 40px;
}

nav .navlinks li a {
  margin: auto;
  background: none;
  width: auto;
  font-size: 2.9rem;
  font-weight: 700;
  text-align: center;
  color: white;
}

nav .navlinks.open {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0;
}

.open .navlink:hover {
  transition: 0.2s;
  color: #3aafa9;
}

/* Projects Section */
.projects-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 300px;
}

.projects-section h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.project-list h3 a {
  color: white;
}

.project-list h3 a:hover {
  color: black;
  transition: 0.5s; 
}

.section-about {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #3aafa9;
}

.about-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-container {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text h2 {
  position: relative;
  float: left;
  margin-left: -340px !important;
}

/* About Me Section */
.aboutMe {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #3aafa9;
  height: 110vh;
}

.wrapper2 {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
}

.wrapper2 .toolkit {
    width: 100%;
    flex-direction: row;
}

.wrapper2 .toolkit h2 
{
    color: #fff;
}

.aboutMe .aboutMeTop {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
  width: 100%;
}

.aboutMe .aboutMeTop .aboutMeImage {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  padding-left: 20px;
}

.aboutMe .aboutMeTop .aboutMeImage img {
  border-radius: 10px;
}

.aboutMe .aboutMeTop .aboutMeBio {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aboutMe h2 {
  font-size: 40px;
  color: #fff;
  margin: 0;
}

.aboutMe .aboutMeTop .aboutMeBio p {
  font-size: 20px;
  color: #17252a;
  width: 100%;
}

.programming-languages {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding: 20px;
  color: #fff;
  background: #3aafa9;  
}

.language-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.language-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-list li img {
  width: 90px;
  height: 60px;
  object-fit: contain;
}

/* Projects Section */
.projects-section {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #3aafa9;
  text-align: center;
  color: #fff;
}

.projects .projects-section h2 {
  font-size: 40px;
}

/* Contact Section*/
.contact {
  width: 100%;
  height: 50%;
  min-height: 50vh;
  background: #77cccb;
  text-align: center;
  padding-top: 4rem;
}

.contact h2::before {
  content: "";
  position: absolute;
  background-color: #3aafa9;
  height: 20px;
  left: 15px;
  bottom: 0;
  width: 298px;
  z-index: -2;
  box-shadow: 0 0 8px #3aafa9;
  opacity: 50%;
}

.contact h2 {
  font-size: 40px;
  color: #fff;
  position: relative;
  margin: 0;
  z-index: 2;
}

.contact-container {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
}

.contact .contact-information {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  width: 30%;
  padding-top: 20px;
}

.contact .contact-container .contact-information p {
  padding-top: 20px;
  color: #fff;
}

.contact .contact-container .contact-information .socialIcons {
  padding-top: 40px;
  display: flex;
  list-style: none;
  justify-content: space-around;
}

.contact .contact-container .contact-information .socialIcons .social i {
  color: #fff;
  font-size: 2.3rem;
  margin-right: 10px;
  transition: 0.5s;
}

.contact .contact-container .contact-information .socialIcons .social i:hover {
  color: #f5f5f5;
  transform: rotate(360deg);
}

.contact-container .contactForm {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  width: 70%;
  padding-left: 100px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.contact .contact-container .contactForm input,
.contact .contact-container .contactForm textarea {
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #3aafa9;
  border-radius: 5px;
  resize: none;
}

.visuallyHidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  overflow: hidden;
}

.contact .contact-container .contactForm textarea {
  height: 200px;
}

.contact .contact-container .contactForm button {
  background-color: #3aafa9;
  border: 2px solid #3aafa9;
  padding: 10px 15px;
  margin: 10px 0;
  width: auto;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.contact .contact-container .contactForm button:hover {
  background-color: #fff;
  color: #3aafa9;
  transition: 0.5s;
}

/* Footer */

.footer-section {
  width: 100%;
  height: 10%;
  min-height: 5vh;
  background: #0b918a;
  text-align: center;
}

.footer .footer-section p {
  margin: 0;
  padding: 10px;
  color: #fff;
}

.center-content {
  text-align: center;
  margin: 0 auto;
}

.project-list {
  list-style: none;
  padding-left: 0;
}

.project-list li {
  margin-bottom: 2rem;
}

.project-list h3 {
  font-size: 1.8rem;
  color: #fff;
}

.project-list p {
  font-size: 1.2rem;
  color: #f5f5f5;
}

/* Media Queries*/

@media (max-width: 930px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

.aboutMe
{
  height: auto;
}

  .arrowContainer {
    position: relative;
    top: -120px;
  }

  nav .togglebtn {
    display: initial;
  }

.language-list li img {
  width: 80%;
}

  nav .navlinks {
    position: fixed;
    right: -100%;
    height: 100vh;
    bottom: 0;
    width: 0;
    background-color: #222;
    z-index: 3;
    box-shadow: 5px 13px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
    padding: 25px 0;
    display: none;
  }
  nav .navlinks li {
    display: block;
  }
  nav .navlinks li a {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  nav .navlinks.open {
    right: 0;
    width: 100%;
    visibility: visible;
    display: flex;
  }

  .aboutMe .aboutMeTop {
    flex-direction: row;
  }
  .aboutMe .aboutMeTop .aboutMeImage {
    width: 80%;
  }
}

@media (max-width: 768px) {
  /* About Section Mobile View  */ 
  
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    flex-direction: column;
    padding-top: 2rem;
  }
  .hero-text {
    padding: 40px 0;
  }

  .wrapper2 {
    padding: 0 20px;
  }

.aboutMe 
{
    height: auto;
}

  .aboutMe .aboutMeTop {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
  }
  
  .aboutMe .aboutMeTop .aboutMeBio {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 10px 0;
  }
  
  .aboutMe .aboutMeTop .aboutMeImage {
    width: 100%;
    text-align: center;
    margin: 20px 0 0 0;
    padding: 0 10px;
  }
  
  .aboutMe .aboutMeTop .aboutMeImage img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  
  .about-text h2 {
    float: none;
    margin-left: 0 !important;
    text-align: center;
  }

  .contact-container {
    flex-direction: column; 
    padding: 0 20px;        
  }
  .contact .contact-information,
  .contact .contactForm {
    width: 100%;            
    padding: 0;             
  }
  .contact .contact-information {
     margin-bottom: 20px;    
  }
  .contact-container .contactForm {
    padding: 0;            
  }

.language-list li img {
  width: 80%;
}

}

/* Bounce animation on arrow */

.bounce {
  animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-20px); }
  40%  { transform: translateY(-30px); }
  60%  { transform: translateY(-20px); }
  80%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}