/********** Template CSS **********/


:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 60px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #0DC7F2;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
        margin-left: 33px;
    }

    .navbar-dark .navbar-brand h1 {
        padding-left: 20px;
        color: #0DC7F2;
    }
}
 .navbar-dark .navbar-brand h1 {
        padding-left: 20px;
    }

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #0DC7F2;
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 25px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background:#0DC7F2;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0DC7F2;
    border-radius: 2px;
    transform: rotate(-45deg);
    margin-left: auto;
    margin-right: auto;
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.webp) center center no-repeat;
    background-size: cover;
}
.bg-header-aboutUs {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/aboutUS.webp) center center no-repeat;
    background-size: cover;
    
}
.bg-header-contactUs {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/ContactUs.webp) center center no-repeat;
    background-size: cover;
    
}
.bg-header-digital {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/DigitalService.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-webApp {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/webApp.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-IA {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/IA.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-digital-marketing {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/digital-marketing.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-branding {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/branding.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-it-solution {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/IT-solution.webp) center center no-repeat;
    background-size: cover;   
}
.bg-header-blogs {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/blogs.webp) center center no-repeat;
    background-size: cover;   
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.webItem{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 400;
    color: #212427;
    text-decoration: none;
    letter-spacing: -0.01em;
    font-size: 21px;
    line-height: 1.8;
}

.webItem a{
        font-weight: 400;
    padding-top: 4px;
    font-weight: 400;
    text-decoration: none;
        border: none !important;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    letter-spacing: -0.01em;
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    box-sizing: border-box;
}
.booking-img {
  max-width: 100%;
  height: auto;
  max-height: 350px; /* <-- ajuste cette valeur (300–400px selon ton goût) */
  object-fit: contain;
}
.static-grid {
    gap: 30px;
    display: -webkit-flex;
    display: flex
;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.static-grid .static-grid-item {
    max-width: calc(33% - 15px);
    -webkit-flex-basis: 28%;
    flex-basis: 28%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.thumbnail-search {
    position: relative;
    padding: 0;
    background: #fff;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
    border: 1px solid #EEECE9;
    height: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
        -webkit-border-radius: 16px;
    border-radius: 16px;
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.06);
    -moz-transition: ease 200ms all;
    -o-transition: ease 200ms all;
    -webkit-transition: 
ease 200ms all;
    transition: 
ease 200ms all;
    display: -webkit-flex;
    display: flex
;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.thumbnail-search .image {
    order: 10;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #EEECE9;
    -moz-transition: ease 400ms all;
    -o-transition: ease 400ms all;
    -webkit-transition: 
ease 400ms all;
    transition: 
ease 400ms all;
}
@media (min-width: 992px) {
    #slide-search-wrapper:before {
        position: absolute;
        left: 0;
        #bg-pos {
    position: absolute;
    left: 0;
    top: 164px;
    right: 0;
    bottom: 0;
}
.thumbnail-search .content {
    padding: 30px;
}
        top: auto;
        right: 0;
        bottom: -7%;
    }
}
#bg-pos {
    position: absolute;
    left: 0;
    top: 164px;
    right: 0;
    bottom: 0;
}
.thumbnail-search .content {
    padding: 30px;
}
 .container #main-content.laynav-products .titles .title {
    margin: 0;
    font-weight: 400;
    color: #1b639e;
    text-decoration: none;
    letter-spacing: -0.01em;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.05em;
    
}


.thumbnail-search:hover {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -moz-box-shadow: 0 7px 19px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 7px 19px rgba(0, 0, 0, 0.2);
    box-shadow: 0 7px 19px rgba(0, 0, 0, 0.2);
}
.thumbnail-search .image img:not(.b-loaded) {
    width: auto;
}
.thumbnail-search .arrow-circle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fda800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

/* Lorsqu’on survole la carte, le cercle apparaît */
.thumbnail-search:hover .arrow-circle {
  opacity: 1;
  transform: scale(1);
}

.buildWeb .freeDemo, .web-section .webItem a, .container .buildWeb .freeBtn ,.freeBtn, .allFeature .allFeatureBtn,.footer-about .justify-content-center,.secondCard,.decouvrireBtn,.demandDevisbtn,.allFeatureBtn,.arrowRight,.fleshIcon{
  background-color: #0DC7F2; /* bleu foncé */
  color: #fff; /* texte blanc */
  border: none;
  transition: all 0.3s ease;
}
.textColor{
    color: #0DC7F2;
}
  
.buildWeb .freeDemo:hover,.web-section .webItem a:hover, .container .buildWeb .freeBtn:hover ,.freeBtn:hover, .allFeature .allFeatureBtn:hover.footer-about:hover .justify-content-center, .firstCard,.decouvrireBtn:hover,.demandDevisbtn:hover,.allFeatureBtn:hover,.fleshIcon:hover{
  background-color: #A6B0B2; /* jaune/orange au survol */
  color: #0C1117; /* texte foncé */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.navBarSite h6{
    color: #0DC7F2;;
}
.navBarSite i{
    color: #0DC7F2;
}*
section h3{
      font-size: 1.25rem; /* Ajuste cette valeur selon le rendu souhaité */
}

  .normalSection h3 {
            font-family: 'Nunito', sans-serif;
            color: #A6B0B2 !important;
        }
        section p, li {
            font-family: 'rubik', sans-serif;
            font-size: 1.05rem;
            color: #333;
        }
       

      .iconColor{
    background-color: #0DC7F2;
}

.grisSection{
    background-color: #ECEBE9;
}
.image-Border{
    border-radius: 8px;
}
.form-control:focus,
.form-select:focus {
  border-color: #0DC7F2 !important;
  box-shadow: none;
  outline: none;
}
/* Bouton outline personnalisé */
.btn-outline-primary {
  color:  #0DC7F2; /* Couleur du texte */
  border: 2px  var( #0DC7F2); /* Bordure visible */
  background-color: transparent; /* Pas de fond */
  font-weight: 600;
}

/* Effet au survol */
.btn-outline-primary:hover
 {
  background-color: #0DC7F2; /* Fond coloré au hover */
  color: #fff; /* Texte blanc */
}

.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 6px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: #0DC7F2;
  border: 2px solid var(--accent-color);
}
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}
.aboutLink{
  text-decoration: underline; 
}
.devisLink{
  text-decoration: underline
}
.section-title2 {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 60px;
  position: relative;
}
.section-title2 h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.section-title2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background:#0DC7F2;
    border-radius: 2px;
}

