* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  color: #f5f5f5;
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 20px;

  min-height: 100vh;
}
section {
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 16px;
  padding: 40px 30px;
  transition: box-shadow 0.3s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 95%;
  background: rgba(0, 0, 0, 0.336);
  margin: 20px 2.5%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(106, 106, 106, 0.485);
  padding: 10px 30px;
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
header div {
  display: flex;
  justify-content: space-between;
}
header div ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
header div ul li {
  list-style: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: transform 0.1s;
}
header div ul li:hover {
  transform: translateY(-2px);
}
a {
  text-decoration: none;
  color: #fffdfb;
  font-weight: 500;
  transition: color 0.2s;
}
a:hover {
  color: #fffefa;
  text-shadow: 0 0 8px #ffd70055;
}
header div img {
  width: 40px;
  margin: 10px 20px 10px 0;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.12);
}
#hero {
  margin-top: 60px;
}
.show {
  display: block;
  animation: fadeInDown 2s;
  transition-duration: 3s;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }
}

/* hero --section */

.hero-con {
  width: 100%;
  gap: 20px;
}
.hero-con h1 {
  font-size: xxx-large;
  font-style: normal;
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 30px;
}
.hero-con h2 {
  font-size: x-large;
  font-style: normal;
  font-family: sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 70px;
}
.hero-con p {
  font-size: medium;
  font-family: sans-serif;
  font-weight: 400;
  padding-left: 5px;
  opacity: 0.6;
  margin-bottom: 25px;
}
.featured {
  width: 100%;
}
.card-hold {
  display: flex;
  justify-content: space-around;
}
.card {
  margin: 15px 10px;
  width: 50%;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  height: 35vh;
  background-color: rgba(11, 10, 10, 0.474);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 3s ease;
  box-shadow: 0 0 2px rgb(164, 164, 164);
}
.card:hover {
  border: 1px solid white;
}
.card p {
  font-size: small;
  padding: 0%;
  opacity: 0.5;
  margin-top: 16px;
}
.card-profile-hold {
  position: absolute;
  bottom: 0%;
  display: flex;
  gap: 15px;
}
.card-profile-hold-name h4 {
  padding-top: 10px;
  font-size: medium;
  font-weight: 500;
}
.card-profile-hold-name p {
  padding: 5px 0px;
  margin: 0;
  font-size: x-small;
  opacity: 0.4;
}

