* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

/* section h2 {
  color: #0b1c36;
} */

a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.85;
}

.text-primary {
  color: #123d6e !important;
}

.bg-primary {
  background-color: #123d6e !important;
}

.btn-primary {
  background-color: #123d6e;
  border-color: #123d6e;
}

.btn-primary:hover {
  background-color: #0b2f5a;
  border-color: #0b2f5a;
}

.btn-outline-primary:hover {
  background-color: #123d6e;
  color: white;
}

.text-warning {
  color: #fcb900 !important;
}

.btn-warning {
  background-color: #fcb900;
  color: #000;
  border: none;
}

.btn-warning:hover {
  background-color: #e2a800;
  color: #000;
}

.card {
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.bi {
  transition: transform 0.3s ease;
}

.bi:hover {
  transform: scale(1.1);
}

footer {
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  color: #ffffff;
  transition: color 0.3s;
}

footer a:hover {
  color: #fcb900;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
}

.card h3 {
  font-size: 2rem;
}

.card ul li {
  margin-bottom: 0.5rem;
}

.card .position-absolute {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 0 0 0.25rem 0.25rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}
