﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.dark-theme {
  --text-color: #fff !important;
  --text-primary: #f7f7f8;
  --text-secondary: #c1c5cb;
  --text-muted: #8f969f;
  --surface-page: #050505;
  --surface-panel: #0d0f12;
  --surface-soft: #15181d;
  --surface-input: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --interactive-text: #fff;
  --text-on-dark: #fff;
  --btn-border: #ffffff !important;
  --background-color: #000000;
  --header-active: #6adfff;
  --header-hover: #addeff;
  --header-shadow: rgba(42, 191, 232, 0.27);
  --primary-color: #2abfe8;
  --secondary-color: #0871b7;
  --green-color: #018221;
  --lightning-background-first: rgba(58, 58, 58, 0.45) 0%, rgba(0, 0, 0, 0) 70%;
  --lightning-background-second: rgba(0, 54, 92, 0.45) 0%, rgba(0, 0, 0, 0) 70%;
  ----values-bg: #000;
  --about-cyan: #13c9ee;
  --about-green: #14d7a8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
header,
nav,
.theme-btn-desktop,
img {
  transition: background-color 0.4s ease, color 0.4s ease, filter 0.4s ease;
}

body {
  font-family: "Poppins", "Montserrat", sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 60px 0;
  position: relative;
}

.m-b-4rem {
  margin-bottom: 4rem;
}

a,
a:hover,
a:focus,
a:active,
ul,
ol,
li,
button {
  text-decoration: none;
  color: var(--interactive-text, var(--text-color));
  list-style: none;
  outline: none;
}

.title-xl {
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 800;
}

.title-lg {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
}

.title-md {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  margin: 0;
  font-weight: 300;
}

.subtitle {
  color: var(--primary-color);
  font-weight: 600;
}

.text-secondary {
  color: var(--text-secondary, var(--text-color)) !important;
  font-size: 1.2rem;
}

.text-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-color);
}

.btn-box {
  display: flex;
  align-items: center;
  margin-top: 1.8em;
}

.blue-button,
.whatsapp-btn,
.btn-outline-button {
  font-size: 1em;
  font-weight: 600;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  background: none;
  border-radius: 10px;
}

