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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* ---------------- HEADER ---------------- */
/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #1d3557;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #e63946;
} */

/* ---------------- HERO ---------------- */
.hero {
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #d62828;
  transform: scale(1.05);
}

/* ---------------- INTRO ---------------- */
.intro {
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  padding: 1rem 2rem;
}

.intro h2 {
  font-size: 2rem;
  color: #1d3557;
  margin-bottom: 1rem;
}

/* ---------------- CARDS ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.6rem;
  color: #1d3557;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.btn-link {
  text-decoration: none;
  font-weight: 600;
  color: #e63946;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #d62828;
}

/* ---------------- FOOTER ---------------- */
/* .footer {
  background: #1d3557;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
} */