/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto+Mono:wght@400;700&display=swap');

:root {
    --font-default: nourd-bold ;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: 'Poppins', sans-serif;
  }
  /* Global Colors */
  :root {
    --color-default: #121ebb;
    --color-default-rgb: 33, 37, 41;
    --color-background: #ffffff;
    --color-background-rgb: 255, 255, 255;
    --color-primary: #eee9e9;
    --color-primary-rgb: 232, 69, 69;
    --color-secondary: #043788;
    --color-secondary-rgb: 50, 53, 58;
    --color-box-background: #ffffff;
    --color-box-background-rgb: 255, 255, 255;
    --color-inverse: #ffffff;
    --color-inverse-rgb: 255, 255, 255;
  }
  /* Nav Menu Colors */
  :root {
    --color-nav: #048d5f;
    --color-nav-hover: #0a0468;
    --color-nav-dropdown: #0e3bb9;
    --color-nav-dropdown-hover: #082b9e;
    --color-nav-dropdown-background: #ffffff;
    --color-nav-mobile-background: #ffffff;
  }





  

  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
 /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    color: #222;
    background-image: url('/assets/uploads/dommaine/digital.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ffffff;

    /* Police moderne pour le texte */
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Titres du site */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}
/*-=====================================---*/
  ul li a{
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
  }
  ul li a:hover {
    color: rgba(var(--color-primary-rgb), 0.7);
    text-decoration: none;
  }
/*-=====================================---*/
/*==========================================================*/
section {
    color: black;
    background-color: #ffffff;
    padding: 10px 0;
    overflow: clip;
  }
  /* Global Scroll Margin Top
  ------------------------------*/
  section {
    scroll-margin-top: 90px;
    margin: 10px 10px 10px 10px;
  }

  @media (max-width: 1199px) {
    section {
      scroll-margin-top: 66px;
      margin: 10px 10px 10px 10px;

    }
  }








  /***********************************************************************
  Affiche le menu quand la taille de l'ecran atteind ou depasse 1200px
  ******************************************************************************/
  /*============Navigation Menu : Resolution Bar de Navigation partie Ordinateur============*/

  /* ================= TOP HEADER ================== */

/* ================= CONTAINER HEADER ================= */
/* ================= CONTAINER HEADER ================= */

.container-fluid.d-flex.align-items-center.justify-content-between {
    padding-left: 90px;
    padding-right: 90px;
        padding-bottom: 10px;

    background: #ffffff;
}

.header {
    width: 100%;
    z-index: 999;
    background: #e7b201;
}

/* ================= LOGO ================= */

.logo {
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.logo img {
    height: 140px !important;
    width: auto !important;
    max-height: none !important;
    display: block;
}

/* ================= NAV MENU ================= */

.navmenu {
    display: flex;
    align-items: center;
}

.navmenu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navmenu a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    padding: 8px 4px;
    text-decoration: none;
    position: relative;
}

/* Underline */
.navmenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after {
    width: 100%;
}

/* ================= CTA ================= */

.navmenu .cta-btn a {
    padding: 12px 26px;
    background: #a51c03;
    color: #ffffff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.navmenu .cta-btn a::after {
    display: none;
}

.navmenu .cta-btn a:hover {
    background: #022496;
    transform: translateY(-1px);
}

/* ================= TOGGLE MOBILE ================= */

.mobile-nav-toggle {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: #111;
    transition: transform 0.3s ease;
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .container-fluid.d-flex.align-items-center.justify-content-between {
        padding: 0 30px;
    }

    .logo img {
        height: 80px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 20px;
        width: 260px;
        background: #ffffff;
        border-radius: 16px;
        padding: 20px 0;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        flex-direction: column;
    }

    .mobile-nav-active .navmenu ul {
        display: flex;
    }

    .navmenu li {
        width: 100%;
        text-align: center;
    }

    .navmenu a {
        padding: 14px 20px;
    }

    .navmenu a::after {
        display: none;
    }

    .navmenu .cta-btn a {
        width: 80%;
        margin: 10px auto 0;
        display: block;
    }
}

