/* Landing
******************************************************************************* */
/* (C) */
.section-py {
  padding-block: 6.25rem;
  padding-inline: 0;
}
@media (max-width: 1199.98px) {
  .section-py {
    padding-block: 5rem;
    padding-inline: 0;
  }
}
@media (max-width: 767.98px) {
  .section-py {
    padding-block: 3rem;
    padding-inline: 0;
  }
}

/* Hero */
.landing-hero {
  --bs-hero-bg: linear-gradient(180deg, rgba(63 112 183 / 10%) 0%, rgba(63 112 183 / 20%) 40%, rgba(255 255 255 / 30%) 100%);
  border-radius: 0 0 3.5rem 3.5rem;
  background: var(--bs-hero-bg);
  padding-block-start: 10.2rem;
}

.landing-hero::after {
  position: absolute;
  z-index: -1;
  background-color: var(--bs-paper-bg);
  block-size: 100%;
  content: "";
  inline-size: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
}
@media (min-width: 992px) {
  .landing-hero .hero-text-box {
    margin-block: 0;
    margin-inline: auto;
    max-inline-size: 40rem;
    margin-bottom: 30px;
  }
}
.landing-hero .hero-title {
  animation: shine 2s ease-in-out infinite alternate;
  /* background: linear-gradient(to right, #28c76f 0%, #5a4aff 47.92%, #ff3739 100%); */
  /* background-clip: text; */
  background-size: 200% auto;
  color: var(--bs-black);
  font-size: calc(1.3875rem + 1.65vw);
  line-height: 1.2;
  /* -webkit-text-fill-color: transparent; */
}
@media (min-width: 1200px) {
  .landing-hero .hero-title {
    font-size: 2.625rem;
  }
}
.landing-hero .landing-hero-btn .hero-btn-item {
  inset-block-start: 65%;
  inset-inline-start: -94%;
}
.landing-hero .hero-animation-img {
  /* margin-block-end: -32rem; */
  margin-block-end: 0rem;
}
@media (max-width: 1199.98px) {
  .landing-hero .hero-animation-img {
    margin-block-end: 0rem;
  }
}
@media (max-width: 575.98px) {
  .landing-hero .hero-animation-img {
    margin-block-end: 0rem;
  }
}
.landing-hero .hero-animation-img .hero-dashboard-img {
  inline-size: 100%;
  margin-block: 0;
  margin-inline: auto;
  /* transform-style: preserve-3d; */
  transition: all 0.1s;
  will-change: transform;
}
.landing-hero .hero-animation-img .hero-dashboard-img img {
  inline-size: 100%;
}

.landing-hero-blank {
  padding-block-start: 26rem;
}
@media (max-width: 1199.98px) {
  .landing-hero-blank {
    padding-block-start: 15rem;
  }
}
@media (max-width: 575.98px) {
  .landing-hero-blank {
    padding-block-start: 7rem;
  }
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  80% {
    background-position: 50% 90%;
  }
  100% {
    background-position: 91% 100%;
  }
}
/* WHAT WE OFFER SECTION */
.what-we-offer {
  background-color: var(--bs-paper-bg);
}


.offer-tabs {
  margin-bottom: 3rem;
}

/* .offer-tabs .d-flex {
  flex-wrap: wrap;
  justify-content: center;
} */
.offer-tabs .d-flex {
  justify-content: center;
  gap: 2.5rem;
}


@media (max-width: 767.98px) {

  @media (max-width: 767.98px) {
    .offer-tab {
      margin: 0 1rem;
      font-size: 0.9375rem;
    }
  }
  
  .offer-tabs .d-flex {
    justify-content: flex-start;
  }
}

.offer-tab {
  padding: 0;
  padding: 0.5rem 2rem;
  border: none;
  border-bottom: 2px solid var(--bs-borderlight-color);
  border-radius: 0;
  background-color: transparent;
  color: var(--bs-body-color); /* muted gray */
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}


.offer-tab:hover {
  color: var(--bs-heading-color);
}

.offer-tab.active {
  color: #3f70b7; /* green like your example */
  font-weight: 600;
  border-bottom: 2px solid #3f70b7;
}

