.titleText {
  color: #00D4FF;
  text-align: center;
  z-index: 1;
  font-size: 2.4rem; /* scalable and accessible size */
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0.625rem; /* consistent with font size */
}


.pricing-item-pro {
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Title should appear ABOVE the image, not on top of it */
.pricing-item-pro .titleText {
  position: relative;  /* keeps normal flow */
  z-index: 3;          /* ensures it stays above other elements */
  display: block;
  color: #00D4FF;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1rem;  /* adds spacing before the image */
}

/* The image container should never overlap text */
.pricing-item-pro .icon {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.pricing-item-pro .icon img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

/* Keep your blue-dot list centered but left-aligned */
.pricing-item-pro ul {
  list-style: none;
  display: inline-block;
  text-align: left;
  padding-left: 0;
  margin: 1em auto;
}

.pricing-item-pro ul li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 500;
}

.pricing-item-pro ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 1.2em;
  line-height: 1;
}

.pricing-item-pro ul li.non-function {
  color: #999;
  text-decoration: line-through;
}



/* ===== Footer layout & readability ===== */
#site-footer {
  background: linear-gradient(135deg,#1991ff 0%, #1ec8ff 60%);
  color: rgba(255,255,255,.92);
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Newsletter band */
#site-footer #newsletter .section-heading{
  background: rgba(69,46,255,.75)!important;
  border-radius: 14px;
}
#site-footer #newsletter h4{ color:#fff!important; }

/* Footer columns */
#site-footer .footer-top{
  display:grid;
  gap:28px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
#site-footer .footer-widget h4{
  color:#fff;
  font-weight:700;
  margin-bottom:12px;
}
#site-footer .footer-widget ul li{ margin: 6px 0; }
#site-footer .footer-widget a{
  color:#eef6ff;
  text-decoration:none;
}
#site-footer .footer-widget a:hover{ text-decoration:underline; }

/* About block */
#site-footer .about{
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 18px;
}

/* Copyright line */
#site-footer .copyright-text{
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-align: center;
  margin-top: 18px;
}

/* Desktop polish */
@media (min-width: 992px){
  #site-footer .footer-top{
    grid-template-columns: 1.2fr 1.2fr 1.6fr; /* Methods | More | About */
    align-items: start;
  }
  #site-footer .about{
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.25);
    padding: 4px 0 0 24px;
    min-height: 100%;
  }
  #site-footer .copyright-text{
    text-align: right;
    margin-top: 8px;
  }
}

/* Make links readable on gradient */
#site-footer a{ text-shadow: 0 1px 0 rgba(0,0,0,.15); }

/* ====== Footer mobile spacing fix ====== */

/* Add side padding inside the footer container */
#site-footer .container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Give inner blocks consistent breathing room */
#site-footer .footer-widget,
#site-footer .about,
#site-footer .copyright-text {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* Ensure newsletter banner text isn't clipped */
#site-footer #newsletter .section-heading {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  border-radius: 12px;
}

/* Tighter on large screens, still balanced visually */
@media (min-width: 992px) {
  #site-footer .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


/* ========= Hero fixes (mobile & tablet) ========= */

@media (max-width: 991.98px) {
  /* Tighten the hero block */
  .main-banner{
    /* was: padding: 226px 0 30px 0; */
    padding: 130px 20px 24px 20px;
  }

  /* Make the headline denser on small screens */
  .main-banner .left-content h2{
    /* was ~50px/70px line-height */
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  /* Reduce paragraph spacing */
  .main-banner .left-content p{
    margin-bottom: 20px; /* was 45px */
  }

  /* Nudge image & keep it compact */
  .main-banner .right-image{
    margin: 16px auto 0;
  }
  .main-banner .right-image img{
    max-width: 420px; /* keep it from stretching too tall */
    height: auto;
  }
}

/* Extra-small phones: give a little more top room for the header */
@media (max-width: 575.98px){
  .main-banner{
    padding-top: 110px; /* balances against the 100px mobile header */
  }
}

.white-button {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.white-button a {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.white-button a:hover {
  background-color: #0056b3;
}

/* container to ensure they stay side by side */
.col-lg-12 > .white-button {
  display: inline-block;
}

/* optional: adjust for smaller screens */
@media (max-width: 576px) {
  .white-button {
    display: block;
    margin: 8px 0;
  }
}

/* Wrapper for both buttons */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* allows them to stack nicely on mobile */
  gap: 15px; /* space between buttons */
  margin-top: 20px;
}

/* Style each button */
.white-button a {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.white-button a:hover {
  background-color: #0056b3;
}

/* Lists */

.pricing-item-pro ul {
  list-style: none; /* remove default bullets */
  display: inline-block; /* center the whole list as a block */
  text-align: left; /* keep text itself left-aligned */
  padding-left: 0; /* remove default list padding */
  margin: 1em auto;
}

.pricing-item-pro ul li {
  position: relative;
  padding-left: 1.2em; /* space for custom bullet */
  margin: 0.4em 0;
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 500;
}

.pricing-item-pro ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff; /* blue bullet */
  font-size: 1.2em;
  line-height: 1;
}

.pricing-item-pro ul li.non-function {
  color: #999;
  text-decoration: line-through;
}