html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--primary-text-color);
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.main-container {
  margin: 0 auto;
}

.content-container {
  margin: 0 auto;
  max-width: 90%;
  margin-top: 110px;
}

.services-card-set {
  gap: 10px;
  margin: 0 15px;
  overflow: hidden;
  min-height: 500px;
}

.feature-card-body {
  z-index: 1;
  position: absolute;
}

.service-container {
  width: 250px;
  perspective: 1000px;
  padding: 0;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.service-container:hover {
  transform: scale(1.01);
}

.services-flip-card {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: rotateY(0deg);
}

.back {
  background-color: var(--primary-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: rotateY(180deg);
  animation: pulse 2s ease 2s 1 normal forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.service-container:hover .front {
  opacity: 0;
}

.service-container:hover .back {
  opacity: 1;
  transform: rotateY(0deg);
}

/* .service-container:hover .back .full-text {
  animation: pulse 1.5s ease-in-out infinite;
} */

.full-text {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  color: #333;
}

#services-container {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#services-container::-webkit-scrollbar {
  display: none;
}

.more-features-container,
.services-feature-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  padding-top: 100px;
}

/* .more-feature-card {
	flex: 0 0 33.33%;
	padding: 0;
	position: relative;
} */

.more-feature-card {
  padding: 0;
  height: 300px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.more-feature-card:first-child {
  transform: translateY(0);
}

/* .more-feature-card:nth-child(2), */
.more-feature-card.middle {
  transform: translateY(-60px);
}

.more-feature-card:nth-child(3) {
  transform: translateY(0);
}

.badge-icon {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  color: #007bff;
  border-radius: 50%;
  padding: 5px;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-feature-text {
  color: var(--text-color-light);
  line-height: normal;
  animation: pulse 1.5s ease-in-out infinite;
}

.features-wrapper {
  position: relative;
  overflow: hidden;
}

.content-header {
  background-color: #fff;
  padding: 16px 20px;
  margin-bottom: 5px;
}

.accordion-item {
  margin-bottom: 5px;
}

.scroll-btn {
  /* background-color: var(--primary-block-background);
	color: var(--secondary-text-color); */
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
}

.scroll-btn:disabled {
  background: var(--primary-disable-background);
  color: var(--secondary-text-color);
  cursor: default;
}

.banner-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  /* max-height: 650px; */
}

.left-container,
.right-container {
  padding: 0 12px;
}

.banner-image {
  border-radius: 10px;
}

/* Video CSS */
.welcome-video-wall-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
  margin-top: 100px;
}

/* Video */
.welcome-video-content-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.welcome-video-video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover; /* Ensure video covers the container */
  transition: transform 0.3s ease;
}

/* Play Button Container Inside the Video */
.welcome-video-controls-container {
  position: absolute;
  bottom: 2%;
  right: 5%;
  transform: matrix(1, 0, 0, 1, 0, -100);
  transition: transform 0.3s ease;
  pointer-events: all;
  /* height: 100%; */
}

/* Play Button Styles */
.welcome-video-control-item {
  width: 40px; /* Fixed size */
  height: 40px; /* Fixed size */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-image: linear-gradient(270deg, #512763 0%, #00807e 100%);
  border: none;
}

.welcome-video-control-item:hover {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.8);
}

/* Video CSS */

.home-banner {
  display: block;
  width: 100%;
  border-radius: 20px;
  height: 580px;
  position: relative;
}

.home-banner-image {
  position: absolute;
  top: 0;
  left: 0;
}

.background-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  border-radius: 20px;
  text-align: start;
}

.home-banner-content {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* .home-banner-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
} */

.placeholder-container {
  width: 100px;
  height: 100px;
  position: relative;
  top: 50px;
  left: -20px;
  padding: 7px;
}

