/* =========================
FILE: style.css
========================= */

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

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

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:#111827;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:24px;
  font-weight:bold;
  color:#3b82f6;
}

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

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover,
.active{
  color:#3b82f6;
}

.hero{
  padding:120px 0;
  text-align:center;
  background:linear-gradient(to right,#0f172a,#1e293b);
}

.hero h1{
  font-size:56px;
  margin-bottom:20px;
}

.hero p{
  max-width:700px;
  margin:auto;
  color:#cbd5e1;
  font-size:20px;
}

.hero-buttons{
  margin-top:30px;
}

.btn,
.btn-outline,
.small-btn{
  display:inline-block;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}

.btn{
  background:#3b82f6;
  color:white;
}

.btn:hover{
  background:#2563eb;
}

.btn-outline{
  border:2px solid #3b82f6;
  color:white;
  margin-left:10px;
}

.small-btn{
  background:#1e293b;
  color:white;
  margin-top:15px;
}

.page-header{
  padding:80px 0;
  text-align:center;
}

.page-header h1{
  font-size:48px;
  margin-bottom:10px;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.services,
.features,
.pricing-section,
.contact-section{
  padding:80px 0;
}

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

.card,
.price-card,
.contact-box{
  background:#111827;
  padding:30px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
}

.card h3,
.price-card h3{
  margin-bottom:15px;
  color:#3b82f6;
}

.price{
  font-size:36px;
  margin:20px 0;
  font-weight:bold;
}

.price-card ul{
  list-style:none;
  margin-bottom:20px;
}

.price-card li{
  margin:10px 0;
}

.featured{
  border:2px solid #3b82f6;
}

.contact-box{
  max-width:700px;
  margin:auto;
}

form{
  margin-top:30px;
}

form input,
form textarea{
  width:100%;
  padding:15px;
  margin-bottom:15px;
  border:none;
  border-radius:8px;
  background:#1e293b;
  color:white;
}

form textarea{
  min-height:150px;
}

footer{
  background:#020617;
  padding:30px 0;
  text-align:center;
  margin-top:50px;
  color:#94a3b8;
}

@media(max-width:768px){

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

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:40px;
  }

}