body {
    padding-top: 65px; /* Default padding for larger screens */
}
.navbar.bg-light,
footer.bg-light {
    background-color: #ecefee !important; /* 5% darker variant of Bootstrap's bg-light */
}

.btn-x-share {
    background-color: #0f1419;
    border-color: #0f1419;
    color: #fff;
}

.btn-x-share:hover,
.btn-x-share:focus {
    background-color: #1c2733;
    border-color: #1c2733;
    color: #fff;
}

.carousel-item img {
    height: 500px; /* Set a fixed height or max-height as needed */
    object-fit: contain; /* Ensures the image scales down to fit, maintaining aspect ratio */
    width: auto; /* Allows the image width to adjust proportionally */
    margin: auto; /* Centers the image in the slide if there's extra space */
    background-color: rgb(244, 244, 244);
}


.small-alert {
    padding: 0.25rem 0.5rem; /* Reduces the top and bottom padding */
    font-size: 0.875rem; /* Smaller font size */
    position: relative; /* Ensures that the positioning context is the alert itself */
}

.small-alert .btn-close {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
}

/* main.css pricing formating additions */

/* Modern list styles */
ul.list-unstyled.mt-3.mb-4 {
    background-color: #f8f9fa; /* Light background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Spacing inside the list */
}

ul.list-unstyled.mt-3.mb-4 li {
    line-height: 1.6; /* Adjust line height for readability */
    border-bottom: 1px solid #e9ecef; /* Light border between items */
    padding: 10px 0; /* Spacing around list items */
}

ul.list-unstyled.mt-3.mb-4 li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

ul.list-unstyled.mt-3.mb-4 li::before {
    content: "•"; /* Custom bullet points */
    color: #007bff; /* Bootstrap primary color or choose any */
    font-weight: bold; /* Make the bullet points bold */
    margin-right: 8px; /* Spacing between bullet and text */
}

/* FAQ formatting addtions */

.accordion-button:not(.collapsed) {
    color: #495057; /* Dark color for active titles */
    background-color: #e9ecef; /* Light background for active titles */
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125); /* Adds a subtle shadow to the bottom of active titles */
}

.accordion-button {
    font-weight: 600; /* Makes the font slightly bolder */
}

.accordion-item {
    border: 1px solid #e9ecef; /* Adds a light border around each item for separation */
    border-radius: .25rem; /* Rounds the corners of the accordion items */
}

.accordion-body {
    line-height: 1.5; /* Improves readability by increasing line spacing */
}

.add-chrome-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #222;
    background: linear-gradient(145deg, #e0e0e0, #bdbdbd);
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.2s ease;
  }

  .add-chrome-btn .btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
  }

  .add-chrome-btn:hover {
    background: linear-gradient(145deg, #d1d1d1, #ababab);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    text-decoration: none;
  }

  .add-chrome-btn:active {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  html {
    scroll-behavior: smooth;
  }

  #pricing::before {
    content: "";
    display: block;
    height: 80px;  /* adjust if your navbar is taller */
    margin-top: -80px;
    visibility: hidden;
  }
  
.social-proof { background: #f8f9fc; }

.sp-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sp-title { color: #333; }

.badge-pill {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  border-radius: 50rem;
  background: linear-gradient(135deg,#eef2ff,#ffffff);
  border: 1px solid rgba(0,0,0,0.08);
  color: #444;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}
.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-circle:hover {
  transform: scale(1.08);
}

.testimonial-row-wrapper {
  overflow: hidden;         /* Prevent cards from spilling */
  width: 100%;
  margin-bottom: 2rem;
}

.testimonial-row {
  display: flex;
  gap: 1rem;
  animation: scroll-left 40s linear infinite;
}

.testimonial-row.reverse {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.promo-highlight {
  background: linear-gradient(135deg, rgba(33, 150, 83, 0.10) 0%, rgba(33, 150, 83, 0.04) 100%);
  border: 1px solid rgba(33, 150, 83, 0.16);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 24px rgba(33, 150, 83, 0.12);
}

.promo-toggle-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(233, 250, 241, 0.9));
  border: 1px solid rgba(33, 150, 83, 0.25);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #0f5132;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.promo-toggle-btn:hover,
.promo-toggle-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(33, 150, 83, 0.16);
  border-color: rgba(33, 150, 83, 0.35);
  color: #0f5132;
}

.promo-toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 83, 0.25);
}

.promo-toggle-headline {
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.promo-toggle-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(15, 81, 50, 0.7);
}

.promo-highlight .promo-top {
  gap: 0.75rem;
}

.promo-highlight .promo-badge {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f5132;
  background: rgba(25, 135, 84, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

.promo-highlight .promo-percent {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(15, 81, 50, 0.75);
}

.promo-highlight .promo-price-row {
  gap: 0.5rem;
}

.promo-highlight .promo-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f5132;
  line-height: 1;
}

.promo-highlight .promo-duration {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(15, 81, 50, 0.75);
}

.promo-highlight .promo-code-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: rgba(25, 135, 84, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(25, 135, 84, 0.12);
  font-size: 0.85rem;
}

.promo-highlight .promo-code-label {
  color: rgba(15, 81, 50, 0.65);
  font-weight: 600;
}

.promo-highlight .promo-code {
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f5132;
  background-color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px dashed rgba(25, 135, 84, 0.35);
}

.promo-highlight .promo-footnote {
  font-size: 0.8rem;
  color: rgba(15, 81, 50, 0.6);
}

@keyframes scroll-right {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

.testimonial-card {
  flex: 0 0 220px;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.testimonial-card .face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.review-badge {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Blog typography */
.post-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}
.post-content h1, .post-content h2, .post-content h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}
.post-content p { margin: 0.8rem 0; }
.post-content ul, .post-content ol { padding-left: 1.4rem; }
.post-content blockquote {
  border-left: 4px solid #ddd;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  color: #555;
  background: #fafafa;
}
.post-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.post-content th, .post-content td { border: 1px solid #e5e5e5; padding: 0.5rem; }
.post-content pre { background: #0f172a; color: #e2e8f0; padding: 1rem; border-radius: 6px; overflow-x: auto; }
.post-content code { background: #f6f8fa; padding: 0.1rem 0.3rem; border-radius: 4px; }
.post-content pre code { background: transparent; padding: 0; }
