body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  /* background-image: url(./bg\ gif.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background: white;
}

.section_home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  backdrop-filter: blur(6px);
  background: #7d399c;
  color: #fff;
  position: fixed;
  width: 100%;
  border-radius: 3px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.section_home .logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.5s;
  border-radius: 5px;
  padding: 0.3rem;
}
.nav-links li a.active {
  color: black;
}
.nav-links li a:hover {
  color: black;
  border: 1px solid black;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  transition: left 0.3s ease;
  color: white;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
  padding: 60px 10px 0 30px;
  z-index: 1000;
}
.overlay-menu.active {
  left: 0;
}
.overlay-menu ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.overlay-menu li {
  margin: 20px 0;
  background-color: transparent;
  padding: 10px;
  border-radius: 10px;
  border-bottom: 1.5px solid blue;
}
.overlay-menu li:hover {
  background-color: #7d399c80;
}
.overlay-menu li a {
  font-size: 1.3rem;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.home-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 5rem;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  height: 100vh;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h1 {
  font-size: 16px;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  margin-bottom: -0.5rem;
}

.name {
  font-size: 42px;
  font-weight: bold;
  color: #007bff;
}

.role {
  font-size: 24px;
  margin: 10px 0;
}

.detail a {
  margin: 10px;
  color: #ebeef3;
  font-size: 20px;
  padding: 3px;
  border-radius: 10px;
  background: #007bff;
  transition: 0.5s all linear;
}
.detail a:hover {
  color: #7d399c;
}
.show a {
  margin: 20px 10px 0 0;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.5s all;
}
.show a:hover {
  border: 1px solid black;
  transform: translateY(-5px);
}

.profile-pic img {
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.637);
}
.floating {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.section_about {
  padding: 60px 20px;
}

.con_about {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about_img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about_img:hover {
  transform: scale(1.05);
}

.show_about {
  flex: 1;
  min-width: 280px;
}

.skill {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.skill_me {
  width: 150px;
  background: #fff;
  padding: 15px 10px 10px 0px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.247);
  transition: transform 0.3s;
  cursor: pointer;
}
.skill_me h3 {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}

.skill_me:hover {
  transform: translateY(-5px);
}

.skill_me img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 50%;
}

.show_btn .btn {
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
}
.show_btn .btn:nth-child(2) {
  background-color: transparent;
  border: 1px solid black;
  color: black;
}
.show_btn .btn:hover {
  border: 1px solid black;
}
@media (max-width: 768px) {
  .con_about {
    flex-direction: column;
    text-align: center;
  }

  .home-section {
    flex-direction: column;
    text-align: center;
  }
}

.section_about {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.section_about.visible {
  opacity: 1;
  transform: translateY(0);
}

.section_experience {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin-top: 3rem;
}
.section_experience h4 {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
  color: gray;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.section_experience h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  color: black;
}
.section_experience .about_ex {
  display: flex;
  /* border: 1px solid black; */
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 5rem;
  padding: 30px 0 0 0;
  align-items: center;
  justify-content: center;
}
.section_experience .about_ex .about_Front {
  border: 0.7px solid black;
  padding: 20px 20px 0px 20px;
  border-radius: 10px;
  margin-bottom: 5px;
}
.section_experience .about_ex .about_Front h2 {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.section_experience .about_ex .about_Front .about_skill {
  display: flex;
  flex-direction: row;
  column-gap: 10rem;
  flex-wrap: wrap;
}
.section_experience .about_ex .about_Front .about_skill span {
  display: flex;
  flex-direction: row;
  column-gap: 0.3rem;
}
.section_experience .about_ex .about_Front .about_skill span a {
  text-decoration: none;
}
.section_experience .about_ex .about_Front .about_skill span h2 {
  font-size: 0.8rem;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.section_experience .about_ex .about_Front .about_skill span h2 p {
  font-size: 0.7rem;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
}
.section_project {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin-top: 3rem;
}
.section_project h4 {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
  color: gray;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.section_project h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  color: black;
}
.section_project .about_project {
  /* border: 1px solid black; */
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 2rem;
  align-items: center;
  justify-content: center;
}
.section_project .about_project .card_pro {
  border: 1px solid gray;
  padding: 30px 30px 20px 30px;
  border-radius: 40px;
  box-shadow: 0 0 1px black;
  margin-bottom: 1.5rem;
}

.section_project .about_project .card_pro img {
  width: 250px;
  height: 250px;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  transition: 0.3s all;
}
.section_project .about_project .card_pro img:hover {
  transform: translateY(-7px);
}
.section_project .about_project .card_pro h3 {
  font-size: 1.3rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: black;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.section_project .about_project .card_pro a {
  text-decoration: none;
  padding: 10px 20px 10px 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid gray;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  margin-left: 1rem;
  border-radius: 20px;
  color: black;
  cursor: pointer;
}
.section_project .about_project .card_pro a:hover {
  color: blue;
  border: 1px solid blue;
}
.contact-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.contact-form .btn {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background-color: #005ecb;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #1e90ff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #005ecb;
}
