/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f7f9fc;
  color: #1f2933;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

/* Topbar */
.topbar {
  background: #02457a;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
}

.topbar a {
  color: #fff;
  margin-right: 16px;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: #ffffff;
}

.navbar-brand span {
  font-weight: 700;
  color: #02457a;
}

.nav-link {
  font-size: 0.95rem;
  margin-right: 8px;
}

.nav-link.active {
  font-weight: 600;
  color: #02457a !important;
}

/* Buttons */
.btn-primary {
  background-color: #f5a623;
  border-color: #f5a623;
}

.btn-primary:hover {
  background-color: #f29b0a;
  border-color: #f29b0a;
}

.btn-outline-primary {
  border-color: #f5a623;
  color: #f5a623;
}

.btn-outline-primary:hover {
  background-color: #f5a623;
  color: #fff;
}

/* Hero sections */
.hero {
  padding: 90px 0 80px;
  background: linear-gradient(135deg, #02457a 0%, #0b9d5c 70%);
  color: #fff;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Inner page hero */
.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #02457a 0%, #0b9d5c 70%);
  color: #fff;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 2rem;
}

.section-title span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #f5a623;
  margin-top: 10px;
}

/* Feature icons */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(2, 69, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Cards & stats */
.card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.06);
}

.stats {
  background: #02457a;
  color: #fff;
  padding: 40px 0;
}

.stats h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* Contact */
.contact-section {
  background: #ffffff;
  padding: 60px 0;
}

/* Footer */
.footer {
  background: #0b1220;
  color: #cbd5f5;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer a {
  color: #e5e7eb;
}

/* Utilities */
.bg-light-alt {
  background-color: #f1f5f9;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li::before {
  content: "✔ ";
  color: #0b9d5c;
  font-weight: bold;
}
