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



body,html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('https://flagcdn.com/w320/kh.png') no-repeat center center fixed;
  height: 100vh;
  color: white;
}

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

/* Header */
header {
  background-color: #000000;
  color: white;
  padding: 1em 0;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
}

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

/* Hero */
.hero {
  background-color: #e9f0ff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  background-color: #0d6efd;
  color: white;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 60px 0;
}

.about, .services, .contact {
  background-color: white;
}

.services .service-box {
  background-color: #f1f1f1;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #0b5ed7;
}

/* Footer */
footer {
  background-color: #343a40;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

