body {
  font-family: "Poppins", sans-serif;
  background-color: #f9fafb;
  color: #343a40;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.nav-link {
  font-weight: 500;
  color: #333 !important;
}
.nav-link.active,
.nav-link:hover {
  color: #0d6efd !important;
}
.hero {
  position: relative;
  min-height: 85vh;
  background: url("images/basket.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.btn-primary {
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
  transition: box-shadow 0.3s ease;
}
.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.6);
}
section {
  padding: 80px 0;
}
#about img {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.1);
}
.package-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgb(0 0 0 / 0.2);
}
.package-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #0d6efd;
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #212529;
}
.package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.package-list li {
  font-weight: 500;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 30px;
}
.package-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #198754;
}
.package-btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 0.65rem 2rem;
  box-shadow: 0 5px 15px rgb(13 110 253 / 0.4);
  transition: box-shadow 0.3s ease;
}
.package-btn:hover {
  box-shadow: 0 8px 20px rgb(13 110 253 / 0.6);
}
#contact {
  background-color: #0d6efd;
  color: white;
  text-align: center;
}
#contact a {
  color: #ffc107;
  font-weight: 600;
  text-decoration: underline;
}
#contact a:hover {
  color: #ffd454;
  text-decoration: none;
}
footer {
  background-color: #212529;
  color: #adb5bd;
  padding: 25px 0;
  font-size: 0.9rem;
}
footer a {
  color: #adb5bd;
  margin: 0 12px;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #0d6efd;
  text-decoration: none;
}
#termsModal .modal-body {
  color: #000; /* Semi-bold text */
  white-space: normal; /* Prevent extra whitespace/newlines */
  padding: 1rem; /* Optional: add some padding for better readability */
  text-align: left;
}
.modal-title {
  color: #0d6efd;
}