@media (max-width: 576px) {

    .container-fluid.d-flex.align-items-center.justify-content-between {
        padding: 0 20px;
    }

    .logo img {
        height: 65px;
    }

    .navmenu ul {
        right: 10px;
        width: 90%;
    }
}

/* ================================================= */
/* RESPONSIVE MOBILE */
/* ================================================= */

@media (max-width: 576px) {

    .container-fluid.d-flex.align-items-center.justify-content-between {
        padding: 0 20px;
    }

    .logo img {
        height: 65px;
    }

    .navmenu ul {
        right: 10px;
        width: 90%;
    }
}

  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  /* ========================================================= */
/* CSS du Preloader et de l'Animation de Rotation */
/* ========================================================= */

/* Le Preloader lui-même doit être visible et en haut */
#preloader {
    position: fixed;
    inset: 0;
    background: #f4f6f9;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-dots {
    display: flex;
    gap: 8px;
}

.loader-dots span {
    width: 12px;
    height: 12px;
    background: #089481;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.loader-dots span:nth-child(2){
    animation-delay: .2s;
}

.loader-dots span:nth-child(3){
    animation-delay: .4s;
}

@keyframes bounce {
    from { transform: translateY(0); opacity: .5; }
    to { transform: translateY(-12px); opacity: 1; }
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }

  .scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
  }

  .scroll-top:hover {
    background-color: rgba(var(--color-primary-rgb), 0.8);
    color: #ffffff;
  }

  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }



  
/* Conteneur principal du carrousel */
/* Conteneur principal du carrousel */
/* Conteneur principal du carrousel */
    /* 1. VARIABLES GLOBALES ET SETUP */
     /* ========================================================= */
/* 1. VARIABLES GLOBALES ET SETUP */
/* ========================================================= */
/* ===================================================== */
/* VARIABLES GLOBALES (facile à ajuster) */
/* ===================================================== */
:root { 
    --primary-color: #eb6f0a;
    --secondary-color: #f4b400;
    --dark-color: #0f0f0f;
    --light-color: #ffffff;
    --text-muted: #cccccc;
}

/* ===================================================== */
/* HERO / SLIDER */
/* ===================================================== */
.hero {
    margin-top: 120px;
    min-height: calc(100vh - 120px);
    height: auto;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    min-height: calc(100vh - 120px);
    position: relative;
}

/* ===== SLIDE ===== */
.hero-slide {
    position: absolute;
    inset: 0;
    min-height: calc(100vh - 120px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.hero-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* ===== CONTAINER ===== */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    min-height: calc(100vh - 120px);
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* ===== CONTENU ===== */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
    padding: 60px 0;
}

/* ===== TEXTE ===== */
.hero-text {
    flex: 1;
    max-width: 600px;
    color: var(--light-color);
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

/* ===== BOUTON ===== */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #ffcc33);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.4);
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffcc33, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 180, 0, 0.5);
    color: var(--dark-color);
}

.hero-btn:active {
    transform: translateY(-1px);
}

/* ===== IMAGE ===== */
.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ===== ANIMATION FLOTTANTE ===== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(2deg); 
    }
}

/* ===================================================== */
/* RESPONSIVE - GRAND ÉCRAN (1400px+) */
/* ===================================================== */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-image img {
        max-width: 520px;
    }
}

/* ===================================================== */
/* RESPONSIVE - DESKTOP MOYEN (1200px - 1399px) */
/* ===================================================== */
@media (max-width: 1399px) {
    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-image img {
        max-width: 400px;
    }
}

/* ===================================================== */
/* RESPONSIVE - PETIT DESKTOP (992px - 1199px) */
/* ===================================================== */
@media (max-width: 1199px) {
    .hero {
        margin-top: 100px;
        min-height: calc(100vh - 100px);
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: calc(100vh - 100px);
    }

    .hero-container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text {
        max-width: 500px;
    }

    .hero-image img {
        max-width: 350px;
    }
}

