/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/**
* Template Name: OnePage
* Updated: Feb 21 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 
  width: 80%;
  margin: 0 auto;  height: 100vh;
  position: relative;
  background: -o-radial-gradient(circle, #E6F3FF 10%, #FFFFFF 70%);
  background: radial-gradient(circle, #E6F3FF 10%, #FFFFFF 70%);
  background-size: cover;
  position: relative;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
          animation: animate-preloader 1s linear infinite;
}


@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
         -o-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 5px 0;
  border: 1px solid #e6f2fb;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}

#header.header-scrolled {
  border-color: #fff;
  -webkit-box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
          box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
  margin: 0 auto;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: 0px 0px 10px 10px;

}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  color: #16507b;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #2487ce;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #2487ce;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
    body {
  width: 100%;
}
#header {
    width: 100%;
    border-radius: 0px;
}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #2487ce;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #2487ce;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block; 
}

/*--------------------------------------------------------------
# main-bg-img Section
--------------------------------------------------------------*/
#main-bg-img {
  width: 100%;

}

#main-bg-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#main-bg-img .container {
  padding-top: 90px;
}

#main-bg-img h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 72px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

#main-bg-img h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}
 p {
  color: #5e5e5e;

}

#main-bg-img .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

#main-bg-img .btn-get-started:hover {
  background: #3194db;
}

#main-bg-img .icon-boxes {
  margin-top: 100px;
}

#main-bg-img .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
          box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#main-bg-img .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#main-bg-img .icon-box .title a {
  color: #124265;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#main-bg-img .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#main-bg-img .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#main-bg-img .icon-box:hover {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}

#main-bg-img .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #main-bg-img {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #main-bg-img {
    height: auto;
  }
}

@media (max-width: 992px) {
  #main-bg-img {
    height: auto;
  }

  #main-bg-img h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #main-bg-img h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0 10px 0;
  overflow: hidden;
}

.section-bg {
  background-color: transparent;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title 
 {
  font-size: 20px ;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-bottom: 0;
  color: black;
}

.section-title p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-bottom: 3rem;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #124265;
}

.about-video .content ul {
  list-style: none;
  padding: 0;
}

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 24px;
  color: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-video .content p:last-child {
  margin-bottom: 0;
}

.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: -o-radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
  background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
      -ms-transform: translateX(-40%) translateY(-50%);
          transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
          animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
          animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
          animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
  border-left: 15px solid #2487ce;
  -webkit-transform: scale(20);
      -ms-transform: scale(20);
          transform: scale(20);
}

.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
      -ms-transform: translateX(-40%) translateY(-50%);
          transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
          animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}

.clients img:hover {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background: #fff;
  -webkit-box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
          box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #124265;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  -webkit-box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #2487ce;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #2487ce;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #2487ce;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  -webkit-box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
          box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
          box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team .member .social a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  color: #124265;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #2487ce;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  padding: 50px 0 30px 0;
}

.pricing .box {
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
}

.pricing .feature.box {
  -webkit-box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
          box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  padding: 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #124265;
}

.pricing .box h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box h5 {
  font-size: 16px;
  color: #2487ce;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h5 span {
  color: #bababa;
  font-size: 12px;
  font-weight: 300;
}

.pricing .box h5 sup {
  font-size: 14px;
  top: -3px;
  left: -3px;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #124265;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 10px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #2487ce;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #2487ce;
}

.pricing .box .btn-buy:hover {
  background: #2487ce;
  color: #fff;
}

.pricing .featured {
  background: #2487ce;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #2487ce;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #2487ce;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 13px;
  color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}

.contact .contact-us-form {
  width: 100%;
  background: #fff;
}

.contact .contact-us-form .form-group {
  padding-bottom: 8px;
}

.contact .contact-us-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-us-form .error-message br + br {
  margin-top: 25px;
}

.contact .contact-us-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-us-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .contact-us-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
          animation: animate-loading 1s linear infinite;
}

.contact .contact-us-form input,
.contact .contact-us-form textarea {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .contact-us-form input:focus,
.contact .contact-us-form textarea:focus {
  border-color: #2487ce;
}

.contact .contact-us-form input {
  height: 44px;
}

.contact .contact-us-form textarea {
  padding: 10px 12px;
}

.contact .contact-us-form button[type="submit"] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-us-form button[type="submit"]:hover {
  background: #3194db;
}

@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  -webkit-box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
          box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3194db;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}

