body {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif !important;
  background: #fff !important;
  box-sizing: border-box;
}
#navbarNav {
  justify-content: end;
}
section {
  min-height: 100vh; /* always fill at least the full viewport height */
  display: flex; /* optional: center content vertically */
  align-items: center; /* optional: center content vertically */
}
.pricing-card {
  border-radius: 12px;
  padding: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card.active {
  /* border: 2px solid #6a11cb; */
  box-shadow: 0 6px 15px rgba(106, 17, 203, 0.3);
  transform: scale(1.02);
}
.pricing-card h5 {
  font-size: 28px;
  font-weight: 600;
  /* background: #fff; */
}
.pricing-card strong {
  font-size: 20px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: #fff !important;
  padding: 18px !important;
}
.pricing-card.purple {
  background: #5a2d8bc2;
  color: #fff;
  /* margin-top: -40px; */
}

.pricing-card ul {
  padding-left: 20px;
  line-height: 34px;
}

.pricing-btn {
  margin-top: auto;
}
.pricing-btn {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  font-size: 18px;
  font-weight: 600;
}
.nav-link {
  position: relative;
  padding-bottom: 8px;
  font-size: 16px !important;
  margin: 0px 8px;
}
/* Fall-down animation */
@keyframes fallDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.fade-down {
  animation: fallDown 1.2s ease-out forwards;
}

/* Styling for demo */
.headline {
  font-size: 2.5rem;
  font-weight: bold;
}
.highlight {
  color: #007bff;
}
.bookDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.StartDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.tag {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Border for active nav item */
.nav-link.active {
  font-weight: 600;
  border-bottom: 3px solid #007bff; /* Change color as needed */
}

/* Optional hover effect */
.nav-link:hover {
  border-bottom: 3px solid #007bff;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 2px solid #f2f4fc;
  z-index: 1030;
}

.bookDemoBtn {
  /* background: linear-gradient(90deg, #4a00e0, #8e2de2); */
  color: #000;
  /* padding: 8px 18px; */
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
  width: 126px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bfb194;
}
.proicing-SubText {
  margin-bottom: 4rem;
}
/* .bookDemoBtn:hover {
   background-color: rgb(0, 117, 117);
  } */
.header-bg {
  background-color: #f8f9fa;
}
.banner-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}
#navbarNav .nav-link {
  font-weight: 500;
}
.custom-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 16px !important;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0d1b2a;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Card Styling */
.pricing-card {
  /* border: 1px solid #e5e7eb; */
  border-radius: 36px;
  padding: 2rem;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.starter-card {
  background-color: #f0fdf4;
  border: none;
}
.business-card {
  border: 2px solid #f59e0b;
  position: relative;
}
.business-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f59e0b;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 4px 44px;
  border-radius: 12px;
  font-size: 17px;
}
.pricing-card {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease-out;
}

.pricing-card.show {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
}

