*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body{
  background: #081b29;
  color: #ededed;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo{
  font-size: 30px;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
}

.navbar a{
  position: relative;
  color: #ededed;
  text-decoration: none;
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active{
  color: #00abf0;
}

.home{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 0 100px;
}

.home-content{
  background: transparent;
  max-width: 700px;
}

.home-content h1{
  font-size: clamp(32px, 4vw, 56px);
  font-family:cursive;
  font-weight: 600;
  white-space: nowrap;
}

.home-content h3{
  font-size: 32px;
  font-weight: 700;
  color: aqua;
}

.home-content p{
  font-size: 16px;
  margin: 20px 0 40px;
  line-height: 1.2;
}

.home-content .btn-box{
  display: flex;
  justify-content: space-between;
  width: 345px;
  height: 50px;
}

.btn-box a{
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: #00abf0;
  border: 2px solid #00abf0;
  border-radius: 8px;
  font-size: 19px;
  color: #081b29;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
  transition: .5s;
}

.btn-box a:nth-child(2){
  background: transparent;
  color: #00abf0;
}

.btn-box a:nth-child(2):hover{
  color: #081b29;
}

.btn-box a:nth-child(2)::before{
  background: #00abf0;
}

.btn-box a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #081b29;
  z-index: -1;
  transition: .5s;
}

.btn-box a:hover{
  color: #00abf0;
}

.btn-box a:hover::before{
  width: 100%;
}

.my-image{
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00abf0;
  box-shadow: 0 0 25px #00abf0;
}

.home-sci{
  position: absolute;
  bottom: 40px;
  left: 100px;
  display: flex;
  gap: 20px;
}

.home-sci a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #00abf0;
  border-radius: 50%;
  font-size: 20px;
  color: #00abf0;
  text-decoration: none;
  transition: 0.5s;
}

.home-sci a:hover{
  background: #00abf0;
  color: #081b29;
  box-shadow: 0 0 25px #00abf0;
}

.about{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px;
  background: #0a2540;
}

.about-img img{
  width: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 25px #00abf0;
}

.about-content{
  max-width: 600px;
  font-size:larger;
}

.about-content .heading{
  font-size: 40px;
  margin-bottom: 10px;
}

.about-content .heading span{
  color: #00abf0;
}

.about-content h3{
  font-size: 24px;
  font-weight: 600;
  color: aqua;
  margin-bottom: 15px;
}

.about-content p{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-info{
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.info-box span{
  font-size: 28px;
  font-weight: 700;
  color: #00abf0;
}

.info-box p{
  font-size: 14px;
  margin-top: 5px;
}

.about-content .btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  background: #00abf0;
  border: 2px solid #00abf0;
  border-radius: 8px;
  color: #081b29;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.5s;
}

.about-content .btn:hover{
  background: transparent;
  color: #00abf0;
}
.services{
  padding: 100px;
  text-align: center;
  background: #081b29;
}

.services .heading{
  font-size: 40px;
  margin-bottom: 50px;
}

.services .heading span{
  color: #00abf0;
}

.services-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-box{
  background: #0a2540;
  padding: 40px 30px;
  border-radius: 12px;
  width: 300px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.service-box:hover{
  border: 2px solid #00abf0;
  box-shadow: 0 0 25px rgba(0, 171, 240, 0.3);
  transform: translateY(-10px);
}

.service-box i{
  font-size: 40px;
  color: #00abf0;
  margin-bottom: 20px;
}

.service-box h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #ededed;
}

.service-box p{
  font-size: 15px;
  line-height: 1.6;
  color: #c5c5c5;
}
.contact{
  padding: 100px;
  text-align: center;
  background: #081b29;
}

.contact .heading{
  font-size: 40px;
  margin-bottom: 20px;
}

.contact .heading span{
  color: #00abf0;
}

.contact-content{
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #c5c5c5;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ededed;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

a.contact-item:hover{
  color: #00abf0;
}

.contact-item i{
  color: #00abf0;
  font-size: 18px;
}

.contact .btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 35px;
  background: #00abf0;
  border: 2px solid #00abf0;
  border-radius: 8px;
  color: #081b29;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.5s;
}

.contact .btn:hover{
  background: transparent;
  color: #00abf0;
}