:root {
  /* brand */
  --akeed-primary: #0D468A;
  --akeed-primary-light: #E0F2FE;
  --akeed-primary-dark: #0d468a;
  --akeed-green: #8bc73a;

  /* neutrals */
  --akeed-white: #ffffff;
  --akeed-light: #f0f9ff;
  --akeed-grey-100: #e9f3ff;
  --akeed-grey-500: #556275;
  --akeed-grey-900: #181d27;

  /* accents */
  --akeed-purple: #cab9fe;
  --akeed-green-light: #e2f3b6;
  --akeed-blue-light: #dcf1ff;
}

.btn-primary {
  --bs-btn-bg: var(--akeed-primary);
  --bs-btn-border-color: var(--akeed-primary);
}

html {
  overflow-x: hidden;
}

.akeed-textt {
  color: var(--colors-text-text-tertiary-600, #535862);
  font-family: var(--Font-family-font-family-body, Inter), sans-serif;
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-md, 24px);
}

.akeed-play-logo {
  width: 100px;
  height: 29px;
  aspect-ratio: 100/29;
  background: url('images/Google_Play-Logo.svg') lightgray center / contain no-repeat;
  display: inline-block;
}

@media (max-width: 576px) {
  .akeed-text-play {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.akeed-text {
  color: var(--akeed-blue, #0D468A);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.app-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #062851;
  padding: 8px 16px 16px 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.app-banner.show {
  display: block;
}

.app-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-banner-logo {
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  aspect-ratio: 10/11;
}

.app-banner-logo img {
  height: 35px;
  width: 35px;
  object-fit: contain;
}

.app-banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-title {
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.app-banner-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-banner {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: #0D468A;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: Inter, sans-serif;
}

.btn-banner:hover {
  background: #1558b3;
}

.app-banner img {
  display: block;
}















.video-play-btn {
  width: 150px;
  height: 150px;
  background: url("../images/VideoIcon-Default.svg") no-repeat center center / contain;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.4s ease, background-image 0.3s ease;
}


.video-play-btn:hover {
  background-image: url("../images/VideoIcon-Mobile.png");
  transform: translate(-50%, -50%) scale(1.3);
}



/* Responsive pour tablette */
@media (max-width: 992px) {
   .video-play-btn {
    width: 130px;
    height: 130px;
    background-image: url("../images/VideoIcon-Mobile.png");
    top: 42%;
    left: 85%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
    transition: none;
  }
   .hero-section .box img {
    width: 600px;
    right: 10%;
    max-width: 80%;
    transform: translateX(-10%);
  }
  .video-play-btn {
    width: 170px;
    height: 170px;
    bottom: 12%;
    right: 12%;
  }

}



/* Petit mobile */
@media (max-width: 576px) {
  .video-play-btn {
    width: 130px;
    height: 130px;
    background-image: url("../images/VideoIcon-Mobile.png");
    top: 42%;
    left: 85%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
    transition: none;
  }

  
  .video-play-btn:hover,
  .video-play-btn:focus,
  .video-play-btn:active {
    transform: translate(-50%, -50%) !important; /* Maintient la position */
    opacity: 1 !important; /* Garde l'opacité à 100% */
    background-image: url("../images/VideoIcon-Mobile.png") !important; /* Même image */
  }
  
  .play-icon {
    max-width: none !important;
    width: 180% !important;
    /* Désactive les transitions pour éviter tout effet */
    transition: none !important;
  }
  
  .play-icon:hover {
    transform: none !important;
  }
}






#videoModal .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  max-width: none;
}

#videoModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  width: auto;
}

.video-wrapper {
  width: 900px;
  max-width: 90vw;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Arrière-plan semi-transparent pour le modal */
#videoModal.modal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}


/* Assurer que le modal prend toute la hauteur */
#videoModal.modal {
  padding: 0 !important;
}











.modal-title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #0a0a0a;
}


/* Cache le modal sur desktop */
@media (min-width: 768px) {
  #agentAkeedModal {
    display: none !important;
  }
}

.modal-dialog-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1050;
}