/* ===================================================== */
/* RESPONSIVE - TABLETTE (768px - 991px) */
/* ===================================================== */
@media (max-width: 991px) {
    .hero {
        margin-top: 90px;
        min-height: calc(100vh - 90px);
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: calc(100vh - 90px);
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .hero-container {
        padding: 0 25px;
        align-items: center;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 35px;
        padding: 40px 0;
    }

    .hero-text {
        max-width: 100%;
        order: 1;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

/* ===================================================== */
/* RESPONSIVE - MOBILE (moins de 768px) - SANS IMAGE */
/* ===================================================== */
@media (max-width: 767px) {
    .hero {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: calc(100vh - 80px);
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0;
        padding: 30px 0;
    }

    /* === CACHER L'IMAGE SUR MOBILE === */
    .hero-image {
        display: none !important;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* ===================================================== */
/* RESPONSIVE - PETIT MOBILE (moins de 576px) */
/* ===================================================== */
@media (max-width: 575px) {
    .hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: calc(100vh - 70px);
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 25px 0;
    }

    .hero-text {
        padding: 0 5px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
}

/* ===================================================== */
/* RESPONSIVE - TRÈS PETIT MOBILE (moins de 400px) */
/* ===================================================== */
@media (max-width: 399px) {
    .hero {
        margin-top: 65px;
        min-height: calc(100vh - 65px);
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: calc(100vh - 65px);
    }

    .hero-container {
        padding: 0 12px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-text h1 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ===================================================== */
/* RESPONSIVE - PAYSAGE MOBILE */
/* ===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-slider,
    .hero-slide,
    .hero-container {
        min-height: auto;
        height: auto;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        padding: 30px 0;
        gap: 30px;
    }

    .hero-text {
        max-width: 60%;
    }

    .hero-text h1 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    /* Image visible en paysage si écran assez large */
    .hero-image {
        display: flex;
        max-width: 35%;
    }

    .hero-image img {
        max-width: 160px;
        max-height: 180px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

/* Cacher image en paysage sur petit écran */
@media (max-height: 500px) and (max-width: 700px) and (orientation: landscape) {
    .hero-image {
        display: none !important;
    }

    .hero-text {
        max-width: 100%;
    }
}

/* ===================================================== */
/* ANIMATIONS D'ENTRÉE */
/* ===================================================== */
.hero-slide.active .hero-text h1 {
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-slide.active .hero-text p {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.hero-slide.active .hero-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide.active .hero-image img {
    animation: slideInRight 0.8s ease-out 0.3s forwards, float 5s ease-in-out 1s infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================== */
/* ACCESSIBILITÉ */
/* ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.5s ease;
        transform: none !important;
    }

    .hero-slide.active {
        transform: none !important;
    }

    .hero-image img {
        animation: none;
    }

    .hero-slide.active .hero-text h1,
    .hero-slide.active .hero-text p,
    .hero-slide.active .hero-btn,
    .hero-slide.active .hero-image img {
        animation: none;
    }
}
  /*========================================================================================*/

 /*===========================DOMMAINES DES COMPETENCES===================================================
  /*======================Mes animations (bubble lumineux)==========================*/
  

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
  }

  .section-bg {
    background-color: #f3f5fa;
  }

  .section-title {
    text-align: center;
    padding-bottom: 10px;
  }

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #86380b;
  }
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #f18102;
    bottom: 0;
    left: calc(50% - 20px);
  }
  .section-title p {
    margin-bottom: 0;
  }


 /*--------------------------------------------------------------
  # Services Details Page
  --------------------------------------------------------------*/
  /* Service-details Section - Services Details Page
  ------------------------------*/
  /* =========================
   SERVICES SECTION
========================= */

  

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #f1a013;
    border-bottom: 3px solid #f18407;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  }

  .contact .info i {
    font-size: 20px;
    color: #e8830f;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }

  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #7e5837;
  }

  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #191c21;
    font-weight: 600;
  }

  .contact .info .email p {
    padding-top: 5px;
  }

  .contact .info .social-links {
    padding-left: 60px;
  }

  .contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
  }

  .contact .info .social-links a:hover {
    background: #de7e2b;
    color: #fff;
  }

  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #f59648;
    color: #fff;
  }

  .contact .php-email-form {
    width: 100%;
    border-top: 3px solid #e79332;
    border-bottom: 3px solid #e78d1f;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }

  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }

  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }

  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }

  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }

  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form .form-group {
    margin-bottom: 20px;
  }


  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }

  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: #e0b694;
  }

  .contact .php-email-form input {
    height: 44px;
  }

  .contact .php-email-form textarea {
    padding: 10px 12px;
  }

  .contact .php-email-form button[type=submit] {
    background: #ef8f11;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }

  .contact .php-email-form button[type=submit]:hover {
    background: #d95d04;
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }


/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION DOMAINES INTERACTIFS */
/* ========================================================= */

/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION DOMAINES INTERACTIFS */
/* ========================================================= */

/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION DOMAINES INTERACTIFS (VERSION VERTICALE) */
/* ========================================================= */

/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION DOMAINES INTERACTIFS (Horizontal) */
/* ========================================================= */

/* ========================================================= */
/* CSS AMÉLIORÉ POUR LA SECTION DOMAINES INTERACTIFS */
/* ========================================================= */

:root {
    /* Définissez votre couleur principale ici (Turquoise/Vert Professionnel) */
    --couleur-principale-domaine: #1ebe8e;
    --couleur-primaire-foncee: #0ea376;
    --couleur-texte-sombre: #333;
    --couleur-fond-clair: #f8f8f8;
}

/* =================================================== */
/* Section Domaines d'Expertise (Style Amélioré) */
/* =================================================== */

#domaines-interactifs {
    background-color: #ffffff; /* Fond léger pour détacher la section */
    
    padding: 80px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Titre */
#domaines-interactifs h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0d1a26;
}

