* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  background-color: #000;
}

.main {
  width: 100%;
  min-height: 100vh;
  background: 
    linear-gradient(to top, rgba(0, 0, 30, 0.8) 40%, rgba(0, 0, 60, 0.6) 100%),
    url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1600&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}


.navbar {
  width: 90%;
  max-width: 1200px;
  height: 75px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon .logo {
  color: blue;
  font-size: 32px;
  font-weight: bold;
}

.menu ul {
  display: flex;
  gap: 30px;
}

.menu ul li {
  list-style: none;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: blue;
}

.search {
  display: flex;
  align-items: center;
}

.srch {
  width: 180px;
  height: 35px;
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding-left: 10px;
  border-radius: 5px 0 0 5px;
}

.btn {
  background: blue;
  color: white;
  border: none;
  height: 35px;
  width: 80px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.content {
  text-align: left;
  padding: 100px 5%;
}

.content h1 {
  font-size: 50px;
}

.content .par {
  font-size: 18px;
  margin: 20px 0;
}

.cn {
  display: inline-block;
  padding: 12px 30px;
  background: blue;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cn:hover {
  background: #0044ff;
}

.form {
  background: rgba(0, 0, 0, 0.7);
  padding: 25px;
  border-radius: 10px;
  width: 280px;
  margin-top: 40px;
}

.form h2 {
  text-align: center;
  background: white;
  color: blue;
  padding: 8px;
  border-radius: 8px;
}

.form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid blue;
  color: white;
  margin-top: 20px;
  font-size: 15px;
  padding: 8px 0;
}

.btnn {
  width: 100%;
  height: 40px;
  background: blue;
  color: white;
  border: none;
  margin-top: 25px;
  border-radius: 8px;
  cursor: pointer;
}

.page-content {
  text-align: center;
  padding: 100px 5%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  transition: 0.3s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  max-width: 400px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.contact-form textarea {
  resize: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 14px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .content {
    padding: 60px 5%;
    text-align: center;
  }

  .form {
    margin: 40px auto 0;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }
}
