/********** Template CSS **********/
:root {
    /*--primary: #4294E3;*/
    /*---primary: #FED540;*/
    --primary: #FED540;
   /* --secondary: #fb5043 ;*/
    --secondary: #fb5043 ;
    /*--secondary: #FF7455;*/
    --light: #F0F6FF;
    --dark: #262B47;
   /* --dark: #FF7455;*/
}
.text-orange {
    color: #fb5043; /* Texte orange */}

.btn-custom {
    background-color: white; /* Fond blanc */
    color: #fb5043; /* Texte orange */
    border: 1px solid #fb5043; /* Bordure orange */
}

.text-haut-gradient {
    background: linear-gradient(to bottom, #FED540, #fb5043);
    -webkit-background-clip: text;
    color: transparent;
}


/*** Spinner ***/
#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: 700 !important;
}

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

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

.profile-box {
    position: relative;
    z-index: 2; /* Assure que les profils sont au-dessus de la bande */
    background-color: #f5f5f5; /* Couleur de fond gris très clair */
    border-radius: 8px; /* Bords arrondis */
    padding: 20px; /* Espacement interne */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Assure que tous les éléments ont la même hauteur */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.profile-img-container {
    margin-bottom: 15px; /* Espacement entre l'image et le texte */
}

.profile-img-container img {
    width: 200px; /* Largeur uniforme des images */
    height: 200px; /* Hauteur uniforme des images */
    object-fit: cover; /* Assure que l'image ne déforme pas */
    border-radius: 50%; /* Bords arrondis pour l'image */
}





.text-uppercase-light {
    font-family: 'Roboto', sans-serif; /* Utilisation de la police Roboto */
    font-size: 1rem; /* Taille similaire à <h5> */
    font-weight: 100; /* Poids ultra-léger */
    line-height: 1.2; /* Ajustement de la hauteur de ligne */
    margin-bottom: 0.5rem; /* Espacement en dessous */
}




/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.icon-container.gradient-1 {
    background: linear-gradient(45deg, #F855B3, #AF5DE5); /* Dégradé rose-violet pour "High Resolution" */
}

.icon-container.gradient-2 {
    background: linear-gradient(45deg, #ff9733, #ff563d); /* Dégradé orange pour "Retina Ready Screen" */
}

.icon-container.gradient-3 {
    background: linear-gradient(45deg, #f1386a, #fb6550); /* Dégradé rose pour "Easy Editable Data" */
}

.icon-container.gradient-4 {
    background: linear-gradient(45deg, #4084ff, #48cdff); /* Dégradé bleu pour "Fully Secured" */
}

.icon-container.gradient-5 {
    background: linear-gradient(45deg, #6f54f7, #c448f6); /* Dégradé violet pour "Cloud Storage" */
}

.icon-container.gradient-6 {
    background: linear-gradient(45deg, #885ad8, #d6688b); /* Dégradé violet-rose pour "Responsive Ready" */
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

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

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

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

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

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

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

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

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

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        content: url('../img/Logo_Pulse'); /* Remplace le logo */
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    /*background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;*/
    background-position:
        left top,
        right center,
        center bottom;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        100% auto, /* Pour que l'image bg-bottom prenne toute la largeur mais conserve ses proportions */
        cover; /* Le dégradé couvre toute la largeur */
    width: 100%; /* Assure que la largeur du conteneur est à 100% */
    
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


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

.avantages-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
        
    background-repeat: no-repeat;

    background-size:
    auto,
    auto,
    100% auto, /* Pour que l'image bg-bottom prenne toute la largeur mais conserve ses proportions */
    cover; /* Le dégradé couvre toute la largeur */
    width: 100%; /* Assure que la largeur du conteneur est à 100% */
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* Benefices test */
/* Yellow circle positioned behind the image */
/*.yellow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background-color: #FFDB88;
    border-radius: 50%;
    z-index: 0;
}*/

/* Styling and positioning of avantages items */
.avantages-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.avantages-item h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.avantages-item p {
    font-size: 14px;
    color: #666;
}

/* Left side avantages alignment */
.avantages-left-top {
    position: relative;
    top: -300px;
}

.avantages-left-bottom {
    position: relative;
    bottom: 250px;
}



/* Right side avantages alignment */
.avantages-right-top {
    position: relative;
    top: -300px;
}

.avantages-right-bottom {
    position: relative;
    bottom: 250px;
}

/* nat fonctionalité */
.fonctionnalites{
    background-color: rgb(255, 254, 238);
}

.nat-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: 240px;
    text-align: center;
}

.nat-item h5 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.nat-item p {
    font-size: 14px;
    color: #666;
}

/* Left side avantages alignment */
.nat-left-top {
    position: relative;
    top: -350px;
}

.nat-left-bottom {
    position: relative;
    bottom: 250px;
}

/* Right side avantages alignment */
.nat-right-top {
    position: relative;
    top: -350px;
}

.nat-right-bottom {
    position: relative;
    bottom: 250px;
}
/*fin nat fonctionalité*/

/*why choose us*/

.card-why {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 20px; /* Ajout d'un padding pour l'espacement */
    border-radius: 10px; /* Coins arrondis */
}

.card-why:hover {
    background: linear-gradient(45deg, #f1386a, #fb6550); /* Dégradé rose pour "Easy Editable Data" */
    color: rgb(255, 255, 255); /* Changer la couleur du texte au survol */
}

.card-why:hover i {
    color: orange; /* Changer la couleur de l'icône au survol */
}

.card-why:hover h3 {
    color: rgb(255, 255, 255); /* Changer la couleur du texte h3 au survol */
}

/*fin why choose us*/


/*  slide nous font confiance  */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.logo-slider {
    overflow: hidden;
    width: 100%; /* Prend toute la largeur de l'écran */
    background-color: #ffffff; /* Fond blanc pour le bandeau */
    padding: 10px 0;
    margin-top: -70px; /* Vous pouvez ajuster cette valeur */

    
}
.logo-container {
    display: flex;
    flex-shrink: 0; /* Assure que les conteneurs ne se réduisent pas */
}

.slider-track {
    display: flex;
    align-items: center;
    animation: slide 8s linear infinite;
}


.slider-track img {
    width: 150px; /* Ajustez la taille des logos selon vos besoins */
    height: auto;
    margin-right: 150px; /* Espacement entre les logos */
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}



#review {
    margin-top: 100px; /* Ajustez cette valeur selon le besoin */
}
#equipe {
    margin-top: -200px; /* Ajustez cette valeur selon le besoin */
}


/*** Why choose us ***/
.container-why {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.grid-why {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card-why {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-why img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
.card-why h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.card-why p {
    font-size: 14px;
    color: #555;
}


/*** Philisophie p.2***/
    .company-philosophy {
        background-color: #f8f9fa;
        padding: 50px 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        color: #333;
        margin-bottom: 40px;
    }

    .philosophy-item {
        background-color: #fff;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .item-title {
        color: #007bff;
        margin-bottom: 15px;
    }

    .item-content p {
        color: #555;
        line-height: 1.6;
    }

    .item-content ul {
        color: #555;
        padding-left: 20px;
    }

    .item-content li {
        margin-bottom: 10px;
    }

    .separator {
        height: 1px; /* Épaisseur du séparateur */
        background-color: rgba(255, 255, 255, 0); /* Couleur avec transparence */
        margin: 50px 0; /* Marges au-dessus et en dessous */
        width: 100%; /* Largeur du séparateur */
    }
    