/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: #f8f9fc;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 0;
}

/* Navbar */
.navbar {
  background: #0a1128;
  padding: 1rem 0;
  color: #fff;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f9b233;
}

/* Hero Section */
.hero {
  background: #fff;
  text-align: center;
  padding: 7rem 2rem 25rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .highlight {
  color: #f9b233;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #666;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn.primary {
  background: #f9b233;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn.primary:hover {
  background: #e0a220;
}

.btn.secondary {
  border: 2px solid #f9b233;
  color: #f9b233;
}

.btn.secondary:hover {
  background: #f9b233;
  color: #fff;
}

/* Section Titles */
h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a1128;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  flex: 1 1 300px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card.light {
  background: #fff;
}

.card.dark {
  background: #0a1128;
  color: #fff;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 0.8rem;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.stats div {
  text-align: center;
}

.stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #f9b233;
}

/* Services */
.service-card {
  text-align: center;
}

.service-card i {
  font-size: 2rem;
  color: #f9b233;
  margin-bottom: 1rem;
}

/* Contact */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #0a1128;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #f9b233;
}

/* Footer */
.footer {
  background: #0a1128;
  color: #aaa;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}
