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

body{
  font-family:Arial, sans-serif;
  background:#050505;
  color:white;
  line-height:1.6;
}

.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
    url('featured-home.jpeg')
    center/cover no-repeat;
  padding:20px 8%;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  background:rgba(0,0,0,.88);
  padding:18px 28px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 25px rgba(0,0,0,.35);
  position:sticky;
  top:15px;
  z-index:1000;
}

.brand img{
  width:180px;
}

nav ul{
  list-style:none;
  display:flex;
  gap:24px;
}

nav a{
  text-decoration:none;
  color:#b8fff0;
  font-weight:bold;
  transition:.3s;
}

nav a:hover{
  color:#1db7ff;
}

.hero-content{
  max-width:700px;
  margin-top:120px;
}

.hero-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content p{
  font-size:1.15rem;
  color:#d6fef4;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  background:linear-gradient(90deg,#0b5bd3,#23c6ff);
  color:white;
  padding:16px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 0 20px rgba(35,198,255,.4);
}

.section{
  padding:90px 8%;
}

.section h2{
  text-align:center;
  font-size:2.5rem;
  margin-bottom:50px;
  color:#23c6ff;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.card{
  background:#101820;
  border:1px solid rgba(35,198,255,.25);
  padding:30px;
  border-radius:18px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(35,198,255,.25);
}

.card h3{
  margin-bottom:12px;
  color:#b8fff0;
}

.dark{
  background:linear-gradient(180deg,#07111b,#0d2233);
  text-align:center;
}

.contact-form{
  max-width:650px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form input,
.contact-form textarea{
  padding:16px;
  border:none;
  border-radius:10px;
  background:#111;
  color:white;
}

.contact-form textarea{
  min-height:160px;
}

.contact-form button{
  background:linear-gradient(90deg,#0b5bd3,#23c6ff);
  border:none;
  color:white;
  padding:16px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

.contact-info{
  text-align:center;
  margin-top:30px;
  color:#b8fff0;
}

footer{
  background:#020202;
  text-align:center;
  padding:24px;
  border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){

  nav{
    flex-direction:column;
    gap:20px;
  }

  .hero-content{
    margin-top:70px;
  }

  .hero-content h1{
    font-size:2.7rem;
  }

  nav ul{
    gap:16px;
  }
}


.contact-form select{
  padding:16px;
  border:none;
  border-radius:10px;
  background:#111;
  color:white;
  font-size:1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:2px solid #23c6ff;
}


.services-group{
  background:#111;
  padding:20px;
  border-radius:10px;
}

.services-group label{
  color:#b8fff0;
  font-weight:bold;
}

.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:15px;
}

.checkbox-grid label{
  background:#0d2233;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(35,198,255,.25);
  font-weight:normal;
  cursor:pointer;
}

.checkbox-grid input{
  margin-right:8px;
}


.showcase{
  background:#07111b;
}

.showcase-container{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.showcase-container img{
  width:100%;
  border-radius:18px;
  box-shadow:0 0 30px rgba(35,198,255,.2);
}

.showcase-text h3{
  font-size:2rem;
  margin-bottom:20px;
  color:#b8fff0;
}

.showcase-text p{
  margin-bottom:30px;
  color:#d8f7ff;
  font-size:1.05rem;
}

@media(max-width:900px){

  .showcase-container{
    grid-template-columns:1fr;
  }

  .showcase-text{
    text-align:center;
  }
}


.card img{
  width:100%;
  border-radius:14px;
  margin-bottom:18px;
  height:260px;
  object-fit:cover;
}

.card{
  overflow:hidden;
}


.reviews {
  background: #050505;
  padding: 100px 20px;
}

.reviews h2 {
  text-align: center;
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
}

.reviews-subtitle {
  text-align: center;
  color: #bdbdbd;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: #101010;
  border: 1px solid rgba(32, 196, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: #20c4ff;
}

.stars {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 20px;
}

.review-card p {
  color: #e5e5e5;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-card h4 {
  color: #20c4ff;
  font-size: 18px;
}

.reviews-btn-wrap {
  text-align: center;
  margin-top: 50px;
}
