

/* styles.css */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #800000;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1608889175315-9c5c6c5d8c8a');
  background-size: cover;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.primary-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  background: #ffcc00;
  color: #800000;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 80px 40px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.section.alt {
  background: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.link-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #800000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}