/********** Template CSS **********/

        /*** General ***/
        .back-to-top {
            position: fixed;
            display: none;
            right: 30px;
            bottom: 30px;
            z-index: 99;
        }

        .fw-medium {
            font-weight: 600;
        }

        .mt-6 {
            margin-top: 5rem;
        }

        .mb-6 {
            margin-bottom: 5rem;
        }

        .pt-6 {
            padding-top: 5rem;
        }

        .pb-6 {
            padding-bottom: 5rem;
        }

        /*** 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;
        }

        /*** Button ***/
        .btn {
            transition: .5s;
            font-weight: 600;
            text-transform: uppercase;
        }

        .btn-primary,
        .btn-outline-primary:hover {
            color: var(--bs-light);
        }

        .btn-blue{
            background: var(--bs-blue);
            color: var(--bs-light);
            border-radius: 25px;
        }

        .btn-blue:hover{
            background: var(--bs-red);
            color: var(--bs-light);
            border-radius: 25px;
        }

        .bg-yellow,
        .btn-yellow {
            background-color: #f4cb00; /* Jaune doré */
            border: none;
        }

        .btn-secondary,
        .btn-outline-secondary:hover {
            color: var(--bs-dark);
        }

        .btn-square {
            width: 38px;
            height: 38px;
        }

        .btn-sm-square {
            width: 32px;
            height: 32px;
        }

        .btn-lg-square {
            width: 48px;
            height: 48px;
        }

        .btn-xl-square {
            width: 60px;
            height: 60px;
        }

        .btn-xxl-square {
            width: 75px;
            height: 75px;
        }

        .btn-square,
        .btn-sm-square,
        .btn-lg-square,
        .btn-xl-square,
        .btn-xxl-square {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: normal;
        }

        /*** Navbar ***/
        .sticky-top {
            top: -100px;
            transition: .5s;
        }

        .navbar .navbar-nav .nav-link {
            margin-right: 35px;
            padding: 25px 0;
            color: var(--bs-dark);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 600;
            border-bottom: 2px solid var(--bs-yellow);
            outline: none;
        }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            color: var(--bs-red);
            border-bottom: 2px solid var(--bs-white);
            transition: .5s;
        }

        .navbar .dropdown-toggle::after {
            border: none;
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            vertical-align: middle;
            margin-left: 8px;
        }

        .navbar-toggler-icon {
            display: inline-block;
            width: 1.5em;
            height: 1.5em;
            vertical-align: middle;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
        }

        @media (max-width: 991.98px) {
            .navbar .navbar-nav .nav-link {
                margin-right: 0;
                padding: 10px 0;
                border-bottom: none;
            }

            .navbar .navbar-nav {
                margin-top: 15px;
                border-top: 1px solid #EEEEEE;
            }
        }

        @media (min-width: 992px) {
            .navbar .nav-item .dropdown-menu {
                display: block;
                border: none;
                margin-top: 0;
                top: 150%;
                opacity: 0;
                visibility: hidden;
                transition: .5s;
            }

            .navbar .nav-item:hover .dropdown-menu {
                top: 100%;
                visibility: visible;
                transition: .5s;
                opacity: 1;
            }
        }

        /*** Header ***/
        .carousel .carousel-caption {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: center;
            text-align: left;
            background: rgba(0, 0, 0, .7);
            padding: 3rem;
            padding-left: 11rem;
            z-index: 1;
        }

        .carousel .carousel-indicators {
            top: 0;
            bottom: 0;
            left: 0;
            right: auto;
            width: 80px;
            flex-direction: column;
            margin: 0;
            margin-left: 3rem;
        }

        .carousel .carousel-indicators [data-bs-target] {
            width: 70px;
            height: 70px;
            text-indent: 0;
            margin: 5px 0;
            border: 2px solid #FFFFFF;
            overflow: hidden;
        }

        .carousel .carousel-indicators [data-bs-target] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 992px) {
            .carousel .carousel-item {
                position: relative;
                min-height: 600px;
            }
            
            .carousel .carousel-item img {
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .carousel .carousel-indicators [data-bs-target] {
                width: 60px;
                height: 60px;
            }

            .carousel .carousel-caption {
                padding-left: 10rem;
            }
        }

        @media (max-width: 768px) {
            .carousel .carousel-item {
                min-height: 500px;
            }

            .carousel .carousel-indicators [data-bs-target] {
                width: 50px;
                height: 50px;
            }

            .carousel .carousel-caption {
                padding-left: 9rem;
            }
        }

        @media (min-width: 1200px) {
            .carousel .carousel-item .display-1 {
                font-size: 7rem;
            }
        }

        .page-header {
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
            background-size: cover;
        }

        /*** About ***/
        .about-img {
            position: relative;
            padding-left: 45px;
        }

        .about-img::before {
            position: absolute;
            content: "";
            width: 200px;
            height: 300px;
            top: 0;
            left: 0;
            border: 10px solid var(--bs-blue);
            animation: animateUpDown 3s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes animateUpDown { 
            0% { 
                top: -25px;
            }
            50% { 
                top: -45px;
            }
            100% { 
                top: -25px;
            } 
        }

        /*** Features ***/
        .feature {
            background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/1.png) left center no-repeat;
            background-size: cover;
        }

        .feature-row {
            box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        }

        .feature-item {
            border-color: rgba(0, 0, 0, .03) !important;
        }

        .feature-icon {
            position: relative;
            transition: .5s;
        }

        .feature-item:hover .feature-icon {
            margin-left: 3rem;
        }

        .feature-item a::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 1px;
            background: var(--bs-secondary);
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: -1;
        }

        .feature-item a:hover {
            color: var(--bs-primary) !important;
        }

        .feature-item a:hover::after {
            background: var(--bs-primary);
        }

        .experience .progress {
            height: 5px;
        }

        .experience .progress {
            width: 0px;
            transition: 3s;
        }

        /*** Service ***/
        .service .service-item {
            position: relative;
            margin-top: 45px;
        }

        .service .service-inner {
            position: relative;
            height: 100%;
            margin-top: 45px;
            background: var(--bs-white);
            box-shadow: 0 0 45px rgba(0, 0, 0, .05);
        }

        .service .service-inner::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 0;
            left: 0;
            bottom: 0;
            transition: 1s;
            background: var(--bs-primary);
        }

        .service .service-inner:hover::before {
            height: 100%;
            top: 0;
        }

        .service .service-item img {
            margin-top: -45px;
            padding-left: 45px;
        }

        .service .service-item * {
            position: relative;
            transition: .5s;
            z-index: 1;
        }

        .service .service-item:hover h5,
        .service .service-item:hover p {
            color: var(--bs-white);
        }

        .service .service-item:hover a {
            padding-left: 45px !important;
        }

        /*** Team ***/
        .team .team-item {
            background: var(--bs-white);
            box-shadow: 0 0 45px rgba(0, 0, 0, .05);
            border-radius: 8px;
            overflow: hidden;
        }

        .team .team-item .image-container {
            position: relative;
        }

        .team .team-item .price-tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #dc3545;
            color: white;
            padding: 5px 10px;
            font-weight: bold;
            font-size: 1.1rem;
            border-bottom-left-radius: 8px;
        }

        .team .team-item .dimension {
            display: block;
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 10px;
        }

        .team .team-item .btn-yellow {
            background-color: #ffc107;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            width: 100%;
            transition: background-color 0.3s;
        }

        .team .team-item .btn-yellow:hover {
            background-color: #e0a800;
        }

        .team .team-item .product-image {
            width: 100%;
            height: auto;
            transition: opacity 0.3s ease;
        }

        .team .team-item .default-image {
            opacity: 1;
            position: relative;
        }

        .team .team-item .hover-image {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
        }

        .team .team-item:hover .default-image {
            opacity: 0;
        }

        .team .team-item:hover .hover-image {
            opacity: 1;
        }

        .hidden-product {
            display: none;
        }

        .show-more-btn {
            display: inline-flex;
            align-items: center;
            background-color: #f4cb00;
            color: #000;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            width: 150px;
            transition: background-color 0.3s ease;
        }

        .show-more-btn:hover {
            background-color: #e0a800;
            color: #000;
        }

        .show-more-btn b,
        .show-more-btn i {
            background-color: transparent !important;
        }

        /*** Contact ***/
        @media (min-width: 992px) {
            .contact-info::after {
                position: absolute;
                content: "";
                width: 0px;
                height: 100%;
                top: 0;
                left: 50%;
                border-left: 1px dashed rgba(255, 255, 255, .2);
            }
        }

        @media (max-width: 991.98px) {
            .contact-info::after {
                position: absolute;
                content: "";
                width: 100%;
                height: 0px;
                top: 50%;
                left: 0;
                border-top: 1px dashed rgba(255, 255, 255, .2);
            }
        }

        /*** Footer ***/
        .footer .btn.btn-link {
            display: block;
            margin-bottom: 5px;
            padding: 0;
            text-align: left;
            color: var(--bs-secondary);
            font-weight: normal;
            text-transform: capitalize;
            transition: .3s;
        }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--bs-blue);
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--bs-red);
            letter-spacing: 1px;
            box-shadow: none;
        }

        .copyright {
            background: #222222;
        }

        .copyright a {
            color: var(--bs-white);
        }

        .copyright a:hover {
            color: var(--bs-primary);
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            height: 100px;
            background-color: #fff;
        }

        .logo-track {
            display: flex;
            width: calc(250px * 8);
            animation: scroll 20s linear infinite;
        }

        .logo-item {
            flex: 0 0 auto;
            width: 250px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-item img {
            max-height: 80px;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .logo-item img:hover {
            filter: grayscale(0%);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        body {
            overflow-x: hidden;
        }

        /*** Banner ***/
        .banner {
            width: 100%;
            height: 500px;
            background: url('/img/Covermodified2.png') center/cover;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: bg 5s linear infinite;
            z-index: 0;
          
        }

        .left-content {
            position: relative;
            z-index: 1;
            max-width: 400px;
            margin-left: 80px;
            color: #fff;
            font-family: 'Roboto', sans-serif;
            text-align: left;
        }

        .logo-custom-banner {
            padding-top: 40px;
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
        }

        .dropping-texts {
            display: inline-block;
            width: 300px;
            text-align: left;
            height: 36px;
            vertical-align: -2px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .dropping-texts > div {
            font-size: 0px;
            opacity: 0;
            margin-left: -30px;
            position: absolute;
            font-weight: 300;
            box-shadow: 0px 60px 25px -20px rgba(0,0,0,0.5);
        }

        .dropping-texts > div:nth-child(1) {
            animation: roll 5s linear infinite 0s;
        }
        .dropping-texts > div:nth-child(2) {
            animation: roll 5s linear infinite 1s;
        }
        .dropping-texts > div:nth-child(3) {
            animation: roll 5s linear infinite 2s;
        }

        .order-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
            text-decoration: none;
            background-color: var(--bs-blue);
            color: var(--bs-light);
        }

        .order-btn:hover {
            background-color: var(--bs-red);
            color: var(--bs-light);
            transform: scale(1.05);
        }

        .social-icons {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-right: 40px;
        }
        
        .social-icons a {
            margin-bottom: 15px; /* Espace entre les icônes */
            transition: transform 0.2s ease;
        }
        
        .social-icons .social-icon {
            width: 40px; /* Ajustez la taille selon vos besoins */
            height: 40px;
            transition: transform 0.2s ease;
        }
        
        .social-icons a:hover .social-icon {
            transform: translateX(-5px); /* Maintient l'effet de survol */
        }
        
        /* Responsive pour écrans plus petits */
        @media (max-width: 768px) {
            .social-icons {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
                margin-right: 0;
            }
        
            .social-icons .social-icon {
                width: 30px; /* Taille réduite pour mobile */
                height: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .social-icons .social-icon {
                width: 25px; /* Taille encore plus petite pour petits écrans */
                height: 25px;
            }
        }

        .logo-custom {
            max-width: 150px;
            height: auto;
        }


        /*** Animations ***/
        @keyframes roll {
            0% {
                font-size: 0px;
                opacity: 0;
                margin-left: -30px;
                margin-top: 0px;
                transform: rotate(-25deg);
            }
            3% {
                opacity: 1;
                transform: rotate(0deg);
            }
            5% {
                font-size: 24px;
                opacity: 1;
                margin-left: 0px;
                margin-top: 0px;
            }
            20% {
                font-size: 24px;
                opacity: 1;
                margin-left: 0px;
                margin-top: 0px;
                transform: rotate(0deg);
            }
            27% {
                font-size: 0px;
                opacity: 0.5;
                margin-left: 20px;
                margin-top: 100px;
            }
            100% {
                font-size: 0px;
                opacity: 0;
                margin-left: -30px;
                margin-top: 0px;
                transform: rotate(15deg);
            }
        }

        @keyframes roll2 {
            0% {
                font-size: 0px;
                opacity: 0;
                margin-left: -30px;
                margin-top: 0px;
                transform: rotate(-25deg);
            }
            3% {
                opacity: 1;
                transform: rotate(0deg);
            }
            5% {
                font-size: 24px;
                opacity: 1;
                margin-left: 0px;
                margin-top: 0px;
            }
            30% {
                font-size: 24px;
                opacity: 1;
                margin-left: 0px;
                margin-top: 0px;
                transform: rotate(0deg);
            }
            37% {
                font-size: 1500px;
                opacity: 0;
                margin-left: -1000px;
                margin-top: -800px;
            }
            100% {
                font-size: 0px;
                opacity: 0;
                margin-left: -30px;
                margin-top: 0px;
                transform: rotate(15deg);
            }
        }


        /*** Responsive Styles ***/
        @media (max-width: 768px) {
            .banner {
                height: auto;
                padding: 30px 20px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .left-content {
                margin-left: 0;
                max-width: 100%;
                margin-bottom: 20px;
            }

            .dropping-texts {
                width: 250px;
            }

            .dropping-texts > div {
                font-size: 0px;
            }

            main {
                font-size: 2rem;
                -webkit-text-stroke: 1px #d6f4f4;
                text-shadow: 3px 3px 0px #0d6efd,
                    4.5px 4.5px 0px #ffc107,
                    6px 6px 0px #dc3545;
            }

            @keyframes roll {
                0% {
                    font-size: 0px;
                    opacity: 0;
                    margin-left: -30px;
                    margin-top: 0px;
                    transform: rotate(-25deg);
                }
                3% {
                    opacity: 1;
                    transform: rotate(0deg);
                }
                5% {
                    font-size: 20px;
                    opacity: 1;
                    margin-left: 0px;
                    margin-top: 0px;
                }
                20% {
                    font-size: 20px;
                    opacity: 1;
                    margin-left: 0px;
                    margin-top: 0px;
                    transform: rotate(0deg);
                }
                27% {
                    font-size: 0px;
                    opacity: 0.5;
                    margin-left: 20px;
                    margin-top: 100px;
                }
                100% {
                    font-size: 0px;
                    opacity: 0;
                    margin-left: -30px;
                    margin-top: 0px;
                    transform: rotate(15deg);
                }
            }

            @keyframes roll2 {
                0% {
                    font-size: 0px;
                    opacity: 0;
                    margin-left: -30px;
                    margin-top: 0px;
                    transform: rotate(-25deg);
                }
                3% {
                    opacity: 1;
                    transform: rotate(0deg);
                }
                5% {
                    font-size: 20px;
                    opacity: 1;
                    margin-left: 0px;
                    margin-top: 0px;
                }
                30% {
                    font-size: 20px;
                    opacity: 1;
                    margin-left: 0px;
                    margin-top: 0px;
                    transform: rotate(0deg);
                }
                37% {
                    font-size: 1000px;
                    opacity: 0;
                    margin-left: -800px;
                    margin-top: -600px;
                }
                100% {
                    font-size: 0px;
                    opacity: 0;
                    margin-left: -30px;
                    margin-top: 0px;
                    transform: rotate(15deg);
                }
            }

            .social-icons {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
                margin-right: 0;
            }

            .logo-custom-banner {
                max-width: 85px;
            }

            .logo-custom {
                max-width: 85px;
            }
        }

        @media (max-width: 576px) {
            .logo-custom-banner {
                max-width: 70px;
            }

            .logo-custom {
                max-width: 70px;
            }

            .dropping-texts {
                width: 200px;
            }

            main {
                font-size: 1.5rem;
                -webkit-text-stroke: 1px #d6f4f4;
                text-shadow: 2px 2px 0px #0d6efd,
                    3px 3px 0px #ffc107,
                    4px 4px 0px #dc3545;
            }

            @keyframes roll {
                5% {
                    font-size: 18px;
                }
                20% {
                    font-size: 18px;
                }
            }

            @keyframes roll2 {
                5% {
                    font-size: 18px;
                }
                30% {
                    font-size: 18px;
                }
                37% {
                    font-size: 800px;
                    margin-left: -600px;
                    margin-top: -400px;
                }
            }
        }

        .fond-jaune {
            background-image: url(/img/22.jpg);
            background-size: cover;
        }

        .hidden-product {
            display: none;
        }

        .show-more-btn {
            font-size: 1.2rem;
            width: auto;
            background: none;
            color: var(--bs-dark);
            padding: 10px 20px;
            border-radius: 4px;
        }

        .show-more-btn:hover {
            font-size: 1.2rem;
            background: none;
            color: var(--bs-blue);
            transition: 0.5s;
            padding: 10px 20px;
            border-radius: 4px;
        }

        .show-more-btn i {
            margin-left: 4px;
            font-size: 14px;
        }

        .show-more-btn:hover i {
            margin-left: 8px;
            font-size: 14px;
            transition: 0.5s;
        }

        /*** Location Info ***/
        .location-info {
            position: absolute;
            bottom: 20px;
            right: 40px;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--bs-light);
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            font-weight: 400;
        }

        .location-info i {
            font-size: 1.5rem;
            color: var(--bs-light);
            transition: color 0.3s ease;
        }

        .location-info span {
            color: var(--bs-light);
        }

        .location-info:hover i {
            color: var(--bs-blue);
        }

        /*** Responsive Styles ***/
        @media (max-width: 768px) {
            .location-info {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .location-info {
                font-size: 0.9rem;
            }

            .location-info i {
                font-size: 1.2rem;
            }
        }

        /* Ajustement pour éviter le chevauchement avec la navbar fixe */
        #cachet-mousse, #cachet-crystal, #cachet-sec, #partners {
            scroll-margin-top: 80px; /* Ajustez selon la hauteur de votre navbar */
        }
