* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #081b29;
  color: #ededed;
}

.header {
  background-color: #081b29;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  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: 40px;
  transition: .3s;
}

.navbar a:hover {
  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 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #00abf0;
}

.home-content p {
  font-size: 20px;
  margin: 20px 0 20px;
}

.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:hover {
  color: #00abf0;
}

.btn-box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #081b29;
  z-index: -1;
  transition: .5s;
}

.btn-box a:hover::before {
  width: 100%;
}

.img {
  position: absolute;
  top: 0;
  right: 30px;
  width: 600px;
  height: 100%;
  background: transparent;
  transition: 3s;
}

.img:hover {
  background-color: #081b29;
  opacity: .8;
}

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.heading {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
  color: #00abf0;
}

.about-img {
  padding-top: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

img {
  width: 15rem;
  height: 15rem;
  border: 3px solid white;
  border-radius: 50%;
}

#Projects {
  display: flex;
  justify-content: space-evenly;
  padding-top: 100px;
  padding-right: 20px;
  height: 100vh;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.box-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.card {
  width: 700px;
  height: 400px;
  background-color: #081b29;
  border-radius: 5px;
}

.card p {
  color: white;
  font-size: 26px;
  font-weight: 700;
  padding-top: 20px;
}

.image-1 {
  height: 90%;
  background-image: url('Screenshot_29-8-2025_15200_127.0.0.1.jpeg');
  background-size: cover;
}

.image-2 {
  height: 90%;
  background-image: url('Screenshot_1-9-2025_145531_.jpeg');
  background-size: cover;
}

.about {
  margin: 20px 0 40px;
  padding-left: 83.5px;
  padding-right: 83.5px;
  font-size: 24px;
  font-weight: 600;
}

#Contact {
  background: #081b29;
  height: 100vh;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 60vh;
}

#Contact h1 {
  color: #00abf0;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

#Contact form {
  background: #081b29;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 171, 240, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.Input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #0a2236;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

.Input-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #ededed;
  font-size: 1rem;
  width: 100%;
  padding: 8px 0;
}

.Input-box i {
  color: #00abf0;
  margin-left: 10px;
  font-size: 1.2rem;
}

.btn {
  background: #00abf0;
  color: #081b29;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #008bb8;
}