.enterprise-card {
  background-color: #fff7ed;
  border: none;
}
.pricing-title {
  font-weight: 700;
  font-size: 30px;
}
.pricing-price {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 2px;
}
.daysText {
  color: #978e8e;
  font-weight: 500;
}
.pricing-subtext {
  color: #6b7280;
  font-size: 18px;
}
.pricing-list {
  list-style: none;
  padding-left: 0;
}
.pricing-list li {
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.pricing-list li::before {
  content: "✔";
  color: #fff;
  font-weight: bold;
  margin-right: 10px;
  background: #22c55e;
  border-radius: 50%;
  padding: 3px 5px;
  font-size: 9px;
}
.btn-dark-blue {
  background-color: #0f172a;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}
.btn-outline-green {
  border: 2px solid #0f766e;
  color: #0f766e;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background-color: transparent;
}
.pricing_text {
  font-size: 45px;
  margin-top: 40px;
  text-align: center;
}
.btn-outline-green:hover {
  background-color: #0f766e;
  color: #fff;
}
.btn-green {
  background-color: #0f766e;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}
/* ===============table css=============== */
/* Table look */
.compare-table {
  margin: 0;
}
.compare-table th,
.compare-table td {
  border: 0; /* remove all default borders */
  vertical-align: middle;
  padding: 16px 18px;
  font-size: 0.975rem;
}
.compare-table thead th {
  background: #f6f7f9; /* light header bg like screenshot */
  font-weight: 600;
  color: #111827;
  padding: 16px;
}
.compare-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #eef1f4; /* only horizontal lines */
  padding: 16px;
  font-weight: 500;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  padding: 16px;
  font-weight: 500; /* feature names left aligned */
}
.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center; /* plan columns centered */
}
.text-blue {
  color: #0d6efd;
  font-weight: 500;
}

/* Tick/Cross badges (no icon libraries) */
.flag {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}
.flag-yes {
  background: #22c55e;
  color: #fff;
}
.flag-no {
  background: #ef4444;
  color: #fff;
}
.flag-yes::before {
  content: "\2713";
} /* ✓ */
.flag-no::before {
  content: "\00D7";
} /* × */

/* =============faq css============= */
.faq-container {
  max-width: 700px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #123456;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 18px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Arrow */
.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.cta-section {
  background-color: #f9fafb; /* Light background */
  border-radius: 10px;
  padding: 60px 20px;
  /* max-width: 1000px; */
  margin: 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a5f; /* Deep blue */
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 16px;
  color: #6b7280; /* Neutral gray */
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.proicing-SubText {
  text-align: center;
}

.cta-buttons a {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* Dark Blue Button */
.btn-dark-blue {
  background-color: #0f2d4c; /* Dark navy */
  color: #fff;
}
.btn-dark-blue:hover {
  background-color: #0d243c;
}

/* Outline Green Button */
.btn-outline-green {
  border: 1px solid #059669; /* Teal green */
  color: #059669;
  background: #fff;
}
.btn-outline-green:hover {
  background: #059669;
  color: #fff;
}

/* Outline Blue Button */
.btn-outline-blue {
  border: 1px solid #1e3a5f; /* Navy border */
  color: #1e3a5f;
  background: #fff;
}
.btn-outline-blue:hover {
  background: #1e3a5f;
  color: #fff;
}
/* ===== Footer Styles ===== */
.footer {
  background-color: #f9f9f9;
  padding: 40px 20px 20px;
  border-top: 1px solid #e6e6e6;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: #5a5a5a;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #374151 !important;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a {
  display: block;
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  font-size: 18px;
  color: #374151;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-top: 15px;
}

@media (max-width: 767px) {
  .pricing_text {
    font-size: 28px;
    margin-top: 40px;
  }
  .proicing-SubText {
    margin-bottom: 3rem;
  }
  .faq-container {
    padding: 20px;
  }
  .btn-outline-green {
    font-size: 14px;
  }
  .btn-green {
    font-size: 14px;
  }
  .pricing_text {
    font-size: 20px;
    margin-top: 20px;
    text-align: start;
  }
  .proicing-SubText {
    text-align: start;
  }

  .navbar-nav {
    margin-bottom: 20px !important;
  }
  .features-section {
    background: #f8fdff;
    padding-top: 80px;
    padding-bottom: 31px;
    text-align: center;
    margin-top: 3rem;
  }
  .fixed-top {
    padding: 16px 0px !important;
  }
  .nav-link.active {
    width: fit-content;
  }
  .pricing-card.purple {
    background: #6a11cb;
    color: #fff;
    margin-top: 0px;
  }
  .fixed-top img {
    width: 90px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-link.active {
    width: fit-content;
  }
  .navbar-nav {
    margin-bottom: 20px !important;
  }
  .fixed-top {
    padding: 18px 0px !important;
  }
  .pricing-card.purple {
    background: #6a11cb;
    color: #fff;
    margin-top: 0px;
  }
  .fixed-top img {
    width: 100px !important;
  }
}
