* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}
body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
section {
  background: #fff;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0d6efd;
  text-align: center;
}
p,
li {
  font-size: 16px;
  margin-bottom: 10px;
}
ul {
  list-style: none;
  padding-left: 0;
}
ul li::before {
  content: "✔";
  color: #0d6efd;
  margin-right: 8px;
}
a {
  text-decoration: none;
  color: black;
}
.highlight {
  font-weight: bold;
  color: #0d6efd;
}
.cost-box {
  background: #e9f3ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 18px;
}
/* Banner */
.banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 25px;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Plan Card Styles */
.plan-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.plan-card {
  background: #fff;
  border: 2px solid #0d6efd;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
}
.plan-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0d6efd;
}
.plan-card .price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.plan-card ul {
  text-align: left;
  margin-top: 15px;
}
.plan-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.plan-card button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}
.plan-card button:hover {
  background: #084298;
}
/* Contact Section */
.contact-info {
  text-align: center;
  margin-bottom: 15px;
}
.contact-info p {
  margin-bottom: 5px;
  font-size: 16px;
}
#contact-form {
  max-width: 500px;
  margin: auto;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
#contact-form button {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
#contact-form button:hover {
  background: #084298;
}
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
  .plan-card {
    width: 100%;
  }
  .banner {
    height: 200px;
  }
}

/* call button */
.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0d6efd;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: bounce 1.2s infinite;
  z-index: 9999;
}

.call-btn:hover {
  background: #084298;
}

/* Bouncing Animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