.header-btn {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.blue-button {
  /* background: var(--primary-color) !important; */
  background: linear-gradient(135deg, var(--about-cyan), var(--about-green));
  color: #031014;
}

.whatsapp-btn {
  background: var(--green-color) !important;
}

.btn-outline-button {
  border: solid 1.5px var(--text-color);
  color: var(--text-color) !important;
}

.blue-button::before,
.whatsapp-btn::before,
.btn-outline-button::before {
  content: '';
  width: 0;
  height: 4em;
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.btn-outline-button::before {
  background: linear-gradient(to right, rgba(8, 113, 183, 1), rgba(5, 54, 128, 1)) !important;
  color: var(--text-color) !important;
}

.blue-button::before {
  background: linear-gradient(to right, rgba(8, 113, 183, 1), rgba(5, 54, 128, 1)) !important;
  color: var(--text-color);
}

.whatsapp-btn::before {
  background: linear-gradient(to right, #8fff26 0%, #018221 100%) !important;
}

.blue-button:hover::before,
.whatsapp-btn:hover::before {
  width: 100%
}

.see-more-btn {
  cursor: pointer;
  color: var(--secondary-color);
  font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2PX solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 30%;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #2abfe8;
  width: 40px;
  height: 10px;
  border-radius: 10px;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: 0 0 10px #2abfe8;
}

.form-group,
.form-row {
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.15));
  background: var(--surface-input, rgba(255, 255, 255, 0.07));
  color: var(--text-primary, #e8f4ff);
  font-size: 15px;
  outline: none;
  transition: .3s ease;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 25px center;
}

select option {
  color: #1c1c1c;
}

select option:hover {
  background-color: #00c2ff;
  color: #000;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-row input:nth-child(3),
.form-row input:nth-child(4) {
  grid-column: span 1;
}

textarea {
  min-height: 140px;
  resize: vertical;
  overflow: auto;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00c2ff;
}

.form-group .lable-title,
.small-input .lable-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  color: #bff0ff;
}

.form-group .lable-title::after,
.small-input .lable-title::after {
  content: "*";
  color: #ff4d4d;
}

.demandez-devis {
  background: radial-gradient(circle at 20% 30%, #000d1c, #000811 80%);
}

.required {
  color: #e53935;
  font-weight: bold;
}

.error-message {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #e53935;
}

input.error,
textarea.error {
  border: 1px solid #e53935 !important;
}

.form-groupe {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-form {
  flex-direction: column;
}

.stage-form .contact-form-card {
  width: 100%;
}

.stage-form .contact-text-block {
  width: 50%;
  margin: 4rem;
}

.form-group {
  margin-bottom: 22px;
}

input:focus,
textarea:focus {
  border-color: #2abfe8;
  box-shadow: 0 0 10px rgba(0, 174, 255, 0.4);
}

.contact-btn {
  width: 100%;
  margin-top: 20px;
  padding: 18px 25px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  color: #1d1d1b;
  box-shadow: 0 0 5px rgba(0, 174, 255, 0.3);
  transition: .3s ease;
}

.contact-btn:hover {
  box-shadow: 0 0 10px rgba(0, 174, 255, 0.55);
  transform: translateY(-3px);
}

.upload-box {
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 30px 15px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.upload-box:hover {
  border-color: #4fc3f7;
}

.upload-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.upload-note {
  font-size: 0.75rem;
  opacity: 0.8;
}

.idb-fab-contact {
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.idb-fab-contact-container.idb-fab-visible .idb-fab-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.idb-fab-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg,
      rgba(13, 110, 253, 1),
      rgba(102, 16, 242, 1));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.idb-fab-toggle ion-icon {
  font-size: 18px;
}

.idb-fab-toggle:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.50);
}

.idb-fab-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: all 0.45s ease;
}

.idb-fab-contact.idb-fab-open .idb-fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.idb-fab-item {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.35s ease;
}

.idb-fab-item:hover {
  transform: scale(1.15);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.idb-fab-wa {
  background: rgba(37, 211, 102, 0.45);
}

.idb-fab-phone {
  background: rgba(13, 110, 253, 0.45);
}

.idb-fab-mail {
  background: rgba(108, 117, 125, 0.45);
}

body.light-theme .idb-fab-toggle,
body.light-theme .idb-fab-item {
  border-color: rgba(0, 0, 0, 0.1);
  color: #111;
}

body.light-theme .idb-fab-toggle {
  background: rgba(255, 255, 255, 0.7);
}

body.light-theme .idb-fab-wa {
  background: rgba(37, 211, 102, 0.25);
}

body.light-theme .idb-fab-phone {
  background: rgba(13, 110, 253, 0.25);
}

body.light-theme .idb-fab-mail {
  background: rgba(108, 117, 125, 0.25);
}

.header {
  width: 100%;
  min-height: 10vh;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  box-shadow: -1px 2px 12px 2px var(--header-shadow);
  -webkit-box-shadow: -1px 2px 12px 2px var(--header-shadow);
  -moz-box-shadow: -1px 2px 12px 2px var(--header-shadow);
  z-index: 1000;
  margin: 0 0 40px 0;
  transition: all 0.3s ease;
}

.menu .nav-link {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.9s;
}

.menu .nav-link:hover {
  color: var(--header-hover);
  letter-spacing: 0.5px;
}

.menu .nav-link.active {
  font-weight: 600;
  color: var(--header-active);
  transition: 0.9s;
}

.dropdown-menu-center {
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 5px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  display: block;
  pointer-events: none;
}

.dropdown.show .dropdown-menu-center {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-center {
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.theme-btn-desktop {
  position: relative;
  width: 40px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.3s ease, border 0.3s ease;
}

.theme-btn-desktop:hover {
  background-color: rgba(71, 76, 84, 0.15);
  transform: scale(1.05);
}

.icon-moon,
.icon-sun {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.25s ease;
}

.icon-hidden {
  opacity: 0;
}

.theme-btn-desktop::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s ease, border 0.35s ease;
  z-index: 2;
}

.theme-btn-desktop.dark::before {
  left: calc(100% - 24px);
}

.theme-btn-desktop.light {
  color: rgb(55 65 81);
  background-color: rgb(243 244 246);
}

.theme-btn-desktop.dark {
  color: rgb(209 213 219);
  background-color: rgb(31 41 55);
}

.theme-btn-desktop.changing {
  border: 2px solid black;
  transition: border 0.35s ease;
}

.bar {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  z-index: 100;
  cursor: pointer;
}

.bar div {
  width: 100%;
  height: 4px;
  background: var(--hamburger-menu);
  margin: 5px;
  border-radius: 20%;
  transition: all 0.5s ease;
}

.nav-active {
  transform: translateX(-100%);
}

.bar-active .bar-1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.bar-active .bar-2 {
  opacity: 0;
}

.bar-active .bar-3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.offcanvas-body {
  padding: 30px;
}

.nav-item {
  margin: 15px 0;
}

.mobile-btn-block {
  width: 100%;
}

.mobile-btn-block button {
  width: 100%;
  padding: 1rem;
}

.mobile-btn-block .btn-outline-light {
  margin-bottom: 25px;
}

.offcanvas {
  background: #000 !important;
}

.banner {
  width: 100%;
  overflow: hidden;
  justify-content: center;
}

.banner .title-banner span {
  color: var(--primary-color);
  /* background: linear-gradient(90deg,
      #13c9ee,
      #14d7a8);

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; */
}

.banner-gradient {
  position: relative;
  left: 50%;
  top: 0;
}

.banner-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--degrader-perso);
}

.banner-image {
  position: relative;
  right: 5%;
}

.floating-img-3d {
  animation: hologramFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes hologramFloat {
  0% {
    transform: translateX(-10px) translateY(0px) rotateY(-4deg) rotateX(1deg) scale(1);
  }

  25% {
    transform: translateX(0px) translateY(-6px) rotateY(2deg) rotateX(-1deg) scale(1.01);
  }

  50% {
    transform: translateX(10px) translateY(0px) rotateY(4deg) rotateX(1deg) scale(1.02);
  }

  75% {
    transform: translateX(0px) translateY(6px) rotateY(-2deg) rotateX(-1deg) scale(1.01);
  }

  100% {
    transform: translateX(-10px) translateY(0px) rotateY(-4deg) rotateX(1deg) scale(1);
  }
}

.floating-img-3d:hover {
  animation-duration: 6s;
  filter: brightness(1.08) contrast(1.05);
}

.glow-cyber img {
  position: relative;
  z-index: 2;
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }

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

.parallax-img {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.counter-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.counter-content {
  width: 100%;
}

.counter {
  transition: transform 0.3s ease;
}

.counter:hover {
  transform: scale(1.08);
  transition: 0.3s ease;
}

.counter .count-title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #ffffffe4;
}

.fade-in-counter {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade-in-counter.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter .counter-value {
  color: var(--text-color-dark);
}

.lightning-background::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: radial-gradient(circle, var(--lightning-background-first)),
    radial-gradient(circle, var(--lightning-background-second));
  animation: lightningGlow 5s infinite linear;
  mix-blend-mode: screen;
  filter: blur(40px);
}

@keyframes lightningGlow {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.1;
  }

  35% {
    opacity: 0.2;
  }

  50% {
    transform: scale(1.2) rotate(30deg);
    opacity: 0.3;
  }

  75% {
    opacity: 0.1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.1;
  }
}

.neon-lightning {
  padding: 40px 20px;
  border-radius: 25px;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(78, 168, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.neon-lightning::before,
.neon-lightning::after {
  content: "";
  position: absolute;
  width: 220%;
  height: 220%;
  top: -60%;
  left: -60%;
  background: conic-gradient(from 0deg, rgba(0, 150, 255, 0.6), rgba(78, 168, 255, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 150, 255, 0.7));
  filter: blur(80px);
  mix-blend-mode: screen;
  animation: lightning-spin 12s linear infinite;
}

.neon-lightning::after {
  animation-duration: 20s;
  opacity: 0.4;
}

@keyframes lightning-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.banner-left,
.banner-right {
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}

.scroll-shift-left {
  transform: translateX(80vw);
  opacity: 0.8;
}

.scroll-shift-right {
  transform: translateX(-80vw);
  opacity: 0.8;
}

.scroll-reset {
  transform: translateX(0);
  opacity: 1;
}

.idiba-depmt {
  width: 100%;
  position: relative;
  padding: 0;
}

.idiba-depmt-content {
  background: #0b0c10;
  width: 50%;
  height: 180px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: absolute;
  top: 100%;
  z-index: 2;

}

.id-logo-box {
  background: rgba(75, 75, 75, 0.03);
  padding: 20px 25px;
  border-radius: 14px;
  width: 100%;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(189, 189, 189, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.floating-logo {
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  }
}

.id-logo-box img {
  filter: brightness(0.9);
  transform: scale(0.95);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.id-logo-box:hover {
  transform: translateY(-10px) scale(1.08) rotateX(4deg) rotateY(-4deg);
  background: rgba(29, 29, 29, 0.08);
  box-shadow: 0px 3px 10px rgba(0, 44, 85, 0.35);
}

.id-logo-box:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.floating-logo::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 400%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(78, 168, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg) translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.scan-animate::before {
  animation: scanLight 2.5s linear forwards;
  opacity: 0.5;
}

@keyframes scanLight {
  0% {
    transform: rotate(25deg) translateX(-100%);
  }

  50% {
    transform: rotate(25deg) translateX(100%);
  }

  100% {
    transform: rotate(25deg) translateX(-100%);
  }
}

.expertise-section {
  padding: 0 !important;
}

.expertise-section .container {
  margin-top: 5rem;
}

.logo-idiba-shot {
  animation: zoomInOut 4s ease-in-out infinite;
}

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

  50% {
    transform: scale(1.1);
  }

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

.expertise-image-bloc {
  position: relative;
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
  bottom: 10%;
}

.blue-gradient-circle {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(78, 168, 255, 0.2), transparent 50%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


.image-flot-top-down {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.man-image-bloc img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.description-title h3 {
  color: #2abfe8;
}

.cards-content {
  gap: 20px;
}

.card-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  width: 48%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(78, 168, 255, 0.35);
}

.icon-img {
  width: 50px;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.95rem;
  color: #d1d1d1;
}

.show-up-your-business {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-up-your-business-content {
  width: 1500px;
  padding: 1rem;
  border-radius: 20px;
  background-color: #0b0c10;
}

.business-block {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.description-title .sub-title {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.description-title p {
  font-weight: 300;
}

.showup-your-business-image img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.gallery-section {
  padding: 20px 0 0 0;
}

.gallery-item {
  margin: 0;
  padding: 0;
}

.gallery-section .gallery-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.wrapper-cards {
  margin: 4rem 0;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-card .ratio img {
  padding: 0.3rem !important;
  border-radius: 30px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 14px;
  opacity: 0.85;
}

.swiper-slide img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.clientThumbs {
  padding-top: 10px;
}

.clientThumbs .swiper-slide {
  width: 90px;
  height: 90px;
  opacity: 0.4;
  cursor: pointer;
}

.clientThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.clientThumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  border-radius: 12px;
  padding: 10px;
}

.modal-description {
  font-size: 0.95rem;
}

.modal-description h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-description p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.modal-description ul {
  padding-left: 1.2rem;
}


.gallery-container {
  min-width: 400px;
}

.clientThumbs {
  padding-top: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

.swiper-wrapper-thumbs {
  height: auto;
}

.overlay-blur {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1000;
}

.custom-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.custom-modal-content {
  background: #111;
  color: white;
  padding: 30px;
  width: 500px;
  border-radius: 10px;
  position: relative;
  animation: pop 0.3s ease;
}

.close-modal {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.switchToRegister {
  color: var(--primary-color);
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.testimonials-glass-dark {
  padding: 60px 01-"";
  overflow: hidden;
  position: relative;
}

.testimonials-swiper {
  padding: clamp(32px, 5vw, 40px) 10px 40px;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: clamp(22px, 2.6vw, 35px);
  min-height: 360px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  will-change: transform;
}

.testimonial-card>*:not(.testimonial-hands) {
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 0 5px rgba(0, 174, 255, 0.5);
}

.testimonial-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(68px, 7vw, 95px);
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
}

.testimonial-info {
  min-width: 0;
}

.testimonial-name {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}

.testimonial-role {
  color: #2abfe8;
  font-size: 14px;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.underline-accent {
  width: 90px;
  height: 2px;
  background: #2abfe8;
  border-radius: 50px;
}

.testimonial-avatar {
  width: clamp(68px, 7vw, 95px);
  height: clamp(68px, 7vw, 95px);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 174, 255, 0.5);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(42, 191, 232, 0.35), rgba(193, 46, 240, 0.45));
  flex: 0 0 auto;
}

.testimonial-avatar img,
.testimonial-avatar-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.testimonial-avatar img {
  object-fit: cover;
}

.testimonial-avatar-fallback {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial-body {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.testimonial-service {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
  overflow-wrap: anywhere;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.58;
  opacity: .85;
  margin: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.testimonial-hands {
  position: absolute;
  right: 16px;
  bottom: 0px;
  width: clamp(45px, 8vw, 25px);
  height: clamp(52px, 5vw, 76px);
  background-image: url("/vitrine/assets/img/icons/hands-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .08;
  transition: .35s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card:hover .testimonial-hands {
  opacity: .16;
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.5));
  background-image: url("/vitrine/assets/img/icons/hands-yellow.svg");
}

.testimonial-card.tilt-hover {
  box-shadow: 0 0 5px rgba(0, 174, 255, 0.45);
}

.testimonials-swiper .swiper-pagination[hidden] {
  display: none;
}

.testimonials-empty {
  max-width: 560px;
  margin: 30px auto 0;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.testimonials-empty p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    min-height: 340px;
  }

  .testimonials-swiper {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (max-width: 575.98px) {
  .testimonials-glass-dark {
    padding: 64px 0;
  }

  .testimonial-card {
    min-height: auto;
    border-radius: 18px;
  }

  .testimonial-header {
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-role,
  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-service {
    font-size: 15px;
  }

  .testimonial-hands {
    opacity: .06;
    right: 10px;
    bottom: 8px;
  }
}

.clients {
  padding: 60px 0;
  background: var(--background-color);
  overflow: hidden;
}

body.dark .clients {
  background: #000;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  width: max-content;
  animation: clients-marquee-scroll 58s linear infinite;
}

.clients-marquee:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-marquee[data-clients-count="1"] .clients-marquee-track {
  animation: none;
  width: 100%;
  justify-content: center;
}

.clients-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 16px clamp(10px, 2.5vw, 26px);
}

.client-logo-card {
  width: clamp(132px, 15vw, 190px);
  height: clamp(78px, 8vw, 108px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.88;
}

.client-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 193, 230, 0.32);
  background: rgba(42, 193, 230, 0.055);
  opacity: 1;
}

.client-logo-img {
  display: block;
  max-width: 84%;
  max-height: 62%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.clients-empty {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-secondary);
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

@keyframes clients-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 575.98px) {
  .clients {
    padding: 44px 0;
  }

  .clients-marquee {
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }

  .clients-marquee-track {
    animation-duration: 42s;
  }

  .clients-marquee-group {
    gap: 14px;
    padding-block: 12px;
  }

  .client-logo-card {
    width: 124px;
    height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee-track {
    animation-duration: 120s;
  }

  .client-logo-card {
    transition: none;
  }
}

.contact-glass-section {
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-title span {
  color: var(--primary-color);
}

.contact-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}

.principle-label {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-principle ul {
  padding-left: 18px;
}

.contact-principle ul li {
  margin-bottom: 10px;
  font-size: 16px;
  list-style: decimal;
}

.contact-img-content {
  width: 480px;
}

.contact-form-card {
  color: var(--text-primary, var(--text-color));
  background: color-mix(in srgb, var(--surface-panel, #111) 88%, transparent);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  transition: .4s ease;
  transform-style: preserve-3d;
}

.contact-form-card:hover {
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.5);
  transform: translateY(-10px);
}

.contact-form-card.tilt-hover {
  box-shadow: 0 0 30px rgba(0, 174, 255, 0.45);
}

.premium-section {
  background-color: var(--bg-color);
  padding: 100px 0;
}

.content-box,
.image-box {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01));
  border-radius: 18px;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  color: var(--primary-color);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
}

.section-subtitle {
  color: var(--primary-color);
  margin-top: 30px;
  font-weight: 600;
}

.section-text {
  color: var(--text-color);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

.service-list {
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.service-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 12px;
  top: 4px;
}

.image-box {
  align-items: center;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.image-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top,
      rgba(47, 193, 234, 1) 0%,
      rgba(47, 193, 234, 0.8) 40%,
      rgba(47, 193, 234, 0.2) 60%,
      rgba(47, 193, 234, 0) 100%);

  pointer-events: none;
}

.image-box img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}


.programs-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.programs-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #32b7ff;
  margin-bottom: 20px;
}

.programs-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 320px;
}

.programs-socials {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.programs-socials span .fa-brands {
  margin: 0 20px 0 0;
  font-size: 2rem;
}

/* .program-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
} */

.video-thumb {
  position: absolute;
  inset: 0;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.play-btn:hover {
  background: #32b7ff;
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.2));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

@media (max-width: 576px) {
  .program-card {
    height: 220px;
  }
}

.program-card {
  position: relative;
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-swiper .swiper-wrapper {
  border-radius: 20px;
}

.programs-swiper img {
  max-height: 500px;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 500px;
}

.close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
}

.subscription-design-section {
  position: relative;
  /* background: #000; */
  /* color: #fff; */
  /* padding: 120px 0; */
  /* overflow: hidden; */
  /* width: 100%; */
  height: 100vh;
}

.subscription-design-section::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.05),
      transparent 70%);
  z-index: 0;
}

.subscription-design-section .container {
  position: relative;
  z-index: 2;
}

.visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showup-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.highlight-title {
  color: #2ec4ff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.description-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.no-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.no-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.no-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ff3b3b;
  font-weight: bold;
}

.closing-text {
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .visual-block {
    margin-bottom: 40px;
  }
}

.section-communication {
  width: 100%;
}

.section-spacing {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
}

.section-highlight {
  font-size: 1.3rem;
  font-weight: 600;
}

.text-accent {
  color: var(--primary-color);
}

.section-description {
  max-width: 850px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.section-services p {
  margin: 0;
  font-size: 0.95rem;
}

.media-zone {
  max-width: 900px;
  height: 400px;
  background: linear-gradient(180deg, #555, #2f2f2f);
  border-radius: 6px;
  overflow: hidden;
}

.media-slide {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.media-overlay span {
  background: var(--primary-color);
  color: #000;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.cta-banner {
  background-color: var(--primary-color);
  color: #000;
  padding: 50px 20px;
}

.cta-banner h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.idiba-ad-strip {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 48px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.idiba-ad-strip .swiper-wrapper {
  align-items: stretch;
}

.idiba-ad-strip .swiper-slide {
  height: auto;
}

.idiba-ad-card {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(360px, 38dvh, 400px);
  min-height: 360px;
  max-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(42, 191, 232, 0.24);
  border-radius: 8px;
  background: #080d12;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.idiba-ad-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 641px) and (max-width: 991.98px) {
  .idiba-ad-card {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .idiba-ad-strip {
    width: min(100% - 24px, 1180px);
  }

  .idiba-ad-card {
    height: 390px;
    min-height: 390px;
    max-height: 390px;
  }
}

.idiba-ad-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
}

.idiba-ad-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(3, 8, 13, 0.68);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
  cursor: pointer;
}

.idiba-ad-nav:hover,
.idiba-ad-nav:focus-visible {
  border-color: rgba(42, 191, 232, 0.85);
  background: rgba(3, 8, 13, 0.9);
  outline: none;
}

.idiba-ad-nav--prev {
  left: 16px;
}

.idiba-ad-nav--next {
  right: 16px;
}

.idiba-ad-pagination {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 14px !important;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.idiba-ad-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(3, 8, 13, 0.62);
  opacity: 1;
}

.idiba-ad-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  border-color: var(--primary-color);
  background: var(--primary-color);
}

@media (max-width: 640px) {
  .idiba-ad-nav {
    width: 36px;
    height: 36px;
  }

  .idiba-ad-nav--prev {
    left: 10px;
  }

  .idiba-ad-nav--next {
    right: 10px;
  }
}

.idiba-title {
  color: #35c9ff;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.idiba-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #2a2a2a;
  height: 100%;
  transition: all .35s ease;
}

.idiba-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(53, 201, 255, .25);
  border-color: #35c9ff;
}

.idiba-featured {
  border: 2px solid #35c9ff;
  transform: scale(1.05);
}

.idiba-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb400;
  color: #000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.idiba-subtitle {
  font-size: 13px;
  opacity: .8;
  margin-bottom: 18px;
}

.idiba-price {
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0;
}

.idiba-price span {
  font-size: 16px;
}

.idiba-price small {
  font-size: 13px;
  display: block;
}

.idiba-old {
  text-decoration: line-through;
  opacity: .5;
}

.idiba-eco {
  color: #3cff9a;
  font-size: 14px;
}

.idiba-btn {
  background: #35c9ff;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 22px;
}

.idiba-btn:hover,
.idiba-btn:focus {
  background: #70dcff;
  color: #000;
}

.idiba-list {
  list-style: none;
  padding: 0;
  font-size: 13px;
}

.idiba-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
}

.idiba-list i {
  color: #35c9ff;
  margin-top: 3px;
}

.idiba-process {
  background: #35c9ff;
  color: #000;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: .4s ease;
}

.idiba-process:hover {
  transform: translateY(-6px);
}

.process-step {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .2);
  padding: 14px 16px;
  border-radius: 12px;
}

.process-icon {
  width: 42px;
  height: 42px;
  background: #000;
  color: #35c9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-arrow {
  margin: 12px 0;
  opacity: .7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@media (max-width: 768px) {

  .idiba-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .idiba-featured {
    transform: none;
  }

  .idiba-card {
    padding: 26px 22px;
  }

  .idiba-process {
    margin-top: 25px;
  }

  .process-step p {
    font-size: 13px;
    line-height: 1.4;
  }
}

.footer-glass-dark {
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
  color: #f0f7ff;
}

.footer-content {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 40px;
}

.footer-logo img {
  width: 220px;
  transition: 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.newsletter-glass {
  width: 100%;
  display: flex;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-glass input {
  background: transparent;
  border: none;
  padding: 12px 15px;
  font-size: 16px;
  color: #fff;
  flex: 1;
}

.newsletter-glass input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-glass button {
  background: linear-gradient(135deg, #00aaff, #006bb3);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-glass button:hover {
  background: linear-gradient(135deg, #2cc2ff, #0088cc);
  transform: translateY(-2px);
}

.social-glass {
  display: flex;
  gap: 12px;
}

.glass-icon {
  width: 45px;
  height: 45px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  color: white;
  font-size: 19px;
}

.glass-icon:hover {
  background: rgba(0, 170, 255, 0.3);
  transform: translateY(-4px) scale(1.1);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.waves-dark-container {
  position: relative;
  margin-top: 50px;
}

.waves-dark {
  width: 100%;
  height: 160px;
}

.parallax-dark>use {
  animation: moveWaveDark 6s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax-dark>use:nth-child(1) {
  animation-delay: -2s;
}

.parallax-dark>use:nth-child(2) {
  animation-delay: -1s;
}

.parallax-dark>use:nth-child(3) {
  animation-delay: -0.5s;
}

@keyframes moveWaveDark {
  0% {
    transform: translateX(-90px);
  }

  100% {
    transform: translateX(90px);
  }
}

.copyright-dark {
  color: #b8c7d9;
  text-align: center;
  padding: 14px 0 25px;
  font-size: 14px;
  opacity: .8;
}

.newsletter-glass input:focus {
  box-shadow: 0 0 2px rgba(0, 174, 255, 0.4);
}

.newsletter-glass button {
  position: relative;
  overflow: hidden;
}

.newsletter-glass button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  opacity: 0.8;
}

.newsletter-glass button:hover::before {
  animation: shine 0.9s linear;
}

@keyframes shine {
  from {
    left: -120%;
  }

  to {
    left: 120%;
  }
}

.glass-icon {
  transition: transform 0.25s ease;
  will-change: transform;
}

.mini-banner-section,
.mini-banner-full {
  display: flex;
  height: 50vh;
  width: 100%;
  background: #000d13c0;
  position: relative;
}

.mini-banner-full {
  background: none;
}

.mini-banner-section::before,
.mini-banner-full::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mini-banner-section::before {
  background-image: url("/vitrine/assets/img/banners/bg-about.webp");
}

.mini-banner-full::before {
  background-image: url("/vitrine/assets/img/banners/mini\ banner\ full.webp");
}

.mbs-header {
  margin-left: 7rem;
}

.mini-banner-title {
  font-size: 3rem;
}

.mini-banner-description {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin: 0;
}

.mb-icon {
  font-size: 5.5rem;
  color: #ffffff3e;
}

.about-presentation-section {
  margin: 0;
  padding: 0;
}

.w-60per,
.w-50per,
.w-40per {
  padding: 1rem;
}

.w-60per {
  width: 60%;
}

.w-50per {
  width: 50%;
}

.w-40per {
  width: 40%;
}

.img-content-about {
  height: 100%;
  display: flex;
  justify-content: center;
}

.idiba-depmt-about {
  width: 100%;
  height: 140px;
  position: RELATIVE;
  top: 0;
}

.presentation-bloc {
  padding: 3rem;
}

.pres-title-bloc {
  margin-bottom: 1.5rem;
}

.pres-icon {
  font-size: 2.1rem;
  color: #fff;
  margin-right: 1rem;
}

.pres-title {
  font-size: 2rem;
  color: #0dcaf0;
  font-weight: 600;
  line-height: 2.8rem;
}

.text-pres {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
}

.notre-presentation {
  background: #050505;
  border-radius: 0 0 40px 40px;
}

.une-equipe {
  background: #050505;
}

.notre-histoire-pres {
  background: #000d13c0;
}

.mission-pres {
  background: #ac280030;
}

.card-des-content {
  width: 85%;
  background: #050505;
  padding: 4rem;
  position: absolute;
  top: 60%;
  border-radius: 40px;
}

.idiba-depmt-about {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  background: none;
}

.idiba-depmt-about .idiba-depmt-content {
  position: relative;
  padding: 50px 0;
  width: 100%;
}

.gallery-section-full .wrapper-cards .row {
  margin-right: 0;
}

.gallery-full-item {
  padding-right: 0;
  margin-top: 0.8rem;
}

.light-theme {
  --text-color: #171717 !important;
  --text-primary: #171717;
  --text-secondary: #40464e;
  --text-muted: #69717b;
  --surface-page: #f5f1e8;
  --surface-panel: #fffdf8;
  --surface-soft: #f0ece3;
  --surface-input: #f7f3eb;
  --border-subtle: rgba(15, 23, 42, .15);
  --interactive-text: #20242a;
  --text-on-dark: #fff;
  --btn-border: #242424 !important;
  --background-color: #f5f1e8;
  --header-active: #087eaa;
  --header-hover: #075e80;
  --header-shadow: rgba(8, 126, 170, .16);
  --primary-color: #087eaa;
  --secondary-color: #07598a;
  --green-color: #087744;
  --lightning-background-first: rgba(255, 255, 255, .34) 0%, rgba(245, 241, 232, 0) 70%;
  --lightning-background-second: rgba(32, 199, 239, .08) 0%, rgba(245, 241, 232, 0) 70%;
  ----values-bg: #fffdf8;
  --about-cyan: #087eaa;
  --about-green: #087b64;
}

body.light-theme .idiba-app-shell,
body.light-theme .idiba-shell-main,
body.light-theme .idiba-shell-content {
  color: #171717;
  background: #f5f1e8;
}

body.light-theme .idiba-shell-sidebar,
body.light-theme .idiba-shell-topbar,
body.light-theme .idiba-shell-drawer,
body.light-theme .idiba-shell-more-panel,
body.light-theme .idiba-command-panel {
  color: #171717;
  border-color: rgba(15, 23, 42, .14);
  background: #fffdf8;
}

body.light-theme .idiba-shell-item,
body.light-theme .idiba-shell-dock-btn,
body.light-theme .idiba-shell-icon-btn,
body.light-theme .idiba-shell-search input,
body.light-theme .idiba-command-item,
body.light-theme .idiba-command-search input {
  color: #20242a;
}

body.light-theme .idiba-shell-search,
body.light-theme .idiba-command-search {
  border-color: rgba(15, 23, 42, .16);
  background: #f7f3eb;
}

body.light-theme .idiba-shell-item.is-active {
  color: #056f96;
  border-color: rgba(8, 126, 170, .35);
  background: rgba(8, 126, 170, .08);
}