#footer p {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}


/* Company Logo Carousel - START */
.infinite-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 2rem;
}

.infinite-slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  width: calc(200%); 
}

.infinite-slide img {
  height: 70px;
  width: auto;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Scroll Left (Line 1) */
.track-left {
  -webkit-animation: scroll-left 35s linear infinite;
          animation: scroll-left 35s linear infinite;
}

/* Scroll Right (Line 2) */
.track-right {
  -webkit-animation: scroll-right 35s linear infinite;
          animation: scroll-right 35s linear infinite;
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
}

@keyframes scroll-left {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } 
}

@-webkit-keyframes scroll-right {
  0% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
  100% { -webkit-transform: translateX(0); transform: translateX(0); }
}

@keyframes scroll-right {
  0% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
  100% { -webkit-transform: translateX(0); transform: translateX(0); }
}

.infinite-slider + .infinite-slider {
  margin-top: 3vw; 
}

@media (max-width: 768px) {
  .infinite-slider + .infinite-slider {
    margin-top: 1.2rem; 
  }
  .infinite-slide img {
  height: 40px;
  }
}

@media (min-width: 1200px) {
  .infinite-slider + .infinite-slider {
    margin-top: 2rem; 
  }
}

.rating-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
            align-items: center; 
    padding: 20px 0 0 0;
    border-radius: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; 
    font-family: sans-serif;
}

.profiles-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; 
    margin-right: 20px;
}

.profile-img {
    width: 45px; 
    height: 45px;
    border-radius: 50%; 
    -o-object-fit: cover; 
       object-fit: cover; 
    border: 2px solid white; 
    position: absolute; 
    top: 0;
}

.first-profile {
    left: 0;
    z-index: 3; 
}

.second-profile {
    left: 30px;
    z-index: 2;
}

.third-profile {
    left: 60px; 
    z-index: 1;
}

.profiles-container {
    width: 6rem;
    height: 50px;
}


.stars-and-score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.star {
    color: #ffc107; 
    font-size: 20px;
    margin-right: 2px;
}

.score {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

.review-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 0;
    margin-bottom: 0;
}
/* Company Logo Carousel - END */
/* Main container for the new section (using the semantic <section> tag) */
.comparison-main-section {
    max-width: 1200px; /* Limits content width */
    margin: 0px auto; /* Centers the block horizontally, adds top/bottom margins */
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Introduction Section (Title and subtitle) */
.fintech-intro-sub {
    padding: 50px 30px ;
    text-align: center;
}

.fintech-intro-sub h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
    font-family: "Poppins", sans-serif;

}

.fintech-intro-sub p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
}

/* Flexbox for Before/After columns */
.comparison-section-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem; /* Space between the two boxes */
    text-align: left;
    padding-bottom: 50px;
}

.column {
    width: 50%; 
    padding: 30px;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 20px rgba(100, 149, 237, 0.15);
            box-shadow: 0 4px 20px rgba(100, 149, 237, 0.15);
    background:  #FFFF;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;



}



.column h2 {
    font-weight: 700;
    margin-bottom: 30px;
  }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem; 
  margin-bottom: 0.75rem; 
}

.feature-list li i {
  -ms-flex-negative: 0;
      flex-shrink: 0; 
  line-height: 1.2;
}


.box-before .feature-item i {
    color: #e74c3c; 
    font-size: 1.5rem;
    margin-top: 4px; 
}


.box-after .feature-item i {
    color: #2ecc71; 
    font-size: 1.5rem;
    margin-top: 4px;
}
.feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
 gap: 0.75rem; 
    margin-bottom: 1rem;}

.feature-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    padding-top: 2px;
}