.offer-content {
  margin-top: 8rem;
  padding: 0rem 2rem 2rem 2rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.offer-content .row > *{
  margin-top: 2rem;
}

.qr-section {
  position: relative;
}

.qr-section img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--bs-borderlight-color);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.offer-details h3 {
  font-size: 1.75rem;
  color: var(--bs-heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .offer-details h3 {
    font-size: 1.5rem;
  }
}

.offer-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bs-body-color);
  margin-bottom: 1.5rem;
}

.offer-details ul {
  margin-bottom: 1.5rem;
}

.offer-details ul li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--bs-body-color);
  margin-bottom: 0.75rem;
}

.offer-details ul li span:first-child {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0rem;
}


@media (max-width: 991.98px) {
  .offer-content .row {
    flex-direction: column;
  }
  
  .qr-section {
    margin-bottom: 2rem;
  }
}


/* Useful features */
.bg-light-green{
  background-color: rgba(63 112 183 / 6%);
}
.bg-purple-green{
  background-color: rgba(25 32 76 / 6%);
}
.box-none{
  box-shadow: none;
}
.landing-features .features-icon-wrapper .features-icon-box .features-icon-description {
  margin-block: 0;
  margin-inline: auto;
  max-inline-size: 19.25rem;
}
.border-light{
  border: 1px solid var(--bs-borderlight-color);
}
.border-white{
  border: 1px solid #ffffff;
}
.features-icon-wrapper svg {
  width: 70px;
  height:auto;
}

/* Real customers reviews */
.landing-reviews {
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
}
.landing-reviews .card{
  background-color: rgba(63 112 183 / 10%);
  padding: 20px;
  /* background: linear-gradient(
  -180deg,
  rgba(63, 112, 183, 0.1) 10%,
  rgba(25, 32, 76, 0.1) 10%); */
}
.landing-reviews .card .card-body{
  background-color: #ffffff;
  padding: 20px;
  border-radius: 0.375rem;
}
.landing-reviews .card .card-body .tabler-quote-filled{
  background-color: var(--bs-primary);
}
.landing-reviews .swiper-reviews-carousel .swiper-button-prev,
.landing-reviews .swiper-reviews-carousel .swiper-button-next {
  display: none;
}
.landing-reviews .swiper-reviews-carousel .swiper-slide {
  /* padding: 0.8125rem; */
  padding: 2rem 1rem;
  block-size: auto;
}
.landing-reviews .swiper-reviews-carousel .client-logo {
  block-size: 1.375rem;
  object-fit: contain;
}
.landing-reviews .swiper-logo-carousel {
  padding-block-end: 6.25rem;
}
.landing-reviews .swiper-logo-carousel .swiper {
  max-inline-size: 45rem;
}
.landing-reviews .swiper-logo-carousel .swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.landing-reviews .swiper-logo-carousel .swiper .client-logo {
  max-block-size: 2.5rem;
  max-inline-size: 95%;
  object-fit: contain;
}

