* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0057b8;
}

.logo span {
  color: orange;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0057b8, #00c853, #ff6d00);
  color: white;
  text-align: center;
}

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

.hero p {
  margin: 15px 0;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: white;
  color: #0057b8;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.services {
  padding: 60px 50px;
  text-align: center;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.about, .contact {
  padding: 60px 50px;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 10px;
}

.contact button {
  background: linear-gradient(135deg, #0057b8, #00c853);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}