*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'syne', sans-serif;
}

a{
  text-decoration: none;
}
body{
  background: url("images/background") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
nav{
  position: fixed;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 999;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
  background-color: #ffffff22;
}
nav.sticky{
  background: #4070f4;
  padding: 13px 0;
}
nav .navbar{
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
nav .navbar .logo a{
  font-weight: 500;
  font-size: 35px;
  color: #4070f4;
}
nav.sticky .navbar .logo a{
  color: #fff;
}
nav .navbar .menu{
  display: flex;
  position: relative;
}
nav .navbar .menu li{
  list-style: none;
  margin: 0 8px;
}
.navbar .menu a{
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  padding: 6px 0;
  transition: all 0.4s ease;
}
.navbar .menu a:hover{
  color: #4070f4;
  transition: all 0.4s ease;
}
nav .menu-btn,
.navbar .menu .cancel-btn{
  position: absolute;
  color: #000000;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
nav .menu-btn{
  color: #4070f4;
}
nav.sticky .menu-btn{
  color: #FFF;
}
.navbar .menu .menu-btn{
  color: #fff;
}
.home{
  height: 100vh;
  width: 100%;
}
.home .home-content{
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .text-one{
  font-size: 36px;
  color: #0E2431;
}
.home .text-two{
  color: #0E2431;
  font-size: 86px;
  font-weight: 600;
  margin-left: -3px;
}
.home .text-three{
  font-size: 50px;
  margin: 5px 0;
  color: #4070f4;
}
.home .button{
  margin: 14px 0;
}
.home .button button{
  outline: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 400;
  background: none;
  color: #4070f4;
  cursor: pointer;
  border: 2px solid #4070f4;
  transition: all 0.4s ease;
}
.home .button button:hover{
  border-color: #4070f4;
  background-color: #4070f4;
  color: #fff;
}
section{
  padding-top: 40px;
}
section .content{
  width: 80%;
  margin: 40px auto;
}
.about .about-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .title{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
section .title span{
  color: #0E2431;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding-bottom: 8px;
}
.about .about-details .left{
  width: 45%;
}
.about .left img{
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.about-details .right{
  width: 55%;
}
.about-details .right p{
  font-size: 20px;
  text-align: justify;
  color: #0E2431;
}
section .button{
  margin: 16px 0;
}
section .button button{
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  background: #4070f4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
section .button button:hover{
  border-color: #4070f4;
  background-color: transparent;
  color: #4070f4;
}
.about-details .right h2{
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.skills-section {
  margin-top: 30px;
  backdrop-filter: blur(10px);
  background-color: #ffffff49;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.skill-box {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  justify-content: center;
}
.project-card {
  backdrop-filter: blur(10px);
  background-color: #ffffff49;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease-in-out;
}
.project-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff5d;
  transition: transform 0.3s ease-in-out;
}
.project-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
}
.project-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.project-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.project-card a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}
#connect{
  width: 100%;
  min-height: 50vh;
  padding-bottom: 0px;
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;

  display: flex;
  justify-content: center;
 align-items: center;
}
.connect h3{
  font-size: 60px;
}
.c-t p{
  font-size: 20px;
  padding: 0.5rem 0;
  color: #3c3c3c;
  text-align: center;
}
.c-btn{
  margin-top: 10px;
  padding: 0.8rem 2.5rem;
  font-size: 16px;
  border: 1px solid #4070f4;
  color: #4070f4;
  border-radius: 5px;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.c-btn:hover{
  background-color: #4070f4;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
#contact{
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(10px);
  background-color: #ffffff21;
  gap: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.heading{
  text-align: center;
  width: 100%;
  padding: 1rem;
  font-size: 40px;
}
.contact-cont{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-box a{
  width: 250px;
  height: 70px;
  border: 1px solid #4070f4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  font-size: 22px;
  transition: all 0.5s ease-in-out;
}
.contact-box a:hover{
  background-color: #4070f4;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.contact-b-c {
  font-size: 22px;
  padding: 0 1rem;
}
.contact-b-c i{
  padding: 0 0.5rem;
}
.contact-nav{
  text-align: center;
  width: 100%;
  padding-bottom: 2rem;
}
.contact-nav ul{
  display: flex;
  justify-content: center;
  flex-direction: row;
  font-size: 20px;
}
.contact-nav ul li{
  padding: 0 1rem;
  margin-bottom: 0;
}
.contact-box a,i{
  text-decoration: none;
  color: #4070f4;
}
.contact-nav a{
  text-decoration: none;
  color: #4070f4;
}
@media(max-width:425px){

  #connect{
      font-size: 34px;
  }
  .contact-b-c{
      font-size: 18px;
  }
  .heading{
      font-size: 32px;
  }

}
@media (max-width: 1190px) {
  section .content{
    width: 85%;
  }
}
@media (max-width: 1000px) {
  .about .about-details{
    justify-content: center;
    flex-direction: column;
  }
  .about .about-details .left{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-details .right{
    width: 90%;
    margin: 40px 0;
  }

}
@media (max-width: 900px) {
  .about .left img{
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 750px) {
  nav .navbar{
    width: 90%;
  }
  nav .navbar .menu{
    position: fixed;
    left: -100%;
    top: 0;
    background: #ffffff;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }
  .navbar.active .menu{
    left: 0;
  }
  nav .navbar .menu a{
    font-size: 23px;
    display: block;
    color: #000000;
    margin: 10px 0;
  }
  nav.sticky .menu a:hover{
    color: #4070f4;
  }
  nav .navbar .media-icons{
    display: none;
  }
  nav .menu-btn,
  .navbar .menu .cancel-btn{
    display: block;
  }
  .home .text-two{
    font-size: 65px;
  }
  .home .text-three{
    font-size: 35px;
  }
}
@media (max-width: 500px){
  .home .text-two{
    font-size: 55px;
  }
  .home .text-three{
    font-size: 33px;
  }
}
@media (max-width: 420px) {
  .project-container {
      grid-template-columns: 1fr;
  }
}
@media(max-width:425px){
  #connect{
      font-size: 34px;
  }
}
@media(max-width:760px){
  .connect .c-t h3{
      font-size: 40px;
  }
}
@media(max-width:425px){
  .connect .c-t h3{
      font-size: 32px;
  }
}