/* our great team */
.landing-team .card,
.landing-team .card .team-image-box {
  border-start-end-radius: 1.25rem;
  border-start-start-radius: 5.625rem;
}
.landing-team .card .card-body {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.landing-team .team-image-box {
  block-size: 11.5625rem;
}
.landing-team .team-image-box .card-img-position {
  block-size: 15rem;
  max-inline-size: 100%;
  object-fit: cover;
  transform: translateX(-50%);
}
:dir(rtl) .landing-team .team-image-box .card-img-position {
  transform: translateX(50%) !important;
}
@media (max-width: 991.98px) {
  .landing-team .team-image-box .card-img-position {
    block-size: 13rem;
  }
}
@media (max-width: 575.98px) {
  .landing-team .team-image-box {
    block-size: 11rem;
  }
}

/* Pricing plans */
.landing-pricing {
  border-radius: 0rem;
}
.landing-pricing .pricing-plans-item {
  inset-block-end: -0.5rem;
  inset-inline-end: -56%;
}
@media (max-width: 767.98px) {
  .landing-pricing .pricing-plans-item {
    inset-block-end: 1rem;
    inset-inline-end: 0;
  }
}
.landing-pricing .pricing-list .badge.badge-center {
  block-size: 1rem;
  inline-size: 1rem;
}
.landing-pricing .price-yearly-toggle {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}
.landing-pricing .card .card-header,
.landing-pricing .card .card-body {
  padding: 2rem;
}
.landing-pricing .card .card-header {
  padding-block-start: 3rem;
}
.landing-pricing .card .card-header img{
  width: 60px
}
.landing-pricing .card .card-body {
  padding-block-start: 0;
}

/* FAQs */
.landing-faq {
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
}
.landing-faq .faq-image {
  inline-size: 100%;
  max-inline-size: 32rem;
}
.landing-faq.landing-hero {
  background: linear-gradient(
  360deg,
  rgba(25, 32, 76, 0.1) 20%,
  rgba(63, 112, 183, 0.1) 60%
);
  padding-block-start: 6.25rem;
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
}

.landing-cta .cta-title {
  font-size: 2.125rem;
}
@media (max-width: 767.98px) {
  .landing-cta .cta-title {
    font-size: 1.8rem;
  }
}

/* CTA */
.start-listing{
  --bs-cta-bg: linear-gradient(180deg, rgba(63 112 183 / 10%) 0%, rgba(63 112 183 / 20%) 40%, rgba(255 255 255 / 30%) 100%);  
  background: var(--bs-cta-bg);
  padding: 2rem;
}
.landing-cta {
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
}
.landing-inner-cta{
  --bs-cta-bg: linear-gradient(180deg, rgba(255 255 255 / 100%) 0%, rgba(255 255 255 / 100%) 10%, rgba(255 255 255 / 20%) 50%);  
  background: var(--bs-cta-bg);
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
}
.landing-reviews-btns .btn-icon{
  -webkit-transform: scale(1.5)!important;
  -moz-transform: scale(1.5)!important;
  -ms-transform: scale(1.5)!important;
  transform: scale(1.5)!important;
}


/* Contact US */
.landing-contact.landing-hero{
  --bs-hero-bg: linear-gradient(360deg, rgba(63 112 183 / 10%) 0%, rgba(63 112 183 / 20%) 40%, rgba(255 255 255 / 30%) 100%);
  background: var(--bs-hero-bg);
  border-radius: 0;
}
.landing-contact .text-heading {
  overflow-wrap: anywhere;
}
.landing-contact .contact-img-box {
  border-radius: 3.75rem var(--bs-border-radius) var(--bs-border-radius);
}
:dir(rtl) .landing-contact .contact-img-box {
  border-radius: var(--bs-border-radius) 3.75rem var(--bs-border-radius) var(--bs-border-radius);
}
.landing-contact .contact-img-box .contact-img {
  border-radius: 3.75rem var(--bs-border-radius) var(--bs-border-radius);
}
.landing-contact .contact-img-box .contact-border-img {
  inset-block-start: -2.5rem;
  inset-inline-start: -2.8125rem;
}

/* Dark style */
[data-bs-theme=dark] .landing-hero {
  --bs-hero-bg: #1e2130;
}

/*********************hero*********************************/
/* Hero Swiper Pagination - Minimal Pills */
.hero-dashboard-img .swiper-pagination {
  bottom: 0px; /* adjust if needed */
}

.hero-dashboard-img .swiper-pagination-bullet {
  width: 15px;
  height: 5px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 1;

  transition: 
    width 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.hero-dashboard-img .swiper-pagination-bullet-active {
  width: 25px;
  background-color: var(--bs-primary); /* match your theme */
  transform: scale(1.05);
}

/*********************breadcrumb*********************************/
/* Page Hero */
.page-hero {
  min-height: 400px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 32, 76, 0.4);
}

.page-hero-title {
  font-size: 48px;
  font-weight: 800;
}

.breadcrumb-light a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb-light .active {
  color: #fff;
  opacity: 0.75;
}







/*********************about-us*********************************/
.top-space {
  padding-block-start: 10.2rem;
  padding-block-end: 6rem;
}
.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/*********************contact-us*********************************/

.contact-left {
  position: sticky;
  top: 80px
}
/* .contact-right {
  background: var(--bs-hero-bg);
} */
 .form-wrapper.landing-hero{
  padding-block-start: 0rem;
  border-radius: 1.5rem;
 }
 .form-wrapper form{
  --bs-hero-bg: linear-gradient(360deg, rgba(63 112 183 / 10%) 20%, rgba(63 112 183 / 10%) 20%, rgba(255 255 255 / 60%) 100%);
    background: var(--bs-hero-bg);
  border-radius: 1.5rem;
 }
.start-listing-vision .landing-cta img{
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}