@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Google Sans", sans-serif;
}

body {
  background: #0b1220;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.6);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

nav a {
  margin-left: 30px;
  color: #ccc;
}

nav a.active {
  color: #4f6cff;
  border-bottom: 2px solid #4f6cff;
  padding-bottom: 5px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(to right, #0b1220, rgba(11, 18, 32, 0.4)),
    url('house_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  color: #bbb;
  margin-bottom: 25px;
}

.btn {
  background: #4f6cff;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
}

/* SERVICES */
.section {
  padding: 60px;
  text-align: center;
}

.section h2 {
  margin-bottom: 10px;
}

.section p {
  color: #aaa;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  align-items: center;
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
  gap: 20px;
}

.service-card img {
  width: 250px;
  border-radius: 10px;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.trust div {
  max-width: 200px;
}

.trust h2 {
  color: green;
  text-align: center;
}

.trust h4 {
  margin: 10px 0;
  text-align: center;
}

.trust p {
  color: #aaa;
  font-size: 14px;
  text-align: center;
}

/* ABOUT */
.about {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-text {
  max-width: 400px;
  text-align: left;
}

.about img {
  width: 350px;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: #050a14;
  padding: 40px 60px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer div {
  margin-bottom: 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer p {
  color: #aaa;
  font-size: 14px;
}

/* VALUES */

.values{
  text-align:center;
  padding:60px 40px;
}

.values h2{
  margin-bottom:10px;
}

.values p{
  color:#aaa;
  margin-bottom:40px;
}

.value-grid{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

.value{
  max-width:200px;
}

.value h4{
  margin-bottom:10px;
}

/* TESTIMONY */ 
.testimony{
  display: flex;
}
.testimony p {
  font-size: 30px;
}
.testimony h4 {
  font-size: 40px;
}

/* LAYOUT */
.container{
  display:flex;
  gap:40px;
  padding:60px;
}

/* LEFT FORM */
.form-box{
  flex:2;
  background:#0a0f2a;
  padding:30px;
  border-radius:12px;
}

.form-box input, .form-box textarea .form-box button{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:8px;
  border:none;
  background:#111633;
  color:white;
}

/* CLEANER COUNTER */
.counter{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin:20px 0;
}

.counter button{
  padding:10px 15px;
  background:#6c79ff;
  border:none;
  color:white;
  border-radius:6px;
  cursor:pointer;
}

/* RIGHT SUMMARY */
.summary{
  flex:1;
  background:#0a0f2a;
  padding:30px;
  border-radius:12px;
}

.paybutton{
  width:100%;
  padding:15px;
  margin-top:20px;
  background:#6c79ff;
  border:none;
  border-radius:8px;
  color:white;
  font-size:16px;
  cursor:pointer;
}