@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #081b29;
  color: #ededed;
}

.header {
  position: fixed;
  background: #081b29;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0px 5px 20px 0px black;
}

.logo {
  position: relative;
  font-size: 25px;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
}


.navbar a {
  font-size: 18px;
  color: #ededed;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: .3s;
}

.navbar a:hover,
.navbar a.active{
  color: #00abf0;  
}

.home {
  height: 100vh;
  background: url('home.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.home-content {
  max-width: 600px;
}

.home-content h1 {
  position: relative;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.home-content h3 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #00abf0;
}


.home-content p {
  position: relative;
  font-size: 16px;
  margin: 20px 0 40px;
}

.home-content .btn-box {
  position: relative;
  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:hover {
  color: #00abf0;
}

.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::before {
  width: 100%;
}

.home-sci {
  position: absolute;
  bottom: 40px;
  width: 170px;
  display: flex;
  justify-content: space-between;
}

.home-sci a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #00abf0;
  border-radius: 50%;
  font-size: 20px;
  color: #00abf0;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
}

.home-sci a:hover{
  color: #081b29 ;
}

.home-sci a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #00abf0;
  z-index: -1;
  transition: .5s;
}

.home-sci a:hover::before {
  width: 100%;

}


.home-imgHover {
  position: absolute;
  right: 10%;
  bottom: 70px;
  width: 35px;
  height: 35px;
  border-left: 8px solid #00abf0;
  border-bottom: 8px solid #00abf0;
  animation: imgHover 1.5s linear infinite;
}

@keyframes imgHover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-25px);
  }
}

.about {
  padding: 60px 10%;
  background: #f4f4f4;
  color: #333;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
}

.services {
  padding: 60px 10%;
  background: #ededed;
  color: #333;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-box {
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 24px;
}

.service-box p {
  font-size: 18px;
}

.portfolio {
  padding: 60px 10%;
  background: #081b29;
  color: #ededed;
}

.portfolio h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.portfolio-item {
  margin-bottom: 20px;
}

.portfolio-item h3 {
  font-size: 24px;
}

.portfolio-item p {
  font-size: 18px;
}

.portfolio-item a {
  color: #00abf0;
  text-decoration: none;
  font-weight: 500;
}

.contact {
  padding: 60px 10%;
  background: #f4f4f4;
  color: #333;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact label {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact input,
.contact textarea {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  padding: 10px 20px;
  font-size: 18px;
  background: #00abf0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact button:hover {
  background: #008ecc;
}


.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00abf0;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: #008ecc;
}

