html {
  scroll-behavior: smooth;
}

body {
    font-family: arial;
    overflow-x: hidden;
    margin: 0%;
}

/* NavBar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;

}

.navbar .logo {
    font-size: 25px;
    margin-left: 30px;
    font-family: Arial, sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style-type: none;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.nav-links li {
    margin: 0 35px;
}

.nav-links a {
  text-decoration: none;
  color: #303030;
}

.nav-links li:hover {
    cursor: pointer;
}

/* Hamburger Menu - hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 30px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        flex-direction: column;
        background-color: #303030;
        width: 100%;
        display: none;
        text-align: center;
   
    }

    .nav-links li {
        margin: 15px 0;
        color: white;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar.menu-active {
        background-color: #303030;
    }

    .navbar.menu-active .logo{
        color: #fff;
    }

    .navbar.menu-active .hamburger div {
      color: white;
      background-color: #fff;
    }

    .nav-links a {
  text-decoration: none;
  color: #fff;


}

}

   

header {
    height: 20vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.header-content {
    text-align: center;
    margin-bottom: 50px;
    font-family: "Inter", sans-serif;
}

.header-content p {
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  color: #374151;
}

.header-content h2 {
  margin-bottom: 10px;
}

.pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.header-button1 {
    border: 1px solid transparent;
    border-radius: 7px;
    color: whitesmoke;
    background-color: #303030;
    padding: 10px 14px;
    font-weight: 700;
    margin-right: 20px;
    transition: all 0.25s ease;
    font-size: 14px;
}


.header-button2 {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 7px;
    color: #303030;
    padding: 10px 14px;
    font-weight: 700;
    background-color: white;
    margin-bottom: 50px;
    transition: all 0.25s ease;
    font-size: 14px;
}

.header-button1:hover {
    cursor: pointer;
    opacity: 0.8;
}

.header-button2:hover {
   cursor: pointer;
    opacity: 0.8;
}


/* ABOUT ME */

.about-me {
  background-color: #f9fafb; 
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.about-me-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 40px;
  text-align: center;
}

.about-me-info {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  gap: 60px; 
  padding: 0 40px;
}

.about-me-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-me-pfp {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  background-color: #e5e7eb; 
}

.about-me-text {
  flex: 1;
  text-align: left;
  color: #374151;
  line-height: 1.7;
  font-size: 1rem;
}

.about-me-text p + p {
  margin-top: 1.2em; 
}


@media (max-width: 768px) {
  .about-me-info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-me-pfp {
    max-width: 80%;
  }

  .about-me-text {
    text-align: center;
  }
}

/*Skills And Expertise */

.skills {
  background-color: #fff;
  width: 100%;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}

.skills h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.skills-and-expertise {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skills-tab {
  flex: 1 1 300px;
  max-width: 370px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.skills-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.skills-tab .icon {
  font-size: 2rem;
  color: #2f54eb;
  margin-bottom: 10px;
}

.skills-tab h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.skills-tab p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}



/* Featured Projects */

.featured-projects {
  background-color: #f9fafb;
  padding: 80px 0;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.featured-projects h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.featured-projects p {
  color: #4b5563;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


.project-img1 {
  background-color: #e5e7eb;
  background-image: url(img_1.png);
  background-position: top;
  background-size: cover;
  height: 180px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.project-img2 {
  background-color: #e5e7eb;
  background-image: url(img_2.png);
  background-position: top;
  background-size: cover;
  height: 180px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.project-content {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project-content h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #111;
}

.project-content p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 15px;
}


.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tags span {
  background-color: #f3f4f6;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #374151;
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.button-outline,
.button-filled {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
 
}

.button-outline {
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #111;
  padding: 10px 40px;
}

.button-filled {
  border: none;
  background-color: #000;
  color: white;
  padding: 10px 40px;

}

.button-outline:hover {
  background-color: #f3f4f6;
}

.button-filled:hover {
  opacity: 0.8;
}




  
/* Get In Touch Section */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}


.get-in-touch {
  width: 100%;
  padding: 50px 5%;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  
}

.get-in-touch h2, 
.get-in-touch p {
  text-align: center;
  margin-bottom: 50px;
}

.get-in-touch h2 {
  font-size: 2rem;
  color: #303030;
  margin-bottom: 10px;
}

.get-in-touch p{
  color: #555;
}

/* Contact section layout */
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.contact-information {
  flex: 1;
  min-width: 280px;
  text-align: center; 
}

.follow-me {
  text-align: center;
} 

.contact-information h3 {
  color: #303030;
  margin-bottom: 15px;
}

.contact-information p {
  color: #555;
  margin: 6px 0;
}

/* Follow me + icons */
.follow-me {
  margin-top: 35px;
  text-align: center;
}

.follow-me h3 {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #303030;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Contact form */
form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: none;
  transition: border-color 0.25s ease;
}

form input:focus {
  border-color: #303030;
}

form button {
  margin-top: 10px;
  background-color: #303030;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

form button:hover {
  background-color: #505050;
}

form button:active {
  opacity: 0.7;
}




/* Footer */

footer {
    background-color: #303030;
    text-align: center;
  
    padding: 30px 0;
    color: #f5f5f5;
   

}



