.header-nav {
  position: fixed !important;
  text-align: center !important;
  padding: 10px 15px !important;
  z-index: 1000 !important;
  top: 0 !important;
}

.navbar {
  background-color: #1c8ece;
}

.header-nav img {
  max-height: 50px;
}

.header-nav .navbar-brand {
  margin: 0;
}
.on-scroll {
  background-color: #1c8ece;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.banner {
  background-image: url(./assets/bannerImage.png);
  background-size: cover;
  color: white;
}

.hero-content h2 {
  font-size: 39px;
  font-weight: 600;
  line-height: 50px;
  color: #2f2d2d;
  font-family: var(--primary-fontfamily);
}

.hero-content h2 strong {
  font-weight: 700;
  color: #000000;
  font-family: var(--primary-fontfamily);
}
.hero-content p {
  font-family: var(--primary-fontfamily);
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.highlight-zero {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: -3 4px;
}

.highlight-zero::before {
  content: "";
  position: absolute;
  top: 62%;
  left: 50%;
  width: 120%;
  height: 170%;
  transform: translate(-50%, -50%);
  background: url("/assets/Free ring - yellow.png") no-repeat center;
  background-size: contain;
  z-index: -1;
}




 .form-container {
  border: 1px solid transparent;
  border-image: linear-gradient(
    172.05deg,
    #1c8ece 30.91%,
    rgba(249, 186, 28, 0.2) 69.09%
  );
  border-image-slice: 1;
  border-radius: 40px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/*.form-container button {
  background-color: #1c8ece;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--primary-fontfamily);
} */

.formDiv {
  max-width: 380px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
  color: #000;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
  padding: 2rem;
}

.formDiv input {
  border: none !important;
  border-bottom: 1px solid #ebedf3 !important;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  padding: 5px 10px;
}

.formDiv input:focus {
  border-bottom: 1px solid #612be1 !important;
  outline: none;
}

.formDiv input:hover {
  border-bottom: 1px solid #5529bc !important;
}

.formDiv input::placeholder {
  font-size: 14px;
}

.formDiv .error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 3px;
  display: none;
}

.formDiv .error-visible {
  display: block;
}

.formDiv button {
  width: 100%;
  font-family: inherit;
  margin-top: 1rem;
  cursor: pointer;
  background-color: #5529bc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.formDiv button:hover {
  background-color: #fff;
  color: #5529bc;
  border: 1px solid #5529bc;
}

.noSpin::-webkit-outer-spin-button,
.noSpin::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.noSpin {
  -moz-appearance: textfield;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #198754;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
}

.toast.show {
  display: block;
}

.hero-image-wrapper {
  position: relative;
  height: 400px;
}

.hero-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.whysaas h2 {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}

.whysaas .description {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero-wrapper {
    position: static; /* stack naturally */
    width: 100%; /* full width */
    height: auto;
    margin-top: 1.5rem;
    text-align: center;
  }

  .hero-wrapper img {
    width: 50%; /* image scales on small screens */
    max-width: 200px;
    height: auto;
  }
}

.logo-text {
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  .hero-content h2 {
    margin-top: 60px;
  }
}
.section {
  margin: 0 auto;
  text-align: center;
  background-color: #1c8ece;
}

.features-container {
  border-radius: 15px;
  padding: 2rem;
  background-color: #d9d9d94d;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-radius: 16px;
  background-color: #d9d9d94d;
  border: 1px solid;
  border-image-source: linear-gradient(
    96.1deg,
    #ffffff 22.35%,
    rgba(255, 255, 255, 0.2) 77.65%
  );
  backdrop-filter: blur(4px);
}

.feature-box {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  color: black;
}

.feature-box li {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

/* ---------- Layout helpers ---------- */
.features-container {
  margin: 0 auto;
}

.title-row {
  white-space: nowrap;
}

.icon {
  flex-shrink: 0;
  object-fit: contain;
}

.title-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}



/* Responsive tweak */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
  }
}

.title-row h3 {
  font-family: var(--primary-fontfamily);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  text-align: left;
}

ul {
  list-style: disc;
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 500px) {
  .title-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .feature-box ul {
    margin: 0 auto;
    display: inline-block;
    text-align: left;
  }
  .feature-card img {
    width: unset !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section 1 */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  margin-left: 60px;
}

.hero-text h2 {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: var(--primary-fontfamily);
}

.checklist li span {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Center text */
.centered-title {
  text-align: center;
  font-family: Nunito;
  font-weight: 600;
  font-size: 32px;
  font-family: var(--primary-fontfamily);
  margin-bottom: 50px;
}

/* Section 2 - Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  display: flex;

  border-radius: 10px;
  padding: 20px;
  background: #f9f9f9;
  gap: 20px;
  transition: 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-card-content {
  flex: 1;
}

.feature-card-content h4 {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 10px;
  color: #1e1e1e !important;
}

.feature-card-content p {
  font-family: var(--primary-fontfamily);
  font-size: 16px;
  color: #1e1e1e;
  margin: 0;
}

.integration h5 {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}
.lastSection h5 {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}
.feature-checklist li {
  font-family: var(--primary-fontfamily);
  font-weight: 600;
  font-size: 24px;
}
.lastSection button {
  background-color: #1c8ece;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-card img {
    margin-bottom: 10px;
  }
}

.feature-card h4 {
  font-size: 20px;
  margin: 10px 0;
  color: #0077ff;
}

.feature-card p {
  font-size: 15px;
  color: #333;
}
.lastSection ul {
  margin-left: 150px;
}
.custom-border {
  position: relative;
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 1;
  max-width: 350px;
}

.custom-border::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 8px;
  right: 8px;
  bottom: 19px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    172.05deg,
    #1c8ece 30.91%,
    rgba(249, 186, 28, 0.2) 69.09%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.BgImg {
  background-color: #dad9d9;
}
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .custom-border {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.95rem;
    text-align: center !important;
  }

  .hero-wrapper img {
    width: 180px;
    height: auto;
    margin: 2rem auto 0;
    display: block;
  }

  .custom-border {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    margin-left: unset !important;
  }
  .lastSection ul {
    margin-left: unset !important;
  }
  .centered-title {
    font-size: 20px;
  }

  .features-container {
    padding: unset;
  }
  .feature-box {
    min-width: unset !important;
  }
}
.footer-section {
  text-align: left;
  padding: 2rem 1rem;
  background: #f9f9f9;
  color: #555;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}

address {
  margin: 1rem 0;
  font-style: normal;
  line-height: 1.5;
}

.social-links a {
  margin: 0 0.5rem;
}

.social-links img {
  width: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.privacy-policy {
  color: #6a7194;
  text-decoration: none;
}

.partner-logo {
  max-height: 40px;
  margin: 10px 20px;
  object-fit: contain;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-checklist img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.cta-button {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .feature-columns {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-device-width:1300px) and (max-device-width: 3000px) { 
  .lineimage{
    position: relative;
    right: 36px;
  }
}