#domaines-interactifs .text-muted {
    font-size: 18px;
    color: #6c757d !important;
}

/* --- Navigation Horizontale (Boutons) --- */
.domaines-nav-wrapper-horizontal {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e9ecef; /* Ligne de séparation claire */
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.domaine-nav-item {
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0; /* Coins arrondis seulement en haut */
    background-color: #f1f3f5;
    color: #5a6a7c;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent; /* Pour l'indicateur actif */
    display: flex;
    align-items: center;
}

.domaine-nav-item:hover {
    background-color: #e0e6ed;
    color: #343a40;
}

.domaine-nav-item.active {
    background-color: #ffffff; /* Le fond devient blanc sur l'actif */
    color: #007bff; /* Couleur d'accentuation (Bleu Vif) */
    border-bottom-color: #007bff; /* La barre bleue en dessous */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05); /* Ombre subtile sur le haut */
}

.domaine-icon {
    font-size: 1.2rem;
    color: #007bff; /* Icônes toujours bleues */
}

.domaine-nav-item:not(.active) .domaine-icon {
    color: #5a6a7c; /* Icônes grisées si inactives */
}

/* --- Contenu Principal (Le Slide) --- */
.domaine-contenu-principal {
    position: relative;
    overflow: hidden; /* Crucial pour l'animation de slide */
    min-height: 400px; /* Assure que le conteneur ne s'écrase pas pendant la transition */
    padding: 20px 0;
}

.domaine-detail-slide {
    position: absolute; /* Place tous les slides au même endroit */
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* Caché par défaut */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transitions fluides */
    transform: translateX(100%); /* Initialement hors écran à droite */
    padding: 0 15px; /* Pour l'esthétique */
}

.domaine-detail-slide.active {
    position: relative; /* Reprend sa place dans le flux du document */
    opacity: 1;
    transform: translateX(0%);
    /* Animation gérée par JS pour un changement de position immédiat */
}

.domaine-detail-slide:not(.active) {
    display: none; /* Cacher pour ne pas interférer avec le flux */
}

/* Style de l'image */
.domaine-detail-slide .img-fluid {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* Style des listes d'avantages */
.detail-list li {
    padding: 5px 0;
    font-size: 1rem;
    color: #343a40;
}

/* Bouton de détail */
.btn-primary-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-outline:hover {
    background-color: #007bff;
    color: #fff;
}

/* Media Query pour les mobiles */
@media (max-width: 768px) {
    .domaines-nav-wrapper-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    .domaine-nav-item {
        justify-content: center;
        border-radius: 8px;
    }
    .domaine-detail-slide .img-fluid {
        margin-top: 30px;
    }
}
/* Section globale */
/* ==================================== */
/* Section "Pourquoi Nous" - Proposition 2 */
/* ==================================== */

/* ======================================= */
/* Section "Pourquoi Nous" - Proposition 3 */
/* ======================================= */

/* ============================================== */
/* Section "Pourquoi Nous" - Style Dynamique et Moderne */
/* ============================================== */

#pourquoi-nous {
    background-color: #ffffff; /* Fond blanc très propre */
    padding: 100px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

/* --- 1. TITRE CENTRAL --- */
.intro-centered {
    text-align: center;
    margin-bottom: 50px;
}

.intro-centered h2 {
    font-size: 36px;
    font-weight: 600;
    color: #4a70b4; /* Bleu vif pour l'accentuation */
}


/* --- 2. NAVIGATION CLIQUABLE (Timeline) --- */
.key-points-navigation {
    display: flex;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid #e0e0e0; /* La ligne de base grise */
    margin-bottom: 50px;
}

.key-point-btn {
    /* Style de base du bouton */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    color: #888;
    padding: 15px 30px;
    position: relative;
    transition: color 0.3s;
    outline: none; 
}

.key-point-btn:hover {
    color: #555;
}

/* Indicateur Actif (Texte et Point Bleu) */
.key-point-btn.is-active {
    font-weight: 600;
    color: #4a70b4; /* Texte en bleu vif */
}

.key-point-btn::after {
    content: '';
    position: absolute;
    bottom: -11px; /* Positionnement sous la ligne de base */
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #e0e0e0; /* Point inactif gris */
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.key-point-btn.is-active::after {
    background-color: #4a70b4; /* Point actif bleu vif */
    transform: translateX(-50%) scale(1.3); /* Effet de zoom sur l'actif */
}


/* --- 3. CONTENU PRINCIPAL (Image Gauche / Texte Droit) --- */

/* Applique flexbox lorsque le contenu est rendu visible par JS */
.main-content-split {
    display: flex; 
    align-items: center;
    gap: 80px;
    /* transition: opacity 0.4s ease-in-out; (Pour une transition douce en JS) */
}

/* Colonne de Gauche : Image */
.split-left-image {
    flex: 0 0 50%; 
    position: relative;
    padding: 30px; /* Espace pour l'effet d'ombre/empilement */
}

.img-focus {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); 
    border-radius: 10px;
}

/* Effet d'empilement (la carte arrière sombre/grise) */
.split-left-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e6e6e6; 
    transform: translate(-15px, 15px); 
    z-index: -1; 
    border-radius: 10px;
}

/* Colonne de Droite : Texte */
.split-right-text {
    flex: 1;
    padding-left: 20px;
}

.split-right-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0d1a26;
    margin-bottom: 15px;
}