/* Base style for the bullet/icon */
.bullet {
    font-size: 1.2rem;
    margin-right: 15px;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Style for the Red X icon (Before) */
.red-x {
    color: #dc3545; /* Red icon color */
    border: 2px solid #dc3545; /* Red border */
}

/* Style for the Green Check icon (After) */
.green-check {
    color: #28a745; /* Green icon color */
    border: 2px solid #28a745; /* Green border */
}

@media (max-width: 900px) {
    .fintech-intro-sub h1 {
        font-size: 2rem;
    }

    .comparison-section-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; 
        gap: 30px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .column {
        width: 90%;
        max-width: none;
        padding: 20px;
    }
}



.tabs-interface-container-bs {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
}

.nav-tabs-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  border-bottom: none;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.nav-tabs::-webkit-scrollbar {
  display: none; 
}

.nav-tabs .nav-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3); 
  text-align: center;
  margin: 0;
}

.nav-tabs .nav-link {
  color: #555;
  border: none;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  background: transparent;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.nav-tabs .nav-link:hover {
  color: rgb(36, 135, 206);
;
}

.nav-tabs .nav-link.active {
  color: rgb(36, 135, 206);
;
  border-color: rgb(36, 135, 206);
;
  font-weight: 600;
  background-color: transparent !important;
}





.tab-content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 0px 0px 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    background: white;
    border: 1px solid #87CEFA; 
    height: 400px;
}

.main-content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 400px;
}

.text-side {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 40px;
}

.image-side {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f8f8f8; 
    border-radius: 10px;
        margin-right: 30px;
}



.image-side img {
    width: 100%;
    height: 100%;
}

.section-title-small {
    color: black;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-side h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.description-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.learn-more-button {
    padding: 10px 30px;
    border: 1px solid #7A33FF;
    border-radius: 8px;
    background-color: transparent;
    color: #7A33FF;
    font-weight: 600;
    cursor: pointer;
}





.pricing-card {
    border: none;
    border-radius: 1rem; 
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    -webkit-transition: -webkit-transform 0.3s ease-in-out; 
    transition: -webkit-transform 0.3s ease-in-out; 
    -o-transition: transform 0.3s ease-in-out; 
    transition: transform 0.3s ease-in-out; 
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
   background:white;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
}

.pricing-card:hover {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}

.price-large {
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 1;
}

.price-large .unit {
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: top;
    margin-left: 5px;
    color: #6c757d;
}
.pricing .pricing-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%; 
  -webkit-transition: all 0.3s ease; 
  -o-transition: all 0.3s ease; 
  transition: all 0.3s ease;
}

.pricing .price-content {
  min-height: 220px; 
  -webkit-transition: opacity 0.3s ease; 
  -o-transition: opacity 0.3s ease; 
  transition: opacity 0.3s ease;
}

.pricing .price-content.fade {
  opacity: 0.3;
}


.card-body hr {
    border: 1px solid #aaaaaa;
    margin-bottom: 0;
}

.feature-list .bi-check-circle-fill {
    color: #007bff;
    margin-right: 0.5rem;
}


.btn-custom-light {
    background-color: #f3f0ff; 
  color: #007bff;
    border: 1px solid #007bff; 
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.btn-custom-light:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.main-title {
    color: #343a40;
    font-weight: 700;
}

.menu-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; 
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;          
  gap: 0;                          
  margin-bottom: 15px;
  padding: 6px;                   
}

.menu-tabs label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;                         
  text-align: center;
  border: none;
  border-right: 1px solid #b5daff; 
  padding: 8px 0;
  cursor: pointer;
  font-weight: 500;
  color: #007bff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: white;
}

.menu-tabs label:last-child {
  border-right: none;
}

input[type="radio"] {
  display: none;
}

input#ent-tab1:checked ~ .menu-tabs label[for="ent-tab1"],
input#ent-tab2:checked ~ .menu-tabs label[for="ent-tab2"],
input#ent-tab3:checked ~ .menu-tabs label[for="ent-tab3"] {
  background: transparent;
  color: #6f42c1;
  border: 1px solid white;
}



.tab-content .content {
  display: none;
}



/* Enterprise plan */
#ent-tab1:checked ~ .tab-content #ent-content1,
#ent-tab2:checked ~ .tab-content #ent-content2,
#ent-tab3:checked ~ .tab-content #ent-content3 {
  display: block;
}



.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
    color: white; 
}

.icon-rocket {
    background-color: #f3f0ff; 
    color: #8c73e8; 
}

