
.site-footer {
  background:  
    radial-gradient(
      circle at center,
      #8f9bff 0%,
      #6f7dff 30%,
      #4a5cff 55%,
      #2f3fd1 75%,
      #1f2aa8 100%
    );
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-qr img {
  width: 160px;
  margin-top: 15px;
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 0 8px;
  }

  .footer-qr img {
    margin: 15px auto 0;
  }
}

.icon {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
  font-style: normal;
  color: #000;
}

.icon.clock::before {
  content: "🕒";
}

.icon.phone::before {
  content: "📞";
  color: black;
}

.icon.whatsapp::before {
  content: "💬";
}

.icon.mail::before {
  content: "✉️";
}

.social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 12px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ff7a00; /* brand hover color (optional) */
}

/* footer yaha pe end hai  */ 



.plans-section {
  padding: 80px 40px;
  background: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

.plans-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.plan-card {
  background: #0b4c53;
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  position: relative;
}

/* HIGHLIGHT CARD */
.plan-card.highlight {
  transform: scale(1.05);
}

/* BADGE */
.badge {
  background: #ffe6c7;
  color: #ff7a00;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* TITLE */
.plan-top h3 {
  margin-top: 10px;
  font-size: 22px;
}

/* PRICE */
.plan-body h2 {
  font-size: 36px;
  margin: 15px 0;
}

.plan-body h2 span {
  font-size: 16px;
  opacity: 0.8;
}

/* LIST */
.plan-body ul {
  margin: 15px 0;
  padding-left: 18px;
}

.plan-body li {
  margin-bottom: 8px;
}

/* BUTTON */
.plan-body button {
  background: #f59e0b;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
}

/* EXTRA SECTION */
.plan-extra {
  margin-top: 50px;
}

.plan-extra h3 {
  margin-bottom: 10px;
}

.plan-extra ul {
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}
.plan-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 50px;
}

/* CARD */
.extra-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

/* HEADING */
.extra-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* LIST */
.extra-card ul {
  list-style: none;
  padding: 0;
}

.extra-card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.5;
}

/* CUSTOM BULLET */
.extra-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4c53;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .plan-extra {
    grid-template-columns: 1fr;
  }
}