      body {
  font-family: 'Poppins';
}
.banner {
        color: white;
      }
      .tab-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 95px;
        margin-top: 50px;
      }
      .tab-menu button {
        background: none;
        border: none;
        color: white;
        font-weight: 500;
        padding-bottom: 5px;
      }
      .tab-menu button.active {
  position: relative;
  color: #00ff6a;
}
/* Responsive adjustment from 320px to 1000px */
@media (max-width: 1000px) and (min-width: 320px) {
  .tab-menu {
    gap: 20px;
  }
  .tab-menu button.active::before {
  width: 70px !important;
}
}

.tab-menu button.active::before {
  content: '';
  position: absolute;
  top: -10px; /* adjust vertical height */
  left: 0;
  width: 100px;
  height: 2px; /* how tall you want the "border" */
  background-color: #00ff6a;
}

      .owl-carousel .item {
        padding: 10px;
      }
      .carousel-img {
        max-width: 100%;
        border-radius: 10px;
      }
.line-height{
  line-height: 70px;
}
.paragraph-stylings{
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.heading-styling{
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 60px;
}
.paragraph-stylings2{
  
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;

}
.heading-styling span{
  color: #00b23b;
}
.paragraph-stylings3{
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
  color: white;
}
.paragraph-stylings4{
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}
.success-stories{
  background: #EEF9F7;
}
.owl-carousel .item {
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;   /* Optional: text contrast */
}
.heading-stylings2{
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}
.heading-styling3{
  font-size: 30px;
  font-weight: 600;
}
.a-links-subsection-body{
  font-size: 16px !important  ;
  font-weight: 600;
}

.author-card {
      background-color: #ffffff;
      border-radius: 16px;
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      padding: 16px;
      text-align: center;
       height: 100%;
    }

    .author-card img {
      border-radius: 12px;
      width: 100%;
      height: auto;
    }

    .author-name {
      font-weight: 600;
      font-size: 24px;
      margin-top: 12px;
    }

    .author-points li{
      text-align: left;
      font-size: 15px;
      margin-top: 8px;
      font-weight: 400;
      padding-left: 16px;
      line-height: 18px;
    }

    .about-section {
      background-color: #e7eaf5;
      padding: 40px 0;
    }

    @media (max-width: 576px) {
      .author-card {
        margin-bottom: 20px;
      }
    }


p{
  text-align: left !important;
}



/* Container to hold the arrows centered below */
.slick-slider {
    position: relative;
    padding-bottom: 60px; /* create space below for arrows */
}

.custom-prev,
.custom-next {
    background-color:#00b23b;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 7px 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    bottom: 2px; /* position arrows below the slider */
    z-index: 1;
}

.custom-prev:hover,
.custom-next:hover {
    background-color: #00b23b;
}

.custom-prev {
    left: 50%;
    transform: translateX(-150%); /* move left to center with gap */
}

.custom-next {
    right: 50%;
    transform: translateX(150%); /* move right to center with gap */
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* change background if needed */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  text-align: center;
}

.loader-img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}


/* Spinner animation */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


  .custom-button-wrapper {
    display: flex;
    align-items: center;
    margin: 40px 20px; /* Top/Bottom 40px, Left/Right 20px */
  }

  .custom-readmore-btn {
    background-color: #00c514; /* Bright green */
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 30px;
    border: none;
    border-radius: 999px; /* Pill shape */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .custom-readmore-btn:hover {
    background-color: #00a711;
    transform: translateY(-2px);
  }

  .arrow-icon {
    font-size: 1.2rem;
    transform: rotate(0deg); /* Adjust angle if needed */
    transition: transform 0.3s ease;
  }

  .custom-readmore-btn:hover .arrow-icon {
    transform: translateX(4px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .custom-readmore-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
    }

    .arrow-icon {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .custom-button-wrapper {
      margin: 30px 10px;
    }

    .custom-readmore-btn {
      width: 100%;
      justify-content: center;
    }
  }
  #a-links-section a {
    text-decoration: none;
  }
  @media (max-width: 1000px) {
    .tab-menu {
      visibility:hidden !important;
    }
    .owl-carousel .item{
      height: 120vh !important;
    }
    .heading-stylings2{
      font-size: 40px;
      line-height: 50px;
    }
    .line-height{
      line-height: 40px;
    }
  
  .node--type-home #home #success-stories-section #success-stories-carousel-section .success-stories-carousel-container .success-stories-content-carousel-container .success-stories-content-carousel-item .success-stories-carousel-box .success-stories-content-box{
    height: auto !important;
  }
  
.p-5{
  padding: 0% !important;
}
}

.onfocus .content {
    background-color: #94C840;
    padding: 40px;
}
.content1 label {
    color: black;
    font-size: 16px;
    font-weight: 500;
}
.content1 {
    padding: 75px 45px !important;
}


.content1{
  padding: 5%;
}
.onfocus-aibeyond h3 {
    color: black;
    font-size: 46px !important;
    font-weight: 700 !important;
}
.footer-demo {
    background-color: black;
    background-image: url(/assets/images/footerbg1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    border-radius: 15px;
    justify-content: center;
}
.footer-demo h4 {
    color: white !important;
    font-size: 46px;
    font-weight: 700;
}
.footer {
    color: black;
    background-color: white;
    font-size: 14px;
    position: relative;
}
.footer .copyright {
    padding: 30px 0;
}
.text-decoration{
  text-decoration: none;
  color: white;
}
.text-decoration:hover{
  color: white;
}
.sticky-buy-now {
  position: fixed;
  right: 5px;
  top: 25%;
  transform: translateY(-50%);
  z-index: 999;
}

.sticky-buy-now img {
  height: 70px;
  width: auto;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .sticky-buy-now {
    top: 50% !important;
  }
}


.navbar-toggler {
  border-color: white; /* white border */
}

/* When collapsing starts (before .show appears) */
#navbarNav.collapsing,
#navbarNav.show {
  background-color: black;
  padding: 1rem 0;
}

/* Ensure link color visibility */
#navbarNav .nav-link {
  color: white !important;
}
/* Make toggler border white */
.navbar-toggler {
  border-color: white;
}
a{
  text-decoration: none !important;
}









