html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #caf0f8;
  color: #333;


}

/* 🔴 Marquee Bar */
.news-bar {
  background: #ffc107;
  color: #000;
  padding: 8px 0;
  font-weight: bold;
  font-size: 15px;
}

header {
  background: #00b4d8;
  color: #fff;
  padding: 1px;
  text-align: center;
}

nav {
  background: #084298;
  padding: 10px;
  text-align: center;
 
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
}

h2 {
  margin-bottom: 20px;
  color: #0d6efd;
}

.search-box {
  margin-bottom: 20px;
  text-align: center;
}

.search-box input {
  width: 80%;
  max-width: 400px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.623);
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 10px 0;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #198754;
}

.btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0b5ed7;
}

footer {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* 🔵 Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: red;
}

.modal input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.pay-btn {
  background: #198754;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.pay-btn:hover {
  background: #157347;
}

.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between checkbox and text */
  margin: 10px 0;
  font-size: 14px;
}

.terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.terms label {
  margin: 0;
  cursor: pointer;
}