.pricing-option-tabs {
  width: 230px;
  margin: 0 auto;
  border: none;
  padding: 0;
  text-align: center;
  display: flex;
  border-radius: 30px;
  background-color: #909090;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-tab-item {
  width: 115px;
  height: 40px;
  background-color: transparent;
  color: var(--text-color-light);
  border: 1px solid var(--text-color-grey);
  border-radius: 0;
  display: block;
  padding: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-tab-item.active {
  background: linear-gradient(270deg, #512763 0%, #00807e 100%);
}

.pricing-tab-item:hover {
  color: var(--text-color-light);
}

/* .monthly-tab-item {
	margin-left: 25px;
	background-color: var(--primary-disable-background);
	border-radius: 25px;
	border: none;
}

.yearly-tab-item {
	position: absolute;
	margin-left: -105px;
	background-color: var(--primary-disable-background);
	border-radius: 25px;
	border: none;
} */

.price-list {
  position: relative;
  height: auto;
}

.discount-ribbon {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-color: var(--secondary-text-color);
  color: white;
  padding: 5px 10px;
  z-index: 1;
  border-radius: 10px;
}

.pricing-card {
  border-radius: 40px;
  /* border: 10px solid #77B5B6; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
}

.plan_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.plan_footer_btn {
  height: 40px;
  font-size: 14px;
  /* color: var(--secondary-text-color); */
  border: 1px solid var(--primary-text-color);
  border-radius: 40px;
  background: transparent;
}

.pricing-banner,
.service-banner {
  min-height: 300px;
  width: 100%;
}

.pricing-banner-tile1,
.service-banner-tile1 {
  height: 200px;
}

.pricing-banner-tile1-cube,
.service-banner-tile1-cube {
  background-color: #0d817e;
  width: 120px;
  height: 120px;
  margin: 2px;
}

.pricing-banner-tile2,
.service-banner-tile2 {
  height: 200px;
}

.pricing-banner-tile3 {
  height: 350px;
  width: 350px;
  /* z-index: -1; */
}

#about-us-carousel {
  max-height: 400px;
}

.about-us-carousel-card {
  width: 420px;
  height: 150px;
}

.service-carousel-img {
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
}

.pricing-banner-tile3 img,
.service-banner-tile3 img {
  object-fit: cover;
}

.service-banner-tile4 {
  /* height: 200px; */
  margin-left: -30%;
  align-content: center;
}

.services-banner-left,
.services-banner-right {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 600px;
  position: relative;
}

.services-banner-left img,
.services-banner-right img {
  height: 100%;
  object-fit: cover;
}

.services-banner-text {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .services-banner-text {
  opacity: 1;
  animation: pulse 3s ease-in-out infinite;
}

.image-container:hover img {
  opacity: 0.6;
}

.badges-section {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  border: 1px solid #000;
}

.badges-section-head-img {
  width: 25%;
  position: relative;
  top: -30px;
  margin: 0 auto;
}

.badges-icon {
  width: 35%;
}

.pricing-page-circle-icon {
  height: 35px;
  width: 35px;
}

.slider {
  overflow: hidden;
  width: 100%; /* Set the width based on your design */
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.slide-image {
  display: inline-block;
  width: 100px;
  max-width: 150px;
  height: 100px;
  padding: 10px;
}

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

/* .slide-image img {
  height: 100%;
  width: 100%;
  max-width: auto;
} */

.brand-icons {
  width: 75px;
  height: 75px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  /* max-width: 1024px; */
  margin: 0 auto;
}

.footer-container {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.void-social-container {
  display: flex;
  justify-content: flex-end;
}

.social-icons {
  margin-right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.footer-terms-container {
  /* width: 20%; */
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--primary-text-color);
  margin-top: 0;
}

.carousel-inner {
  margin: 0 auto;
  max-width: 85%;
}

.carousel-item {
  min-height: 100px;
}

.carousel-control-prev,
.carousel-control-next {
  text-decoration: none;
  opacity: 1;
}

/* .carousel-control-prev:hover,
.carousel-control-next:hover {
	color: var(--secondary-text-color);
} */

/* .carousel-control-next {
	left: auto;
	border-radius: 25px 0 0 25px;
} */

.banner-inner-carousel-dots {
  justify-content: end;
  display: flex;
  position: relative;
  z-index: 3;
  top: 150px;
  width: 230px;
}

.modal-header {
  position: absolute;
  top: -20px;
  right: -20px;
  border: 0;
}

.modal-header .btn-close {
  opacity: 1;
}

.carousel-car {
  margin-top: 100px;
  margin-bottom: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.steps-dot {
  font-size: 15px;
}

.steps-carousel {
  width: 150px;
  height: 100px;
  padding: 15px;
  border: 1px solid #0d817e;
  background-color: #fafafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: left;
  list-style: none;
  margin-right: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-style: preserve-3d;
  transition: all 0.5s ease;
}
.steps-carousel h4 {
  font-size: 8px;
}
.steps-carousel p {
  font-size: 6px;
}

.steps-carousel:last-child {
  margin-right: 0;
}
[data-position="1"] {
  transform: scale(2) translate3d(40%, 10px, 0px);
  z-index: 3;
}
[data-position="2"] {
  transform: scale(2) translate3d(45%, 0px, 0px);
  z-index: 2;
}
[data-position="3"] {
  transform: scale(2) translate3d(50%, -10px, 0px);
  z-index: 1;
}

@keyframes crossfade {
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0.7;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.clients-review-container {
  display: inline-flex;
  max-width: 90%;
}

.clients-review-container .card-body {
  /* border: 1px solid #CACED1; */
  border-radius: 20px;
  /* min-height: 320px; */
}

@media (max-width: 991px) {
  .clients-review-container .card-body {
    height: auto;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .main-container {
    overflow: hidden;
  }
  .carousel-car {
    margin-top: 80px;
  }
  .services-feature-carousel {
    padding-top: 0;
    overflow-x: scroll;
  }
  .about-us-carousel-card {
    height: 90px;
  }
  .more-features-container {
    padding-top: 30px;
    overflow-x: scroll;
  }

  .more-features-container::-webkit-scrollbar {
    display: none;
  }

  .more-feature-card {
    min-width: 100%;
  }

  .more-feature-card:nth-child(2),
  .more-feature-card.middle {
    transform: translateY(0);
  }

  [data-position="1"] {
    transform: scale(2) translate3d(40%, 10px, 0px);
    z-index: 3;
  }
  [data-position="2"] {
    transform: scale(2) translate3d(45%, 0px, 0px);
    z-index: 2;
  }
  [data-position="3"] {
    transform: scale(2) translate3d(50%, -10px, 0px);
    z-index: 1;
  }

  .service-banner-tile4 {
    margin-left: 0;
  }

  .banner-inner-carousel-dots {
    top: 110px;
    width: 190px;
  }

  .brand-icons {
    width: 40px;
    height: 40px;
  }

  .content-container {
    max-width: 100%;
    margin-top: 0;
  }

  .about-us-carousel-card {
    width: 75%;
  }

  .steps-carousel {
    width: 130px;
    height: 75px;
    padding: 5px;
  }

  .footer-container {
    text-align: start;
    font-size: 14px;
  }

  .footer-disclaimer {
    font-size: 14px;
  }

  .footer-terms-container {
    margin-top: 15px !important;
  }

  .footer-social-icons {
    margin-bottom: 15px !important;
  }

  .carousel-inner {
    max-width: 100%;
  }
  .carousel-item {
    min-height: 100px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }
  .carousel-control-next {
    left: auto;
    border-radius: 25px 0 0 25px;
  }
  .welcome-video-wall-container {
    height: 100%;
  }
  .welcome-video-controls-container {
    transform: matrix(1, 0, 0, 1, 0, -10);
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-1100%);
    }
  }
}

@media (min-width: 992px) {
  .left-container {
    flex: 0 0 50%;
  }

  .footer-container li {
    margin-right: 15px;
  }

  .footer-terms-container {
    width: 218px;
  }

  .desk-min-width-475 {
    min-width: 475px;
  }
  .brand-header {
    position: relative;
    bottom: -25px;
    margin: 0;
    padding: 0 15px;
    background-color: #fff;
  }
  .pricing-banner-tile4 {
    /* width: 50%; */
    height: 200px;
    margin-right: -20%;
    position: absolute;
    z-index: 1;
    align-content: center;
  }
  .about_us_banner_top {
    width: 300px;
    position: relative;
    left: 40%;
    /* bottom: -50px; */
    padding: 7px;
    z-index: 1;
    background-color: var(--primary-background-color);
  }
  .about_us_banner-bottom {
    position: relative;
    top: -50px;
  }
}

@media (min-width: 1920px) {
  .desk-min-width-475 {
    min-width: 890px;
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
}