.section-title2.text-center::before {
    left: 50%;
    margin-left: -75px;
}



.section-title2::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}


.section-title2.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.video-container {
    width: 430px;   /* Ajuste la taille selon ton besoin */
    height: 430px;  /* Doit être égal à width pour un cercle parfait */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.rounded-circle2{
    border-radius: 30%;
}
.transform-business:hover{
    background-color: #0DC7F2;
}



/* Optionnel : enlever l'ombre quand cliqué */
.accordion-button-portfelio:focus {
    box-shadow: none;
}

.accordion-button-portfelio{
     font-size: 1.3rem;      /* Taille comme un h3 */
    font-weight: bold;       /* Gras comme un h3 */
    color: #333;             /* Couleur du texte */
    padding: 0;              /* Retire padding par défaut si besoin */
}
@media (max-width: 768px) {
  .sub-accordion {
    padding-left: 30px; /* ajuste la valeur selon ton besoin */
    background-color: white;
  }
}

.accordion-button-portfelio::after {
    color: #060606;
    /* La flèche Bootstrap reste inchangée */
    transform: rotate(0deg);
}

.accordion-button-portfelio:not(.collapsed)::after {
        background-color: #e0f7fa;  /* Couleur quand la section est ouverte */
    transform: rotate(180deg); /* Flèche inversée quand ouvert */
}
/* Fond par défaut pour l'item */
.accordion-item-port {
    background-color: white;  /* Couleur quand fermé */
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: background-color 0.3s;
}

/* Quand le bouton à l'intérieur est ouvert */
.accordion-item-port .accordion-button:not(.collapsed) {
    background-color: transparent; /* annule le fond du bouton */
}

/* Fond du contenu ouvert */
.accordion-item-port .accordion-collapse.show {
    background-color: white; /* Couleur quand ouvert */
    border-radius: 0.5rem;
}
.blogDesc{
    background-color: white;
}
  .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 180px; /* ← Augmente cette valeur pour monter l’icône */
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-icon {
  width: 35px;
  margin-top: 12px;
}

.whatsapp-float:hover {
  background-color: #1ebc57;
  transform: scale(1.1);
}
/* Déplace légèrement le chatbot Supportfast vers le haut */
/* Déplace le bouton du chatbot Supportfast vers le haut */
iframe[src*="supportfast"] {
  bottom: 120px !important; /* ← Ajuste cette valeur pour le remonter */
  margin-bottom: 118px;
  right: 20px !important;
  z-index: 9998 !important; /* juste en dessous de WhatsApp */
  position: fixed !important;
  width: 75px;
  height: 75px;

}.ai-chat-widget .chat-button {
  position: fixed !important;
  top: auto !important;
  bottom: 110px !important;
  right: 20px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #0DC7F2 !important;
  border-radius: 50% !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  z-index: 9998 !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}
.ai-chat-widget .chat-button:hover {
  background-color: #0ab0d8 !important;
  transform: scale(1.1);
}

/* Style par défaut (sera appliqué via JS) */
@media (max-width: 599px) {
    .ai-chat-widget .chat-button-mobile.custom-style {
        display: flex !important;
        position: fixed !important;
        visibility: visible !important;
        width: 55px !important;
        height: 55px !important;
        border-radius: 30px !important;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2) !important;
        cursor: pointer !important;
        transition: all 0.2s ease-in-out !important;
        bottom: 120px !important;
        margin: 0px -4px !important;
        align-items: center !important;
        z-index: 1002 !important;
    }
}
.Faq-Section .accordion-button-portfelio {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    padding: 0;
}
.Our-Cybersecurity-Services {
    height: 500px; /* Desktop */
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .Our-Cybersecurity-Services, .API-Automation-Services {
        height: 250px !important; /* Mobile : petite */
    }
}
