html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f8;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

header {
  background: #0a0a23;
  color: #fff;
  padding: 20px 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ccff;
}

.hero {
  background: linear-gradient(135deg, #0a0a23, #004080);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

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

.cta-button {
  background: #00ccff;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #0099cc;
}

.about, .services, .contact {
  background: #fff;
  margin-top: 40px;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0a0a23;
}

.service-list {
  list-style: disc inside;
  padding-left: 20px;
}

.contact-email {
  display: inline-block;
  margin-top: 10px;
  color: #004080;
  font-weight: bold;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

footer {
  background: #0a0a23;
  color: #bbb;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}