.split-right-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4a70b4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-read-more:hover {
    background-color: #3b5a8e;
}


/* --- Media Queries (Responsivité) --- */
@media (max-width: 992px) {
    .key-points-navigation {
        flex-wrap: wrap; 
        gap: 10px 0; /* Espace entre les lignes de boutons */
    }
    
    .key-point-btn {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .main-content-split {
        flex-direction: column; /* Passage à une seule colonne */
        gap: 40px;
    }

    .split-left-image {
        order: -1; /* L'image passe au-dessus du texte sur mobile */
        flex: 0 0 100%; 
    }
    
    .split-right-text {
        padding-left: 0;
    }
}
/* ================= ACTUALLITE SECTION ================= */
/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION ACTUALITÉS / BLOG (Hiérarchie Pro) */
/* ========================================================= */

/* Assurez-vous que ces variables correspondent à votre thème */

  /* =========================================================================================
   7. SECTION ACTUALITÉS
   ========================================================================================= */


/* ================= PARTENNAIRES SECTION ================= */
/* =========================
   PARTENAIRES
========================= */
/* ========================================
   SECTION MARQUES PARTENAIRES
   ======================================== */

.tk-partners {
    padding: 70px 0;
    background: #fff;
    border-top: 1px solid #e5e0d5;
    border-bottom: 1px solid #e5e0d5;
}

.tk-partners-head {
    text-align: center;
    margin-bottom: 45px;
}

.tk-partners-tag {
    display: inline-block;
    background: #b52a1c;
    color: #fff;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.tk-partners-head h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0 0 12px;
}

.tk-partners-head p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* SLIDER WRAPPER */
.tk-partners-wrap {
    position: relative;
    padding: 0 55px;
}

/* ARROWS */
.tk-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e5e0d5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 3;
    transition: all 0.2s;
}

