* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}
.custom-navbar {
  background: #002b45;
  padding: 0.8rem 1rem;
  transition: background-color 0.3s ease;
}

.custom-navbar .navbar-brand {
  color: #ffc107;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.custom-navbar .navbar-brand:hover {
  color: #ffdd57;
}

.custom-navbar .nav-link {
  color: #e0e0e0;
  margin-left: 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: #ffc107;
}

.custom-navbar .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffc107;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .dropdown-menu {
  background-color: #00385d;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}
.custom-navbar .dropdown-item {
  color: #fff;
}
.custom-navbar .dropdown-item:hover {
  background-color: #005ea3;
  color: #fff;
}
.navbar-toggler{
  background-color: #005ea3;
}
.section {
  padding: 80px 0;
}

.section.bg-light {
  background-color: #f1f3f5;
}

.hero-section {
  background: linear-gradient(to right, #003366, #005ea3);
  color: #fff;
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

.hero-section .btn-primary:hover {
  background-color: #e0a800;
  border-color: #d39e00;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ddd;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffc107;
}
.pricing-card {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.pricing-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .card-price {
  font-size: 1.8rem;
  color: #005ea3;
  margin-bottom: 20px;
}

.pricing-card.featured {
  border: 2px solid #005ea3;
}

.btn-primary {
  background-color: #005ea3;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004080;
}

.btn-outline-primary {
  color: #005ea3;
  border-color: #005ea3;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #005ea3;
  color: #fff;
}
form .form-control {
  border-radius: 6px;
  border: 1px solid #ced4da;
}

form .form-control:focus {
  border-color: #005ea3;
  box-shadow: 0 0 0 0.2rem rgba(0, 94, 163, 0.25);
}
.form-check-input {
  border-color: #005ea3;
}

.form-check-input:checked {
  background-color: #005ea3;
  border-color: #005ea3;
}

.form-check-label a {
  color: #005ea3;
  text-decoration: underline;
}

.form-check-label a:hover {
  color: #003366;
}
footer {
  background-color: #212529;
  color: #bbb;
  font-size: 0.9rem;
}