/* Contenu du modal */
.modal-content {
  width: 100vw;
  border-radius: 24px 24px 0 0;
  border: none;
  background: #ffffff;
  padding: 24px 36px 25px 36px;
  box-shadow: 0px -4px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ✅ Titre */
.akeed-menu-title {
  color: #222;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}


.akeed-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 9999px;
  border: 1px solid #0D468A;
  background: #FFF;
  color: #0D468A;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 60%;
  margin-bottom: 12px;
}

.akeed-menu-btn:hover {
  background: #E0F2FE;
  color: #FFF;
  border-color: #0D468A
}

.modal-dialog {
  margin: 0 !important;
}

.akeed-menu-btn img {
  height: 20px;
  width: auto;
}

/* ✅ Responsive mobile */
@media (max-width: 480px) {
  .modal-dialog-bottom {
    width: 100vw !important;
    margin: 0 !important;
  }

  .modal-content {
    width: 100vw !important;
    border-radius: 16px 16px 0 0;
    padding: 20px 24px 24px;
  }

  .akeed-menu-title {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .akeed-menu-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}






















.btn-download:hover {
  background: #0079a3;
  color: white;
}

.btn-download {
  background: #008CBA;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-close-white {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}


body {
  background: var(--akeed-light);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  width: 100%;
  /* padding: 0 8px; */
  font-size: 16px;
}

.color-primary {
  color: var(--akeed-primary-dark) !important;
}

.color-secondary {
  color: #a2c93d !important;
}

.btn-primary {
  background-color: var(--akeed-primary) !important;
  color: #ffffff !important;
  border-color: var(--akeed-primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--akeed-primary-light) !important;
  color: var(--akeed-primary) !important;
  border-color: var(--akeed-primary) !important;
}

.btn-outline-primary {
  background-color: #ffffff !important;
  color: var(--akeed-primary) !important;
  border-color: var(--akeed-primary) !important;
}

.akeed-textt {
  color: var(--colors-text-text-tertiary-600, #535862);
  font-family: var(--Font-family-font-family-body, Inter), sans-serif;
  font-size: var(--Font-size-text-md, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Line-height-text-md, 24px);
}

.btn {
  border-radius: 1000px;
  font-size: 1rem;
  line-height: 20px;
}

.btn.xl {
  padding: 24px 32px !important;
}

.btn.sm {
  padding: 12px 24px !important;
  line-height: 14px;
  font-weight: 500;
}

.bg-light-green {
  background-color: #e2f3b6;
  color: #75902c;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.speech-bubbles {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.bubble {
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
  font-size: 18px;
  z-index: 1;
}

.bubble-blue {
  background-color: #dcf1ff;
  color: var(--akeed-primary-dark);
}

.bubble-green {
  background-color: #eafbf2;
  color: #43a047;
}

.big-title {
  font-weight: 600 !important;
  font-size: 4.5rem;
  letter-spacing: 1px;
}

.business-wrapper-container {
  position: relative;
  top: -90px;
}

.navbar.akeed {
  height: 75px;
  padding: 16px 24px;
  border-radius: 100px;
  position: sticky;
  top: 16px;
  z-index: 100;
}

.box_shadow {
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 50%) scale(1.7);
}

.box {
  z-index: 1;
  bottom: 0px;
  right: 0px;
  position: absolute;
}

.landing-text {
  font-size: 1rem;
  font-weight: 400;
}

.my-gap {
  height: 130px;
}

.container1 {
  background-image: url("../images/lines_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.focus {
  background-image: url("../images/line.png");
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.b1 {
  top: -50px;
  left: 150px;
}

.b2 {
  left: 780px;
  top: 30px;
}

.b3 {
  left: 650px;
  top: 200px;
}

.b4 {
  top: 80px;
  right: 150px;
}

.bubble-arrow {
  rotate: 45deg;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -6px;
  left: 25px;
}

.b1 .bubble-arrow,
.b4 .bubble-arrow {
  background-color: #e2f3b6;
}

.b2 .bubble-arrow,
.b3 .bubble-arrow {
  background-color: #dcf1ff;
}

.bubble-arrow.top {
  top: -6px;
}

.green-circle {
  background: radial-gradient(#c9f75238 0%, transparent 50%);
  left: -424px;
  width: 694px;
  height: 694px;
}

.blue-circle {
  background: radial-gradient(#0d468a30 0%, transparent 50%);
  top: -490px;
  right: -250px;
  width: 694px;
  height: 694px;
}

/* Optional: hide scrollbar while keeping scroll capability */
.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-track {
  scrollbar-width: none;
}

/* Firefox */

.partner-logo {
  max-height: 60px;
  /* keeps logos visually similar            */
  opacity: 0.5;
  /* your existing hover animation still OK */
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.scroll-touch {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
}

.scroll-touch::-webkit-scrollbar {
  display: none;
  /* Safari & Chrome */
}

.icone_akeed {
  width: 87px;
  height: 87px;
  background-color: #f2fadb;
  color: #a2c93d;
  border-radius: 24px;
}

.icone_akeed img {
  height: 40px;
  width: 40px;
}

.feature-box {
  padding: 72px 48px;
  border-radius: 24px;
  transition: box-shadow 0.2s ease;
}

.feature-box:hover {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.text-1 {
  font-size: 10px;
}

.text-2 {
  font-size: 12px;
}

.text-3 {
  font-size: 14px;
}

.text-4 {
  font-size: 16px;
}

.text-5 {
  font-size: 18px;
}

.text-6 {
  font-size: 22px;
}

.text-7 {
  font-size: 26px;
}

.text-8 {
  font-size: 32px;
}

.text-9 {
  font-size: 48px;
}

.text-10 {
  font-size: 78px;
}

.huge-padding-bottom {
  padding-bottom: 144px !important;
}

.special-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* Services section */
.services-wrapper {
  background: var(--akeed-primary-dark);
  border-radius: 94px 94px 0 0;
  padding: 60px 0 240px 0;
  margin: 80px 0 0 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg-services.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.services-title {
  color: white;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  line-height: 54px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 48px 78px;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #cab9fe;
  border-radius: 8px;
  width: min-content;
}

.service-logo {
  background: #ffffff;
  color: #181d27;
  padding: 8px 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 30px;
}

.service-name {
  color: #0086c9;
  font-weight: 500;
  font-size: 30px;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e293b;
  white-space: nowrap;
}

.service-card p,
.service-card li {
  color: #556275;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card li {
  line-height: 1;
  margin-bottom: 8px;
}

/* Business section */
.business-wrapper {
  background: var(--akeed-primary-dark);
  border-radius: 32px;
  padding: 60px 72px 48px;
  position: relative;
  overflow: hidden;
}

.business-title {
  color: #cab9fe;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.business-subtitle {
  color: #ffffff;
  font-size: 30px;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: #0d3c73;
}

.business-subtitle span {
  color: #0086c9;
}

.business-main-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.business-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.7rem;
}

.business-card {
  background: white;
  border-radius: 16px;
  padding: 48px 68px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.business-card p.tag {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.business-icon {
  width: 87px;
  height: 87px;
  background: #e9f3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.business-icon i {
  font-size: 24px;
  color: var(--akeed-primary);
}

.business-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

.business-card p {
  color: #556275;
  line-height: 1.5;
  margin-bottom: 12px;
}

.services-inner-wrapper {
  background-color: var(--akeed-light);
  position: relative;
  top: -90px;
  border-radius: 94px;
}

.left-card,
.mobile .left-card {
  position: relative;
  top: -149px;
}

.left-card:not(.mobile .left-card) {
  overflow: hidden;
}

.right-card,
.mobile .left-card {
  position: relative;
  top: -56px;
}

.right-card:not(.mobile .right-card) {
  overflow: hidden;
}

.tpe-mobile {
  top: -30px;
  left: -15px;
  max-width: min(170px, 40%);
  transform: scale(1.15);
}

.left-card .service-card,
.left-card .service-card-mobile {
  position: relative;
  /* Ensure the pseudo-element is positioned relative to this card */
  background: white;
  /* Maintain the card's solid background */
  border-radius: 20px;
  padding: 48px 78px;
  z-index: 2;

  transition: padding 0.2s ease-out;
}

.left-card .service-card {
  text-align: center;
  height: 450px;
  overflow: hidden;
}

/* Pseudo-element for the background image */
.left-card .service-card::before {
  content: "";
  /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/tpe.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: -180px;
  opacity: 0;
  /* Start with 0 opacity (0%) */
  transition: all 0.2s ease-out;
  /* Smooth transition for opacity */
  z-index: -1;
  /* Place the image behind the card content */
}

/* On hover, change the pseudo-element's opacity to 100% */
.left-card .service-card:hover::before {
  opacity: 1;
  /* 100% opacity on hover */
  background-position-x: -70px;
}

/* On hover, change the pseudo-element's opacity to 100% */
.left-card .service-card:hover {
  padding-left: 210px;
  padding-right: 36px;
  text-align: left;
}

.left-card .service-card:hover .text-group.avant {
  display: none;
}

.service-card-mobile .text-group.apres {
  display: block;
}

.text-group.apres {
  display: none;
}

.left-card .service-card:hover .text-group.apres {
  display: block;
}

.text-group p,
.text-group ul {
  min-height: 145px;
}

.text-group ul {
  max-width: 380px;
}

/* Pseudo-element for the background image */
.right-card .service-card::before {
  content: "";
  /* Required for pseudo-elements */
  position: absolute;
  left: 180px;
  top: -20px;
  width: 100%;
  height: 100%;
  background-image: url(../images/Box.png);
  background-repeat: no-repeat;
  /* background-size: contain; */
  background-position: right top;
  opacity: 0;
  /* Start with 0 opacity (0%) */
  transition: all 0.2s ease-out;
  /* Smooth transition for opacity */
  z-index: -1;
  /* Place the image behind the card content */
}

/* On hover, change the pseudo-element's opacity to 100% */
.right-card .service-card:hover::before {
  opacity: 1;
  /* 100% opacity on hover */
  left: 50px;
}

.right-card .service-card .name {
  position: relative;
}

.right-card .service-card .service-header {
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  transition: all 0.2s ease-out;
}

.right-card .service-card:hover .service-header {
  left: 0%;
  transform: translatex(0);
}

.right-card .service-card,
.right-card .service-card-mobile {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 48px 78px;

  z-index: 2;
  overflow: hidden;
}

.right-card .service-card-mobile {
  padding: 24px;
  overflow: unset;
}

.right-card .service-card {
  height: 450px;
}

.right-card .service-card:hover {
  padding: 32px 140px 40px 32px;
  transition: all 0.2s ease-out;
}

.right-card .service-card:hover h4,
.right-card .service-card:hover p,
.right-card .service-card:hover .btn {
  left: 0%;
  transform: translatex(0);
}

.right-card .service-card:hover h4 {
  padding-top: 0px !important;
}

.right-card .service-card h4,
.right-card .service-card p,
.right-card .service-card .btn {
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  transition: all 0.2s ease-out, left 0.2s ease-out;
}

.right-card .service-card h4 {
  width: fit-content;
}

.right-card .service-card p.avant {
  text-align: center;
}

.right-card .service-card:hover p.avant {
  display: none;
}

.right-card .service-card ul.apres {
  display: none;
}

.right-card .service-card:hover ul.apres {
  display: block;
}

.right-card .service-card:hover h4.avant {
  display: none;
}

.right-card .service-card h4.apres {
  display: none;
}

.right-card .service-card:hover h4.apres {
  display: block;
}

.filigram {
  font-size: 29rem;
  width: 100%;
  top: -240px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  opacity: 9%;
  z-index: 0;
}

.filigram.white {
  -webkit-text-stroke-color: #d7d7d7;
  color: transparent;
  opacity: 25%;
  left: 0;
}

.filigram.white.scale {
  transform: scale(1.3);
  top: -170px;
}

.features-section {
  padding: 96px 96px 60px 96px;
  background: #fff;
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
}

.features-header h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #111;
}

.features-header {
  z-index: 1;
  position: relative;
}

.features-header p {
  font-size: 1.5rem;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 268px;
  background: white;
  border: 1px solid #cab9fe;
  border-radius: 24px;
  padding: 20px 48px;
  margin: 12px 0;
  box-shadow: 2px 8px 12px 0px rgba(0, 0, 0, 0.04);
}

.akeed-card {
  transition: transform 0.2s ease;
  z-index: 1;
}

.akeed-card img {
  height: 48px;
  margin-bottom: 15px;
  color: var(--akeed-primary-dark);
}

.akeed-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #181d27;
  margin-bottom: 10px;
}

.akeed-card p {
  font-size: 14px;
  color: #444;
}

.akeed-card a {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.akeed-card:hover a {
  opacity: 100%;
}

.akeed-card .wrapper {
  top: 30px;
  transition: top 0.1s ease;
}

.akeed-card:hover .wrapper {
  top: 0px;
}

.features-section .green {
  background: radial-gradient(#a2c93d 0%, transparent 50%);
  width: 150%;
  height: 600px;
  bottom: -300px;
  left: -25%;
  opacity: 15%;
}

.experience-section {
  background-color: #f0faff;
  padding: 80px 0;
  position: relative;
}

.experience-grid {
  align-items: center;
  margin-bottom: 8px;
}

.experience-grid.bottom {
  margin-top: 8px;
}

.experience-text .subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.experience-text .title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.experience-text .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

.experience-image {
  position: relative;
  margin-bottom: 16px;
  text-align: center;
  width: fit-content;
}

.experience-image:before {
  content: "";
  position: absolute;
  border: 1px solid #cab9fe;
  border-radius: 24px;
  transform: rotate(3deg);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.experience-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 1;
  position: relative;
}

.arrow-line {
  display: flex;
  justify-content: center;
}

.arrow-line img {
  height: 100%;
  width: auto;
}

section.bg-light-blue.text-center {
  background-color: var(--akeed-light);
  padding: 60px 0;
}

section.bg-light-blue.text-center h2 {
  font-size: 32px;
  color: var(--akeed-primary-dark);
}

section.bg-light-blue.text-center .text-muted {
  font-size: 16px;
  color: #556275;
}

section.bg-light-blue.text-center .d-flex.flex-md-row>div {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

section.bg-light-blue.text-center .fas {
  color: var(--akeed-primary);
}

section.bg-light-blue.text-center strong {
  color: var(--akeed-primary-dark);
  font-weight: 600;
}

section.bg-light-blue.text-center .text-muted.small {
  font-size: 14px;
  line-height: 1.4;
}

.canal {
  color: #a2c93d;
  font-weight: 500;
  font-size: 32px;
}

.canal-icone {
  width: 40px;
  height: 40px;
}

.metrics-row {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 16px;
  gap: 8px;
}

.metric-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 48px;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  white-space: nowrap;
}

.metric-label {
  font-size: 1.2rem;
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.4;
  flex-wrap: wrap;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 50px;
  margin-top: 64px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.metrics-row.row-3 {
  margin-bottom: 72px;
}

.green-circle.numbers.n1 {
  right: -40%;
  left: unset;
  top: -30%;
}

.green-circle.numbers.n2 {
  /* right: -40%; */
  left: -40%;
  bottom: -30%;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.testimonial-card {
  background: white;
  border: 1px solid #cab9fe;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ddd;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.hero-container {
  align-items: center;
  margin-top: 150px;
  margin-bottom: 72px;
}

.hero-image {
  position: relative;
}

.person-placeholder {
  max-width: 400px;
  max-height: 400px;
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
  border-radius: 76px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.akeed-logo {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.blue-circle2 {
  background: radial-gradient(#0d468a30 0%, transparent 50%);
  right: -350px;
  width: 800px;
  height: 694px;
  bottom: -350px;
}

.circle-container {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 136px;

  opacity: 90%;
  mix-blend-mode: darken;
  /* Optional: adjust how it blends */
}

.circle {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #b9e6fe;
  top: 50%;
  left: 50%;
}

.circle:nth-child(1) {
  width: 150px;
  height: 150px;
}

.circle:nth-child(2) {
  width: 220px;
  height: 200px;
}

.circle:nth-child(3) {
  width: 290px;
  height: 290px;
}

.circle:nth-child(4) {
  width: 360px;
  height: 360px;
}

.circle:nth-child(5) {
  width: 430px;
  height: 430px;
}

.footer-section {
  background: var(--akeed-primary-dark);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 120px;
  height: 43px;
  margin-bottom: 8px;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.brand-info h1 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.brand-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}


.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-links i {
  font-size: 16px;
}

.testimonials-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Responsive */
@media (max-width: 1400px) {
  .features-section {
    padding: 96px 32px 60px 32px;
  }

  .features-section .btn {
    font-size: 0.9rem;
    padding: 12px 12px !important;
  }

  .feature-card {
    padding: 20px 24px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .text-group .btn.xl {
    padding: 24px 24px !important;
    font-size: 0.9rem;
  }

  .service-card h4 {
    font-size: 1.3rem;
  }

  .business-card {
    padding: 48px 32px;
  }

  .business-card .btn.xl {
    padding: 24px 24px !important;
  }

  .feature-card {
    padding: 20px 24px;
  }

  .metric-box {
    padding: 24px 24px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .box {
    position: relative;
  }

  .b2 {
    right: unset;
    left: 10px;
    top: 130px;
  }

  .b3 {
    left: unset;
    right: 20px;
    top: 120px;
  }

  .b4 {
    top: 300px;
    right: unset;
    left: 10px;
  }

  .bubble-size .b1,
  .bubble-size .b2,
  .bubble-size .b3,
  .bubble-size .b4 {
    transform: scale(0.8);
  }

  .landing-text {
    font-size: 0.9rem;
  }

  .btn.xl {
    padding: 20px 24px !important;
  }

  .btn {
    font-size: 0.9rem;
  }

  .btn.xl.smaller {
    white-space: nowrap;
    padding: 24px 16px !important;
  }

  .services-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .business-main-title {
    font-size: 2rem;
  }

  .business-description {
    font-size: 1rem;
  }

  .business-wrapper {
    padding: 60px 12px 48px;
  }

  .business-card {
    padding: 48px 24px;
  }

  .features-header h2 {
    font-size: 2rem;
  }

  .features-section {
    padding: 96px 24px 60px;
  }

  .features-header p {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  section.bg-light-blue.text-center .d-flex.flex-md-row {
    flex-direction: column;
    text-align: center;
  }

  section.bg-light-blue.text-center .d-flex.flex-md-row>div {
    margin-bottom: 20px;
  }

  .speech-bubbles {
    align-items: center;
  }

  .big-title {
    font-size: 2.2rem;
  }

  .hero-section .btn-lg {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .testimonials-grid {
    flex-wrap: nowrap;
    width: max-content;
  }

  .testimonial-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    scrollbar-width: none;
  }

  .testimonial-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }



  .testimonial-card {
    width: 320px;
    /* Consistent width for all cards */
    padding: 20px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .metrics-row {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .metrics-row::-webkit-scrollbar {
    display: none;
  }

  .metric-box {
    padding: 16px;
    min-width: max-content;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 1rem;
    line-height: 1.2;
  }

  .metric-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .akeed-card a {
    opacity: 100%;
  }

  .akeed-card .wrapper {
    top: 0px;
  }

  .akeed-card .feature-card {
    padding: 16px;
  }

  .features-section .row {
    /* flex-wrap: nowrap; */
  }

  .experience-text .title {
    font-size: 2rem;
  }
}

.features-section .btn {
  padding: 12px 24px !important;
}

/* Smoother floating with slight rotation */
.floating-image-smooth {
  animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes smoothFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(1deg);
  }

  75% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@media (max-width: 480px) {
  .box img {
    margin-top: -30px;
    transform: none !important;
  }

  .box_shadow {
    margin-top: 10px;
  }

  .bubble-size .b2 {
    top: 220px !important;
  }

  .bubble-size .b3 {
    top: 200px !important;
  }

  
}