.tk-arrow:hover {
    border-color: #b52a1c;
    color: #b52a1c;
    background: #faf6eb;
}

.tk-arrow-left {
    left: 0;
}

.tk-arrow-right {
    right: 0;
}

/* PARTNER ITEMS */
.tk-partner-slide {
    padding: 5px;
}

.tk-partner-box {
    background: #fafafa;
    border: 1px solid #eee;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    transition: all 0.3s ease;
}

.tk-partner-box:hover {
    border-color: #c8a415;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}



.tk-partner-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* OWL DOTS - CACHÉS */
.tk-partners-track .owl-dots {
    display: none;
}

/* CTA */
.tk-partners-cta {
    text-align: center;
    margin-top: 40px;
}

.tk-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #b52a1c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.tk-btn-all:hover {
    background: #8c1e14;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181,42,28,0.25);
}

.tk-btn-all i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.tk-btn-all:hover i {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tk-partners-wrap {
        padding: 0 50px;
    }
    .tk-partner-box {
        height: 100px;
        padding: 16px 12px;
    }
    .tk-partner-box img {
        max-height: 50px;
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .tk-partners {
        padding: 50px 0;
    }
    .tk-partners-head h2 {
        font-size: 1.5rem;
    }
    .tk-partners-head p {
        font-size: 0.9rem;
    }
    .tk-partners-wrap {
        padding: 0 45px;
    }
    .tk-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    .tk-partner-box {
        height: 90px;
        padding: 14px 10px;
    }
    .tk-partner-box img {
        max-height: 42px;
        max-width: 90px;
    }
    .tk-btn-all {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .tk-partners {
        padding: 40px 0;
    }
    .tk-partners-head h2 {
        font-size: 1.3rem;
    }
    .tk-partners-head {
        margin-bottom: 30px;
    }
    .tk-partners-wrap {
        padding: 0 40px;
    }
    .tk-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }
    .tk-partner-box {
        height: 80px;
    }
    .tk-partner-box img {
        max-height: 36px;
        max-width: 75px;
    }
    .tk-btn-all {
        font-size: 0.88rem;
    }
}
/* ===== PRODUITS SEMAINE ===== */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header .section-title {
    font-family: 'Montserrat', sans-serif; /* moderne et pro */
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2933;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    padding: 18px 30px;
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, #aa3e3e, #b19105);
    clip-path: polygon(
        0 0,
        95% 0,
        100% 50%,
        95% 100%,
        0 100%,
        5% 50%
    );
    box-shadow: 0 12px 28px rgba(189, 4, 4, 0.35);
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2933;
}

.brands-section .section-header p {
    font-size: 1rem;
    color: #6c757d;
}

.brands-section .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brands-section .brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands-section .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.brands-section .brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* BOUTON CTA */
.btn-brands.btn-gradient {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f2b705, #f28b05);
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-brands.btn-gradient:hover {
    background: linear-gradient(90deg, #f28b05, #f2b705);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



#services .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#services .card-img-top {
  height: 200px;
  object-fit: cover;
}

#services .nav-link {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#services .nav-link:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}

#services .nav-link.active {
  background-color: #b52a1c !important;
  color: #fff !important;
}
/* ========================================================= */
/* CSS DÉDIÉ À LA SECTION #apropos (Présentation) */
/* ========================================================= */

/* Configuration de la section */


/* 1. Titres et Texte */

/* ... Votre CSS précédent ... */


/* 1. Titres et Texte */

/* Le petit sous-titre (class="text-primary") */

    
    /* ... autres variables ... */



/* =============================================
   SECTION PARTENAIRES — STYLE INDUSTRIEL
   ============================================= */

/* =============================================
   SECTION PARTENAIRES — FOND CLAIR
   ============================================= */

/* =============================================
   SECTION PARTENAIRES — FOND CLAIR
   ============================================= */

/* =========================
   SECTION PARTENAIRES
========================= */
