* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

/* Navbar */
header {
  background: #333;
  color: white;
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: white;
  color: #007bff;
  cursor: pointer;
}

/* Sections */
section {
  padding: 50px;
  text-align: center;
}

/* Services */
.service-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #f4f4f4;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}

.contact input, 
.contact textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 10px;
}