.icon-pro {
    background: -o-linear-gradient(315deg, #7b68ee, #d8bfd8);
    background: linear-gradient(135deg, #7b68ee, #d8bfd8); 
    color: white;
}

.icon-enterprise {
    background-color: #e6f7ff; 
    color: #4da6ff; 
}
.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;       
  -webkit-box-pack: start !important;       
      -ms-flex-pack: start !important;       
          justify-content: start !important;    
  gap: 10px;                  
  border-bottom: none;         
  background-color: transparent; 
}
.icon-box i {
  font-size: 1.8rem;
}

.tab-content .price-content {
    display: none;
}

input[type="radio"]:checked ~ .tab-content .price-content {
    display: none; 
}


.menu-tabs input[type="radio"]:checked + label {
    background: transparent;
    color: #6f42c1;
    border: 1px solid white;
}
.dashboard-columns-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr; 
  gap: 10px;
  max-width: 100%;
  margin: 30px auto;
  padding: 10px;
  background: -o-linear-gradient(315deg, #e0f7fa, #c5cae9);
  background: linear-gradient(135deg, #e0f7fa, #c5cae9);
  border-radius: 12px;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
}

.colonne-gauche {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 10px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.colonne-droite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-screenshot img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.img-card{
  border-radius: 8px;
}


.card {
    color: var(--text-dark, #333);
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    -o-transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.card img {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.earnings-line-chart-svg-img{
      width: 100% !important;

}



.connecteam-features {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.features-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  margin-top: 40px;
}

/* Cartes */
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-align: left;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  
}
.feature-item {
  position: relative;
  padding-left: 25px; 
  margin-bottom: 8px;
}

#about .feature-item::before {
  content: "•"; 
  position: absolute;
  left: 0;
  top: 0;
  color: #555;
  font-weight: bold;
}

#about .feature-item {
   position: relative;
  padding-left: 25px; 
  margin-bottom: 8px;
}

.feature-card h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #555;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; 
}

@media (max-width: 1200px) {
  .features-container {
    display: -ms-grid; 
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .features-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .features-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; 
    justify-items: center;
    gap: 15px;
  }
}

.illustration {
    min-height: 125px; 
    background-color: rgba(0, 0, 0, 0.03); 
    border-radius: 10px;
    margin-top: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.feature-card .illustration img {
  width: 80px;
  height: 80px;
  margin-top: 15px;
  opacity: 0.9;
}


.faster-execution .illustration {
    background: -o-radial-gradient(circle, #ffe0b2 10%, #fff8f0 70%);
    background: radial-gradient(circle, #ffe0b2 10%, #fff8f0 70%); 
}
.consistent-operations .illustration {
    background: -o-linear-gradient(315deg, #d0e8d9, #f0fff4);
    background: linear-gradient(135deg, #d0e8d9, #f0fff4); 
}
.real-time-visibility .illustration {
    background: -o-radial-gradient(center, circle, #e6cff7 10%, #faf0ff 70%);
    background: radial-gradient(circle at center, #e6cff7 10%, #faf0ff 70%); 
}
.scalable-control .illustration {
    background: -webkit-gradient(linear, left bottom, left top, from(#d0e0ff), to(#f0f7ff));
    background: -o-linear-gradient(bottom, #d0e0ff, #f0f7ff);
    background: linear-gradient(to top, #d0e0ff, #f0f7ff); 
}


/* === Testimonial Section === */
.testimonial-card {
  max-height: 100%;
  max-width: 100%;
  border: none;
  overflow: hidden;
}

.testimonial .carousel-inner {
  padding: 20px 50px;
}

.testimonial img {
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .testimonial-card .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
            gap: 8px;
  }

  .testimonial-card img {
    border-radius: 8px 8px 0 0;
    height: auto;
  }

  .testimonial-card .card-body {
    padding: 1.5rem;
  }
}

/* === Logos sous le carrousel === */
.client-logos-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 0 40px;
}

.client-logo-item {
  background-color:  #fff;
  border-radius:12px;
  width: 150px;
  padding: 5px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Remet en couleur au survol */
.client-logo-item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
   -webkit-transform: scale(1.05);
       -ms-transform: scale(1.05);
           transform: scale(1.05); 
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
   -webkit-filter: grayscale(100%);
           filter: grayscale(100%);
  -webkit-transition: opacity 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, -webkit-filter 0.4s ease;
  -o-transition: filter 0.4s ease, opacity 0.4s ease;
  transition: filter 0.4s ease, opacity 0.4s ease;
  transition: filter 0.4s ease, opacity 0.4s ease, -webkit-filter 0.4s ease;
  opacity: 0.8;
}



.client-logo-item.active img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/* === Card Title with Gradient === */
.card-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* === Author Section === */
.author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.client-logo-item-carousel {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client-logo-item-carousel img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.author-text {
margin-bottom: 10px;}

.author-text .card-title,
.author-text .author-role {
  display: inline;
  margin: 0;
  font-size: 16px;
}


.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  -webkit-filter: invert(0.4);
          filter: invert(0.4); 
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-item img {
  width: 100%;
  height: 300px;
}
.carousel-dark{
   border-radius: 8px;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    background: white;
    border: 1px solid #87CEFA; 
  }
  
  .row-contact{
    background: white;
    padding: 2rem;
    border: 1px solid #87CEFA;
    border-radius: 8px;
  }

  .img-carousel{
    width: 33%;
  }
  .info-carousel{
    width: 67%;
  }
  .ai-addon-banner {
      background: -o-linear-gradient(315deg, #e3f2fd, #f3e5f5);
      background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
      border-radius: 10px;
      padding: 12px 20px;
      margin-top: 30px;
      -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
              box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      font-size: 0.95rem;
  }

  .ai-addon-banner p {
      margin: 0;
      color: #333;
  }

  .ai-addon-banner .text-primary {
      color: #007bff;
  }

  .ai-addon-banner strong {
      color: #222;
  }/* Couleurs Clés */
.pricing-section {
    /* Maintient l'espacement et le centrage si ce n'est pas déjà dans le conteneur parent */
    padding: 50px 20px;
    background-color: #f4f6fa; /* Fond clair */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

/* -------------------- Mise en page des cartes -------------------- */
.pricing-grid-free {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 2fr;
    grid-template-columns: 1fr 2fr; 
    gap: 20px;
    width: 100%;
}
.work-team{
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.pricing-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 20px 1fr;
    grid-template-columns: 2fr 1fr; 
    gap: 20px;
    width: 100%;
}
.text-white {
  color: #fff;
}
.ai-builder-addon {
  -webkit-animation: popVibrate 3.5s infinite ease-in-out;
          animation: popVibrate 3.5s infinite ease-in-out;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

/* Animation plus subtile et raffinée */
@-webkit-keyframes popVibrate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  /* saut initial */
  5% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }

  /* vibration légère (moins d’angle et moins longue) */
  6%, 8%, 10%, 12%, 14%, 16% {
    -webkit-transform: translateY(-8px) rotate(-0.8deg);
            transform: translateY(-8px) rotate(-0.8deg);
  }
  7%, 9%, 11%, 13%, 15%, 17% {
    -webkit-transform: translateY(-8px) rotate(0.8deg);
            transform: translateY(-8px) rotate(0.8deg);
  }

  /* retour doux à la position initiale */
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  /* pause avant le prochain cycle */
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes popVibrate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  /* saut initial */
  5% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }

  /* vibration légère (moins d’angle et moins longue) */
  6%, 8%, 10%, 12%, 14%, 16% {
    -webkit-transform: translateY(-8px) rotate(-0.8deg);
            transform: translateY(-8px) rotate(-0.8deg);
  }
  7%, 9%, 11%, 13%, 15%, 17% {
    -webkit-transform: translateY(-8px) rotate(0.8deg);
            transform: translateY(-8px) rotate(0.8deg);
  }

  /* retour doux à la position initiale */
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  /* pause avant le prochain cycle */
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.pricing-card {
    border-radius: 8px;
    padding: 30px 40px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
}


/* -------------------- Styles Carte 1 (Small Business Plan - $0) -------------------- */

.small-business-plan {
background-color: white;
    color: #233156; /* Texte clair */
}

.small-business-plan .card-pre-title {
    font-size: 1.1em;
    font-weight: 400;
    opacity: 0.8;
}

.small-business-plan .card-title {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.small-business-plan .card-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: center;
    gap: 30px;
}

.small-business-plan .card-details {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
}

.small-business-plan .card-description {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
    max-width: 450px;
}
.coming-soon-badge-static {
    font-weight: bold;
    color: #00bcd4; 
    background-color: #333; 
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.8em; 
    margin-left: 8px;
}

.small-business-plan .card-pricing {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: center;
}
.footer-card-pricing{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.small-business-plan .price-value {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1;
    color: #233156;
    margin-bottom: 5px;
}

.small-business-plan .price-subtitle {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}


/* -------------------- Styles Nouvelle Carte 2 (AI Builder Add-on - $8) -------------------- */

.ai-builder-addon {
    background-color: #007bff; /* Bleu Primaire */
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ai-builder-addon .card-title {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.card-addon-content {
    /* Le conteneur du contenu s'étend pour que le bouton soit en bas */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; 
    -webkit-box-pack: justify; 
        -ms-flex-pack: justify; 
            justify-content: space-between;
}

.ai-builder-addon .card-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.addon-price-block {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5px;
}

.addon-price {
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
    color: #ffffff; 
}

.addon-price-details {
    font-size: 1.2em;
    font-weight: 500;
    opacity: 0.9;
}

.promo-icon {
  font-size: 2.5rem;
  color: var(--primary);
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
@-webkit-keyframes float {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
}
@keyframes float {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
}


/* -------------------- Styles Boutons Communs -------------------- */

.join-button {
    background-color: #f4f6fa;
    color: #233156;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.join-button:hover {
    background-color: #e0e0e0;
}

.addon-button {
    width: 100%; /* Bouton pleine largeur sur l'add-on */
    padding: 12px 0;
}




  @media (max-width: 576px) {


.dashboard-container{
  display: none;
}
.infinite-slide-track {
    gap: 2rem;
}
 .h2  {
font-size: 20px;
}

.fintech-intro-sub
 {
    padding: 5px 5px;
}
.fintech-intro-sub p {
    font-size: 1rem;
   
}
.column h2 {
    margin-bottom: 15px;
}
    .column {
        width: 100%;
        padding: 10px;
    }
    .tabs-interface-container-bs
 {
    margin-top: 20px;
  }
  .tab-content-box {
    height: auto;
}
    
.main-content-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .mt-4 {
    margin-top: 0.5rem !important;
    
}

 .nav-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }


   .nav-tabs .nav-link {
    font-size: 0.7rem;
    padding: 0.5rem;
    text-align: center;
    white-space: nowrap;
  }
.text-side h1 {
    font-size: 1.5rem;
    margin: 0 0 14px 0;
}
   .text-side {
        padding-right: 0;
    }
.description-text {
    font-size: 1rem;
    margin-bottom: 20px;
}
.image-side {

    margin-right: 0;
}
.tab-content-box {
    padding:10px;
}
section {
    padding: 0; 
}
  .features-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; 
        -webkit-box-pack: center; 
            -ms-flex-pack: center; 
                justify-content: center;     
        gap: 1rem;                 
    }
    .testimonial .carousel-inner {
    padding: 10px;
}
.img-carousel {
    width: 100%;
    padding: 10px;
}
.info-carousel {
    width: 100%;
}
.author-info {
     margin-bottom: 1.5rem;
         -webkit-box-pack: center;
             -ms-flex-pack: center;
                 justify-content: center;
             gap: 0px;
    margin-top: 0;

}
    .testimonial-card .card-body {
        padding: 0;
    }
    .client-logos-row {
   
    padding: 8px;
}
.client-logo-item {
    width: 90px;
}
.comparison-section-flex
 {
    padding-bottom: 0;
}
.lead{
  margin-bottom: 0;
}
.section-bg {
    margin-top: 0;
}
#main-bg-img .btn-get-started {
    padding: 11px 20px;
    margin-top: 18px;
}
.lead {
    font-size: 1.1rem;
    font-weight: 300;
}
    #main-bg-img h1 {
        font-size: 24px;
        line-height: 33px;
    }
    .h2{
     font-size: 1.5rem;
    }

.feature-item {
    padding-left: 0;
}
.back-to-top.active {
    margin-bottom: 38px;
}
#footer .social-links{
  margin-bottom: 10px;
}
.row-contact {
    padding: 1rem;
  
}
  .pricing-grid-free{
        display: flex;

  }
  .img-card {
    display: none;

  }
  .pricing-grid {
    display: flex;
    flex-direction: column;

}

}