*{
    box-sizing: border-box;
  }
  
  html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Dm Sans';
    background-color: rgb(36 36 36);
  }

  #cursor{
    height: 40px;
    width: 40px;
    background-color: #efad08;
    border-radius: 50%;
    position: absolute;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    display: none;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: .5;
    }
  }

  div:hover ~  #cursor{
    transform: scale(0.5);
  }
  
  p {
    font-family: 'Dm Sans';
    font-size: 16px;
    color: #fff;
    margin: 0 0 15px;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
  
  a {
    color:#fff;
    text-decoration: none;
  
  }
  
  .section-gapping {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  
  .container {
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    max-width: 1320px;
  }

  .work-container {
    max-width: 1580px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
  
  h1, h2, h3, h4, h5, h6{
    margin: 0 0 15px;
  }
  
  .main-title {
    font-size: 34px;
    font-weight: 700;
    color: #324542;
  }

  
  /*******************************************/

  
/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent; 
  border-radius: 10px;
  background-color: rgba(156,163,175,.2);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #FFB800; 
  border-radius: 10px;
}

.code{
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  height: 100vh;
  scroll-behavior: smooth;
}

.snap-start{
  scroll-snap-align:start;
}

.snap-center{
  scroll-snap-align: center;
}


#home{
  margin-top: 50px;
  height: 100vh;
}

.logo ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.head-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.head-detail img {
  max-width: 25px;
}

.top-nav a{
  font-size: 20px;
}

.top-nav a:hover {
    color: #FFB800;
}

.top-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  position: relative;
  z-index: 2;
}

.bg-circle {
  display: flex;
  justify-content: center;
}

.outer-circle{
  height: 650px;
  width: 650px;
  background-color: transparent;
  border: 1px solid #FFB800;
  border-radius: 100%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  display: flex;
  justify-content: center;
  position: absolute;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.inner-circle {
  height: 500px;
  width: 500px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  margin-top: 80px;
  animation: spin 1s linear infinite;
}

.circle {
  height: 300px;
  width: 300px;
  background-color: transparent;
  border: 1px solid #FFB800;
  border-radius: 100%;
  position: absolute;
  margin-top: 180px;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-ping {
  height: 200px;
  width: 200px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  margin-top: 230px;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}


@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.banner-image img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 100%;
}

.banner-image h3 {
  color: #FFB800;
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
}

.banner-text h2 {
  font-size: 72px;
  font-weight: 700;
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 230px;
}

.banner-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#about{
height: 100vh;
}

.about-image img {
  width: 400px;
  max-height: 500px;
}

.about-text h3::after {
  border-top: 3px solid #FFB800;
  content: "";
  height: 3px;
  width: 50px;
  display: inline-flex;
  margin-left: 20px;
}

.about-text h3{
  font-size: 24px;
  color: #fff;
}

.about-text h2{
  font-size: 36px;
  font-weight: 700;
  color: #FFB800;
}

.about-text p {
  max-width: 535px;
  line-height: 28px;
  font-size: 20px;
  margin-bottom: 60px;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
  margin-top: 85px;
}



#projects{
  height: 100vh;
}



.pro::before {
  content: "";
  width: 100%;
  height: 400px;
  position: absolute;
  background-color: rgb(255 184 0 / 20%);
  top: 37%;
  z-index: -1;
}


.project-text h2::after {
  border-top: 3px solid #FFB800;
  content: "";
  height: 3px;
  width: 70px;
  display: inline-flex;
  margin-left: 20px;
}

.project-text h2::before {
  border-top: 3px solid #FFB800;
  content: "";
  height: 3px;
  width: 70px;
  display: inline-flex;
  margin-right: 20px;
}

.about-text li {
  color: #fff;
  font-size: 20px;
  line-height: 35px;
}

.about-text ul li::before {
  content: "\2022";
  color: #FFB800;
  font-weight: bold;
  display: inline-block; 
  width: 20px;
  margin-left: -1em;
}

.project-text h2 {
  color: #fff;
  font-size: 42px;
  text-align: center;
}

.project-image img{
  width: 750px;
  height: 270px;
  transition: 0.3s all;
}

.project-image:hover img{
  transform: scale(1.1);
}

.project-detail p{
  max-width: 750px;
  font-size: 18px;
  color: #fff;
  line-height: 25px;
}

.project-detail h2{
  font-size: 52px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}

.pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  justify-content: center;
 scroll-snap-align: center;
 margin-top: 75px;
}

.scroll {
  overflow-x: scroll;
  display: flex;
  overflow-y: hidden;
  position: relative;
  width: 100%;
  scroll-snap-type: x mandatory;
}








#expirence{
  height: 100vh;
}

.exp-detail {
  display: flex;
  align-items: center;
  gap: 30px;
  scroll-snap-type: x mandatory;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  margin-left: 50px;
  position: relative;
  z-index: 2;
}

.exp h2{
  font-size: 36px;
  color: #fff;
  margin-top: 30px;
  text-align: center;
}

.exp li{
  font-size: 20px;
  line-height: 45px;
  color: #fff;
 list-style-type: circle;
 font-weight: 700;
}

.exp {
  background-color: rgb(41 41 41);
  padding: 80px;
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 30vw;
  height: 40vw;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: -1;
}

.exp:hover{
  opacity: 1;
}

.exp-image img {
  width: 120px;
  height: 120px;
}

#contact{
  height: 100vh;
  margin-top: 100px;
}

.contact-detail ul{
  margin-top: 80px;
}

.contact-detail li{
  color: rgb(255 255 255 / 60%);
  font-size: 18px;
  text-align: center;
  line-height: 25px;
}

.contact-detail li:hover{
  color: #fff;
}

.contactinput{
  font-size: 24px;
  background-color: rgba(148,163,184,.1);
  border: none;
  padding: 15px 165px 15px 25px;
  margin-top: 15px;
  outline: 2px solid transparent;
  color: #fff;
}

.contactinput:hover{
  border-bottom: 1px solid #FFB800;
}

form{
  text-align: center;
  margin-top: 10px;
}

button.btn {
  color: #000;
  font-size: 20px;
  padding: 20px 217px;
  background-color: #FFB800;
  border: none;
  margin-top: 15px;
  font-weight: 700;
  -webkit-animation: glowing 1300ms infinite;
  -moz-animation: glowing 1300ms infinite;
  -o-animation: glowing 1300ms infinite;
  animation: glowing 1300ms infinite;
}

@keyframes glowing {
  0% {
    background-color: #efad08;
    box-shadow: 0 0 3px #efad08;
  }
  50% {
    background-color: #FFB800;
    box-shadow: 0 0 20px #FFB800;
  }
  100% {
    background-color: #efad08;
    box-shadow: 0 0 3px #efad08;
  }
}

.btn:hover{
animation-play-state: paused;
}