/*about section*/
#about {
  padding-top: 120px;
}
.about-con {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.about-con-text {
  width: 50%;
}
.about-con-text h2 {
  font-size: xxx-large;
  font-family: sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-con-text p {
  font-size: small;
  padding: 8px 5px;
  opacity: 0.4;
  transition: opacity 1s;
}
.about-con-text p:hover {
  opacity: 1;
  font-weight: 400;
}
.about-con img {
  border-radius: 10px;
  border: 2px solid white;
  opacity: 0.7;
  box-shadow: 5px 2px 5px white;
  transition: opacity 2s;
}
.about-con img:hover {
  opacity: 1;
}

/*service section*/
#service {
  padding-top: 120px;
  text-align: center;
}
.service-con {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-con p {
  font-size: small;
  opacity: 0.6;
  text-align: center;
  padding-bottom: 12px;
}
.service-con-text {
  width: 75%;
  margin: 0 auto;
  gap: 10px;
}
.service-con-text h3 {
  font-size: xx-large;
  padding-bottom: 10px;
  font-weight: 700;
  font-family: sans-serif;
}
.service-con-text p {
  font-size: 14px;
  font-family: sans-serif;
  opacity: 0.7;
  font-weight: 500;
  transition: opacity 1s;
}
.service-con-text p:hover {
  opacity: 1;
}
.service-con-card {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 20px;
}
.service-card {
  width: 22%;
  background: #0d0d0d8b;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border: 1px solid rgb(102, 102, 102);
  margin: 10px;
  border-radius: 10px;
  padding: 10px 15px;
}
.service-card h3 {
  font-size: large;
}
.service-card:hover {
  border: 1px solid white;
  background: #161616;
}
.service-card button {
  background-color: #0d0d0d8b;
  border: none;
  color: white;
  border-radius: 6px;
  box-shadow: 0px 0px 1px rgba(255, 255, 255, 0.871), inset 0px 0px 1px white;
  padding: 10px 20px;
  width: 100%;
  cursor: pointer;
}

/*pricing section*/
.pricing {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding: auto;
  margin-top: 100px;
}
.pricing h1 {
  font-size: 1.6rem;
  font-family: sans-serif;
  font-weight: 800;
  margin-bottom: 25px;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}
.pricing-card ul {
  /* list-style: none; */
  padding-left: 20px;
  padding-top: 20px;
}
.pricing-card ul li {
  font-size: 12px;
  padding-bottom: 10px;
  font-family: sans-serif;
  font-weight: 400;
  opacity: 0.7;
  gap: 10px;
}
.pricing-card ul li strong {
  font-size: 14px;
  opacity: 1;
  color: white;
}
.pricing-card {
  width: 30%;
  height: 300px;
  background-color: #000000;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.385);
  overflow: hidden;
  margin: 10px;
  border-radius: 10px;
  transition: border-color 1s;
}
.pricing-card:hover {
  border-color: white;
  background: #161616;
}
.pricing-card h2 {
  font-size: 1.7rem;
  font-family: sans-serif;
  font-weight: 600;
  padding-bottom: 10px;
}
.pricing-card p {
  font-size: small;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* contact section*/
#contactUs {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contactUs h1 {
  font-size: 1.9rem;
  font-weight: 600;
  font-family: sans-serif;
  margin-bottom: 24px;
}
#contactUs p {
  font-size: small;
  width: 75%;
  text-align: center;
  margin-bottom: 10px;
}
.contact-hold {
  display: flex;
  padding: 20px;
  width: 100%;
  justify-content: space-evenly;
}
.contact-hold-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.contact-hold-text h3 {
  font-size: small;
  font-family: sans-serif;
  font-weight: 600;
  opacity: 0.8;
}
.contact-hold-form {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.contact-hold-form h2 {
  font-size: small;
  padding-bottom: 20px;
}
.contact-hold-form input[type="text"] {
  width: 60%;
  height: 30px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgb(65, 64, 64);
  outline: none;
  margin-bottom: 8px;
  background: #000;
  color: white;
}
.contact-hold-form input[type="email"] {
  width: 60%;
  height: 30px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgb(65, 64, 64);
  outline: none;
  margin-bottom: 8px;
  background: #000;
  color: white;
}
.contact-hold-form textarea {
  width: 60%;
  background: #000;
  border-radius: 6px;
  border: 1px solid rgb(65, 64, 64);
  height: 50px;
  padding: 10px;
  outline: none;
  color: white;
}
.contact-hold-form button{
    width: 60%;
      background-color: #0d0d0d8b;
  border: none;
  color: white;
  border-radius: 6px;
  box-shadow: 0px 0px 1px rgba(255, 255, 255, 0.871), inset 0px 0px 1px white;
  padding: 10px 20px;
  margin-top:10px ;
  cursor: pointer;
}
.contact-hold-form button:hover{
    background-color: #202020;
    color: #f4f4f485;
}

/*footer*/
footer p{
    font-size: small;
    opacity: 0.24
}
@media (width <600px) {
  body {
    padding: 2px;
  }
  section {
    padding: 40px 20px;
  }
  .card-hold {
    flex-direction: column;
  }
  header img{
    width: 30px;
  }
  header li a{
    font-size: 8px;
  }
  .card {
    width: 100%;
    padding: 20px;
    margin: 15px 0px;
  }
  #about {
    padding-top: 130px;
  }
  .about-con img {
    display: none;
  }
  .about-con-text {
    width: 100%;
  }
  .service-card {
    width: 40%;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 60%;
  }
  .pricing{
    text-align: center;
  }
  .contact-hold-form input[type="text"] {
    width: 100%;
  }
  .contact-hold-form input[type="email"] {
    width: 100%;
  }
  .contact-hold-form textarea {
    width: 100%;
  }
  .contact-hold-form button{
    width: 100%;
}
}
@media (800px > width > 600px) {
  .about-con-text {
    width: 70%;
  }
  .service-card {
    width: 40%;
    height: 30vh;
  }
  .pricing-card {
    width: 40%;
  }
  .contact-hold-form input[type="text"] {
    width: 100%;
  }
  .contact-hold-form input[type="email"] {
    width: 100%;
  }
  .contact-hold-form textarea {
    width: 100%;
  }
  .contact-hold-form button{
    width: 100%;
}
}
