* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background:#f8fafc;
  color:#1e293b;
}

/* NAVBAR */
header {
  position:sticky;
  top:0;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 60px;
  height:80px;

  background:white;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

nav a {
  margin-left:25px;
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
}

nav a:hover {
  color:#c9a227;
}

/* LOGO */
.logo img {
  height:120px;
}

/* HERO */
.hero {
  height:90vh;
  display:flex;
  align-items:center;
  padding:0 60px;

  background:#0b132b;
  color:white;
}

.hero h1 {
  font-size:48px;
}

.hero p {
  margin-top:10px;
  color:#cbd5f5;
}

.hero button {
  margin-top:20px;
  padding:12px 25px;
  background:#c9a227;
  border:none;
  color:white;
  border-radius:5px;
  cursor:pointer;
}

/* SERVICES */
.services {
  padding:80px 60px;
  text-align:center;
}

.cards {
  display:flex;
  gap:25px;
  margin-top:40px;
}

.card {
  flex:1;
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover {
  transform:translateY(-8px);
}

/* ABOUT */
.about {
  padding:80px 60px;
  text-align:center;
  background:#f1f5f9;
}

.about-contact {
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:40px;
}

.contact-item {
  display:flex;
  align-items:center;
  gap:10px;
  background:white;
  padding:12px 20px;
  border-radius:8px;
}

/* CONTACT */
.contact {
  padding:80px 60px;
  text-align:center;
}

.contact input,
.contact textarea {
  display:block;
  width:50%;
  margin:12px auto;
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
}

.contact button {
  padding:12px 25px;
  background:#0b132b;
  color:white;
  border:none;
  border-radius:5px;
  cursor:pointer;
}

/* FOOTER */
footer {
  text-align:center;
  padding:20px;
  background:#0b132b;
  color:white;
}
