﻿/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: 'Raleway', sans-serif;
    --nav-font: 'Raleway', sans-serif;
    --bs-primary: var(--accent-color);
    --bs-primary-rgb: 12, 24, 68; /* couleur RGB de #0C1844 */
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0C1844;  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    /*--accent-color:#106eea;*/
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #000000; /* The default color of the main navmenu links */
    --nav-hover-color: #0C1844; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

    .header .container {
        padding-left: 0 !important;
    }

    /* Topbar */
    .header .topbar {
        height: 40px;
        overflow: hidden;
        background: linear-gradient(160deg, #0C1844, #050C22);
        /*transition: max-height 0.4s ease-in-out; */
        font-family: var(--default-font);
        font-size: 13px;
        display: flex;
        align-items: center;
        /*will-change: transform, opacity; */

    }
        .header .topbar * {
            box-sizing: border-box;
        }


        .header .topbar .container {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Contact info */
        .header .topbar .contact-info {
            display: flex;
            align-items: center;
            height: 100%; /* <-- assure que la hauteur est identique à .social-links */
            padding: 0; /* pour éviter les décalages verticaux */
            margin: 0;
            gap: 20px; /* Ajuste selon l’espace désiré entre les groupes */
        }
    .header .topbar .contact-info > .icon-wrapper {
        height: 100%; /* occupe toute la hauteur */
        display: flex;
        align-items: center; /* centre verticalement */
    }

        .header .topbar .contact-info,
        .header .topbar .social-links {
            display: flex;
            align-items: center;
            height: 40px; /* même hauteur que .topbar */
        }

        .header .topbar .contact-info i,
        .header .topbar .contact-info span,
        .header .topbar .contact-info a {
            font-size: 12px !important;
            line-height: 1 !important;
            padding: 0 !important;
            margin: 0 !important;
            color: var(--contrast-color);
            display: flex;
            align-items: center;
        }
            .header .topbar .contact-info i {
                line-height: 1;
                vertical-align: middle;
            }

        /* Spacing between icon and text */
        .header .topbar .contact-info span {
            padding-left: 5px;
        }

        /* Link hover */
        .header .topbar .contact-info a {
            transition: 0.3s;
            text-decoration: none;
        }

            .header .topbar .contact-info a:hover {
                color: var(--contrast-color);
                text-decoration: underline;
            }

        /* Social links */
        .header .topbar .social-links {
            display: flex;
            align-items: center;
        }

            .header .topbar .social-links a {
                color: color-mix(in srgb, var(--contrast-color), transparent 40%);
                line-height: 1;
                transition: 0.3s;
                margin-left: 20px;
                font-size: 14px;
                display: flex;
                align-items: center;
            }

                .header .topbar .social-links a:hover {
                    color: var(--contrast-color);
                }
            .header .topbar .contact-info *,
            .header .topbar .social-links * {
                box-sizing: border-box;
                vertical-align: middle;
            }
        .header .topbar .icon-wrapper span,

/* Mobile font override */
@media (max-width: 575px) {
    .header .topbar .contact-info span,
    .header .topbar .contact-info a {
        font-size: 11px !important;
    }
}


/*-------------------------------------------------------------------*/
.header .branding {
    background-color: var(--background-color);
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
    margin-right: 10px; /* ou 0 si tu veux vraiment tout coller */
    margin-left: 20px; /* ou 0 si tu veux vraiment tout coller */
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

    .scrolled .header .topbar {
        max-height: 0;
    }
/* Partie ajoutée pour la mise à jour du navbar */
.contact-icons-mobile {
    gap: 10px;
    color:#fff;
}
 .contact-icons-mobile a {
        color: #fff;
        text-decoration: none;
 }
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 100%; /* ajouté ici pour couvrir le besoin topbar */
    gap: 8px; /* ou 10px selon le besoin */
}
/* Réalignement vertical des icônes */
.header .topbar .contact-info i {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.separator {
    font-size: 18px;
    color: var(--contrast-color);
    opacity: 0.6;
    padding: 0 4px;
    align-self: center;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        display: flex;
        justify-content: space-between; /* Espace entre les éléments du menu et les icônes */
        align-items: center;
        padding: 0;
    }
    .container {
        max-width: 1440px;
    }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }
    /* Texte en gras + espacement entre les éléments */
    .navmenu ul > li {
        margin-right: 40px; /* espace entre les éléments du menu */
    }

        .navmenu ul > li:last-child {
            margin-right: 0; /* pas de marge après le dernier */
        }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 10px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

      .navmenu a i,
    .navmenu a:focus i {
        font-size: 16px;
        font-weight: 900;
        font-family: var(--nav-font);
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
        vertical-align: middle;
    }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
 

    .navmenu .dropdown ul {
         left: 0;
        margin: 0;
        padding: 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        background-color: #f0f0f0; /* gris clair */
        margin:0;
        position: relative;
        border-bottom: 0.5px solid white; /* espace entre les items */
    }

    .navmenu .dropdown ul a {
        background-color: #f5f5f5; /* fond gris clair */
        border: 0.5px solid white; /* bordure blanche */
        height: 60px; /* même hauteur */
        padding: 0 30px; /* espacement interne */
        display: flex;
        align-items: center;
        font-size: 16px;
        font-family: var(--nav-font); /* police du menu principal */
        font-weight: 500;
        color: var(--nav-dropdown-color);
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .navmenu .dropdown ul a:hover {
            background-color: var(--nav-hover-color); /* fond un peu plus foncé au survol */
            color: white;
        }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
 

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
    .mobile-header-icons {
        display: flex;
        align-items: center;
        gap: 25px;
        /* position: absolute; (pas présent ici, donc ok) */
    }

    .navmenu .vertical-line {
        width: 1px;
        height: 28px;
        background-color: var(--nav-color);
        opacity: 0.5;
        margin-left: 40px; /* espace après le menu */
        margin-right: 15px; /* espace avant l’icône */
    }

    .navmenu .search-icon i {
        font-size: 22px;
        color: var(--nav-color);
        transition: color 0.3s;
    }

    .navmenu .search-icon:hover i {
        color: var(--nav-hover-color);
        cursor: pointer;
    }
    
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .navmenu .dropdown ul {
        display: none;
        padding: 0;
        margin: 0;
        background: var(--nav-dropdown-background-color);
        flex-direction: column;
    }

    .navmenu .dropdown.dropdown-active ul {
        display: flex;
    }
    /* TOGGLE BUTTON */
    .mobile-nav-toggle {
        position: absolute;
        top: 50%;
        right: 90px;
        width: 40px; /* Largeur fixe pour un bouton carré */
        height: 40px; /* Hauteur fixe pour un bouton carré */
        display: flex;
        justify-content: center; /* Centre le contenu horizontalement */
        align-items: center; /* Centre le contenu verticalement */
        transform: translateY(-50%); /* Centrer verticalement */
        z-index: 1002;
        color: var(--nav-hover-color);
        font-size: 35px;
        font-weight: 900;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        transition: color 0.3s, transform 0.3s;
    }

        .mobile-nav-toggle:hover {
            background: var(--nav-hover-color);
            color: white;
            transform: translateY(-50%) scale(1.1); /* Aggrandir sans déplacer */
        }

    /* NAVMENU CONTAINER */
    .navmenu {
        font-family:var(--heading-font);
        font-size:18px;
        font-weight:700;
        text-transform:capitalize;
        line-height:1.2em;
        letter-spacing:0px;
        width: 100%; 
        position: relative; 
        left: 0; 
        padding: 0;
        z-index: 1000;
    }

        /* MOBILE MENU UL (cache initialement avec opacity, pas display: none) */
        .navmenu > ul {
            list-style: none;
            margin: 0;
            padding: 0;
            position: fixed;
            top: 140px;
            left: 0;
            width: 100%;
            background: var(--nav-dropdown-background-color);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(-20px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 3px solid white;
        }

        .navmenu ul li {
            list-style: none;
        }
            /* LIENS */
        .navmenu > ul > li > a {
            background-color: #f5f5f5;
            border-bottom: 1px solid white;
            padding: 30px 30px 30px 30px;
            font-size: 16px;
            line-height:1.2em;
            font-weight: 700;
            color: var(--nav-color);
            font-family: var(--nav-font);
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

            .navmenu > ul > li > a:hover {
                background-color: var(--nav-hover-color);
                color: white;
            }
            .navmenu > ul > li > a.active {
                background-color: var(--nav-hover-color);
                color: white;
            }
        .navmenu .dropdown ul a {
            background-color: #f5f5f5;
            border: 0.5px solid white;
            height: 50px;
            padding: 0 15px 0 30px; /* ✅ décale uniquement le texte */
            display: flex;
            align-items: center;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 500;
            color: var(--nav-dropdown-color);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

            .navmenu .dropdown ul a:hover {
                background-color: var(--nav-hover-color);
                color: white;
            }
        /* Quand le dropdown est actif, le lien parent change de style */
        .navmenu .dropdown.dropdown-active > a {
            background-color: var(--nav-hover-color);
            color: white;
        }

    /* ACTIVE = fait apparaître le menu */
    .mobile-nav-active .navmenu > ul {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Items du sous-menu */
    .navmenu .dropdown ul li {
        list-style: none;
        border-bottom: 0.5px solid white;
    }
    /* MOBILE HEADER ICONS (hamburger + ligne + loupe) */
    .mobile-header-icons {
        display: flex;
        align-items: center;
        gap: 25px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1001;
        height: 100%;
    }

        .mobile-header-icons .vertical-line {
            width: 1px;
            height: 28px;
            background-color: var(--nav-color);
            opacity: 0.5;
        }

        .mobile-header-icons .search-icon i {
            font-size: 20px;
            color: var(--nav-color);
            background: none;
            transition: color 0.3s ease;
        }

        .mobile-header-icons .search-icon:hover i {
            color: var(--nav-hover-color);
        }

    /* SUPPRIME la modale */

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--nav-hover-color);
        /*background: var(--nav-hover-color); */
        background: rgba(0, 0, 0, 0.1);
    }
        .mobile-nav-active .mobile-nav-toggle:hover {
            background: var(--nav-hover-color);
            color: white;
        }
    /* Supprime scroll si menu ouvert (facultatif) */
    .mobile-nav-active {
        /* overflow: hidden;*/
    }

    /* Branding container centré */
    .branding {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        min-height: 70px; /* ✅ hauteur de référence pour positionner le menu */
       
    }
}

.language-switcher .language-link {
    text-decoration: none;
    color: #fff; /* ou une autre couleur adaptée à ta topbar */
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
}

    .language-switcher .language-link:hover {
        color: #0d6efd; /* Couleur au survol, comme pour les icônes sociales */
    }


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 80vh; /* fixe, pas min-height */
    position: relative;
    padding: 0; /* enlève le padding sinon le contenu déborde */
    overflow: hidden;
}
    .hero::before {
        filter: blur(15px) brightness(0.95) saturate(0.8);
    }

    .hero .container {
        position: relative;
        width: 100%;
        padding-left: 30px; /* Décalage à gauche pour créer de l'espace */
    }
.swiper {
    width: 100%;
    height: 100%; /* prend 100% de la hauteur de .hero */
}

.swiper-slide {
    width: 100%;
    height: 100%; /* prend toute la hauteur du .swiper */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    /* padding-left: 30px; */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* empêche l’interaction avec les slides invisibles */
}
    .swiper-slide .container {
        height: 100%; /* Nécessaire pour propager la hauteur */
        display: flex;
        align-items: center;
    }

.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
}
.content-slide {
    height: 100%;
    width: 100%; /* 👈 à ajouter */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding-left: 30px; /* 👈 tu peux le mettre ici à la place */
    max-width: 700px;
}
    .hero h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        line-height:1.2em;
        color: white;
        margin-bottom: 25px;
    }


        .hero h2 span {
            border: 1px solid white;
            padding: 6px 8px;
            display: inline-block;
            letter-spacing: 2px;
        }




.vertical-line {
    width: 1px; /* Largeur de la ligne */
    height: 28px; /* Hauteur de la ligne */
    background-color: #ccc; /* Couleur de la ligne */
    margin-right: 10px; /* Espace entre la ligne et le bouton */
}

.hero h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 62px;
    font-weight: 700;
    letter-spacing: -2px; /* moins négatif pour mieux coller */
    line-height: 1em;
    text-transform: capitalize;
    color: white;
    margin-bottom: 15px;
    margin-left: 0;

}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
    font-family: 'Roboto', sans-serif;
    color: white;
    margin: 5px 0 30px 0;
    font-size: 16px;
    font-weight: 400;
    line-height:1.5em;
}

    .hero .btn-get-started {
        color: white;
        background: var(--accent-color);
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 1px;
        line-height:1em;
        text-transform:capitalize;
        padding: 12px 45px 20px;
        border: none; /* Retirer la bordure */
        border-radius: 0; /* Supprimer les coins arrondis */
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

        .hero .btn-get-started:hover {
            background-color: white;
            color: var(--accent-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}



.content-slide h2, .content-slide h1, .content-slide p, .content-slide .btn-get-started {
    /* Reprends tes styles actuels */
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero .btn-get-started {
        font-size: 14px;
        padding: 12px 30px;
    }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/* ================================
   SECTION INFO-BANNER (HACHURÉE)
   ================================ */

.info-banner {
    background: repeating-linear-gradient( -45deg, #ffffff, #ffffff 3px, #f1f1f1 3px, #f1f1f1 4px );
    padding: 80px 0;
  
}

    /* Colonne de texte */
    .info-banner h3 {
        font-family: var(--heading-font);
        font-size: 26px;
        font-weight: 900;
        margin-bottom: 15px;
        color: black;
    }

    .info-banner p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #555;
    }

.btn-contact-us {
    font-family: var(--heading-font);
    font-size: 22px;
    color: #0C1844; /* Violet Acadrova */
    background: transparent;
    border: none;
    padding: 2px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .btn-contact-us:hover {
        border: 2px solid #222222;
        background: transparent;
        color: #0C1844;
    }

/* Animation du h3 */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

/* Apparition simple sans mouvement */
.appear-delayed {
    opacity: 0;
    animation: appear 0s ease-in forwards;
    animation-delay: 1.5s; /* délai après le h3 */
}

@keyframes appear {
    to {
        opacity: 1;
    }
}

/* Responsive alignement */
@media (max-width: 767px) {
    .info-banner .col-lg-6 {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ========================
   SLIDER D’IMAGES LOGOS
   ======================== */
.image-slider {
    overflow: hidden;
    position: relative;
    height: 120px;
    width: 100%;
}

.slider-track {
    display: flex;
    width: calc(10 * 200px); /* 10 logos à 200px chacun */
    animation: scroll 100s linear infinite;
}

.slider-item {
    flex: 0 0 200px; /* largeur fixe pour voir 4 logos si conteneur ≈ 800px */
    display: flex;
    justify-content: center;
    align-items: center;
}

    .slider-item img {
        max-height: 80px;
        object-fit: contain;
        padding: 0 10px;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: 0.3s ease;
    }

        .slider-item img:hover {
            filter: none;
            opacity: 1;
        }
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* pour ne pas bloquer le hover sur l'image */
}

.image-container:hover .hover-text {
    opacity: 1;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
.separator-row {
    display: flex;
    align-items: stretch; /* s'assure que toutes les colonnes prennent la même hauteur */
}

.vertical-ligne {
    width: 2px;
    height: 80%;
    background-color: #ccc;
    margin: auto;
}


.image-slider:hover .slider-track {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .slider-item {
        width: 50%; /* 2 logos visibles */
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .slider-item {
        width: 33.3333%; /* 3 logos visibles */
    }
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
/* Étendre les colonnes à la même hauteur */
.featured-services .row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin: 0;
}

/* Supprimer padding pour éviter les coupures */
.featured-services .col-xl-4 {
    padding: 0;
    display: flex;
    overflow:hidden;
}

/* Étendre chaque carte */
.featured-services .service-item {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 30px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    min-height: 300px; /* 👈 ajoute cette ligne */
}

/* Supprimer bordure sur la dernière colonne */
.featured-services .col-xl-4:last-child .service-item {
    border-right: none;
}

/* Appliquer fond violet + texte blanc à tout le 3e bloc */
.featured-services .col-xl-4:nth-child(3) .service-item {
    background-color: var(--accent-color);
    color: #fff;
}
/* Appliquer fond violet + texte blanc à tout le 3e bloc */
.featured-services .col-xl-4:nth-child(3) .service-item  p{

    color: #fff;
}
    /* Inverser le style du h4 dans ce bloc */
    .featured-services .col-xl-4:nth-child(3) .service-item h4 {
        background-color: #fff;
        color: var(--accent-color);
        animation: slide-right-to-left 1s ease-out; /* Animation du défilement */
    }


        /* Style du lien dans le 3e bloc */
        .featured-services .col-xl-4:nth-child(3) .service-item h4 a {
            color: var(--accent-color); /* ou #fff si tu préfères que ce soit blanc */
            text-decoration: none;
        }
        .featured-services .col-xl-4:nth-child(3) .service-item h4 a:hover {
            text-decoration: underline
        }

/* Optionnel : effet au survol */
.featured-services .service-item h4 a:hover {
    text-decoration: underline;
}
/* Bordure verticale entre les colonnes */
/* Appliquer bordure verticale uniquement en desktop */
@media (min-width: 992px) {
    .featured-services .col-xl-4:not(:last-child) .service-item {
        border-right: 1px solid #e0e0e0;
    }
}
.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
    position: absolute;
    top: 0;
    left: 15px;
    background-color: var(--accent-color); /* violet */
    color: #ffffff;
    padding: 20px 20px;
    font-size: 30px;
    font-weight: 900;
    margin: 0;
    display: inline-block; /* 👈 ajoute ceci */
    white-space: nowrap;
}
.featured-services .service-item > div[data-aos] {
    position: absolute;
    top: 0;
    left: 15px;
}

.featured-services .service-item h4 a {
    color: #ffffff;
    transition: ease-in-out 0.3s;
}
    .featured-services .service-item h4 a:hover {
        text-decoration: underline;
    }

.featured-services .service-item p {
  line-height: 24px;
  font-size: 22px;
  color:#000000;
  margin-bottom: 0;
  margin-top:30px;
  transition: ease-in-out 0.3s;
}
.featured-services .underline {
    width: 40px; /* largeur de la ligne */
    height: 4px; /* épaisseur */
    background-color: #28a745; /* vert */
    margin-top: 20px;
    border-radius: 2px;
}
.featured-services .underline1 {
    width: 40px; /* largeur de la ligne */
    height: 4px; /* épaisseur */
    background-color: orange; /* vert */
    margin-top: 20px;
    border-radius: 2px;
}
/* Animation de défilement du texte de droite à gauche */
@keyframes slide-right-to-left {
    0% {
        transform: translateX(100%); /* Commence à droite, hors du cadre */
    }

    100% {
        transform: translateX(0); /* Se déplace jusqu'à la position finale */
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content {
    margin-top: 0;
    flex: 1; /* Ajoute ceci */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* optionnel : pour répartir proprement le contenu */
}
    .about .about-content h2 {
        border: 2px solid black;
        padding: 10px 20px;
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: var(--heading-font);
        font-size: 16px;
        margin-bottom: 30px; /* ajuste la valeur selon l'espacement que tu veux */
    }
.about .about-content h3 {
  font-weight: 900;
  font-size: 50px;
    font-family: var(--heading-font);
    letter-spacing:-2px;
}

    .about .about-content ul {
        list-style: none;
        gap: 30px; /* Espace entre les colonnes */
        list-style: none;
        padding: 0;
    }

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

 .about .about-content ul i {
            background: var(--accent-color);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            font-size: 22px;
            font-weight:700;
            margin-right: 15px;
            color: #fff;
            border-radius: 50px;
        }

.about .about-content ul h4 {
  font-size: 22px;
  font-weight: 500;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .row.gy-3 {
    display: flex;
    align-items: stretch;
}

    /* Forcer les colonnes à prendre toute la hauteur */
    .about .row.gy-3 > .col-lg-6 {
        display: flex;
        flex-direction: column;
    }
.about .about-content p:last-child {
  margin-bottom: 0;
}
.about .btn1 {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}

    .about .btn1:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }
.image-wrapper {
    position: relative;
    overflow: visible;
    flex: 1; /* Ajoute ceci */
    display: flex;
    flex-direction: column;
}
    .image-wrapper img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

.card-info {
    position: absolute;
    bottom: -20px; /* dépasse vers le bas */
    right: -20px; /* dépasse vers la droite */
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    z-index: 10;
    transition: all 0.3s ease;
    /* Bordure uniquement en haut */
    border-top: 4px solid var(--accent-color); /* ou #6f42c1 si tu veux le violet en dur */
}

    .card-info h5 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 700;
        color: #6f42c1;
    }

    .card-info p {
        margin: 0;
        font-size: 18px;
        color: #666;
        line-height: 1.6;
    }




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

    .services .service-item .icon {
        margin: 0 auto;
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.3s;
    }
    .services .service-item .icon {
        transition: transform 0.3s ease;
    }

    .services .service-item:hover .icon {
        transform: translateY(-8px); /* déplace vers le haut de 8px */
    }

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 42px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  margin: 10px 0 15px 0;
  font-size: 30px;
  font-weight:900;
  transition: 0.3s;
  letter-spacing:-1px;
  color:var(--accent-color);
}

/* Style du sous-titre (h4) */
#services .section-title h4 {
    font-family: var(--heading-font);
    font-size: 44px;
    font-weight: 900;
    color: black; /* ou white, selon ton fond */
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

/* Style du paragraphe */
#services .section-title p {
    font-family: var(--body-font, 'Open Sans', sans-serif);
    font-size: 20px;
    color: #222222; /* ou var(--light-color) */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}
#services .section-title h2.section-title-boxed {
    font-family: var(--heading-font);
    font-size: 22px;
    margin: 0 auto 30px auto;
    padding: 10px 25px;
    border: 2px solid black; /* ou white selon ton choix */
    color: black;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    border-radius: 0 !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('/assets/img/Fond2.png'); /* ton image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    padding: 100px 0;
}
#testimonials .row {
    min-height: 100%;
}
#testimonials .col-lg-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* contenu en haut */
    align-items: flex-start; /* contenu à gauche */
    text-align: left;
    height: 100%;
}
#testimonials h4 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 900;
    letter-spacing:-1px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.9;
}
#testimonials p {
    font-family: var(--body-font, 'Open Sans', sans-serif);
    font-size: 22px;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 0;
    opacity: 0.85;
}

    /* Image de fond avec opacité réduite */
.testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-attachment: fixed; /* <-- pour figer l’image */
    background-size: cover;
    background-position: center;
}

    /* Overlay violet semi-transparent (plus foncé) */
.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(12, 24, 68, 0.9); /* Nouveau bleu profond avec opacité */
    z-index: 2;
}

    /* Contenu par-dessus */
    .testimonials .container {
        position: relative;
        z-index: 3;
    }
.boxed-title {
    font-family: var(--heading-font);
    font-size: 22px;
    margin: 20px 0;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    display: inline-block; /* pour garder le cadre autour du texte */
}
.titre-cadre {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 300; /* Rend la police plus fine */
    margin: 20px auto; /* Centre horizontalement */
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    display: inline-block;
    text-align: center;
}
#testimonials .stats {
    margin-top: 30px;

}

#testimonials .stat-number {
    font-size: 65px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

#testimonials .stat-label {
    font-family:var(--heading-font);
    font-size: 30px;
    letter-spacing:-1px;
    font-weight:700;
    color: #cccccc;
    opacity: 0.8;
    margin: 0;
}
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
    #testimonials .stat-label,
    #testimonials .stat-number {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

    .team .team-member .social {
        position: absolute;
        top: 10px;
        right: 10px; /* icônes à droite */
        display: flex;
        flex-direction: column; /* aligner les icônes verticalement */
        gap: 0; /* supprimer l'espacement entre les icônes */
        z-index: 2;
        opacity: 1; /* icônes visibles en permanence */
    }

        .team .team-member .social a {
            background-color: white; /* Fond blanc pour chaque icône */
            padding: 10px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* légère ombre pour l'effet */
            transition: background-color 0.3s, transform 0.3s; /* pour un effet au survol */
            margin: 0; /* Assurer qu'il n'y a pas de marge par défaut entre les icônes */
        }

            .team .team-member .social a:hover {

                background-color: var(--accent-color); /* couleur de fond au survol */
                transform: scale(1.1); /* effet d'agrandissement au survol */
            }
                .team .team-member .social a:hover i {
                    color: white !important;
                }

            .team .team-member .social a i {
                color: var(--accent-color); /* couleur de l'icône */
                font-size: 20px; /* taille des icônes */
                line-height: 0;
            }
.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 900;
  margin-bottom: 5px;
  font-size: 26px;
  color: #000000;
  font-family:var(--heading-font);
}

.team .team-member .member-info span {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-color);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}
.team-boxed-title {
    font-family: var(--heading-font);
    font-size: 22px;
    margin: 0 auto 30px auto;
    padding: 10px 25px;
    border: 2px solid black;
    color: black;
    background-color: transparent;
    display: inline-block;
    text-align: left!important;
    border-radius: 0 !important;
}
.team-boxed-title2 {
    font-family: var(--heading-font);
    font-size: 38px;
    font-weight:700;
    letter-spacing:-1px;
    line-height:1.1em;
     color: #161616;
    background-color: transparent;
    text-align: left;
}
.team .btn1 {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}
.team .btn1:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: none;
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .pricing-item {
    min-height: 600px; /* Fixe et égale pour tous */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* espace bien le contenu */
    background-color: #fff;
    overflow: hidden;
    text-align: center;
    padding: 0;
    cursor: pointer;
    box-shadow: none;
    height:100%;
}
.pricing .location {
    font-size: 14px;
    color: #555;
    font-family: var(--heading-font);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}
/* Bloc Description */
.pricing-description p {
    font-size: 15px;
    font-family: var(--heading-font);
    color: var(--default-color);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Le groupe lieu + bouton */
.pricing-bottom {
    margin-top: auto;
}
    .pricing .location i {
        color: var(--accent-color);
    }
.pricing-subtext p {
    font-size: 15px;
    color: var(--default-color);
    font-family: var(--heading-font);
    text-align:left !important;
    font-weight:300;
}

.green-line {
    width: 60px;
    height: 5px;
    background-color: green; /* ou une couleur directe comme #28a745 */
    border-radius: 2px;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 30px; /* 👈 Espace au-dessus de la ligne */
    display: block;
}
.highlighted-text {
    border: 2px solid black;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
    font-size: 16px;
    margin-bottom: 30px;
}
.highlighted-text {
    border: 2px solid black;
    padding: 10px 20px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
    font-size: 16px;
    margin-bottom: 30px;
    text-align:left;
}

.pricing-title {
    font-size: 40px;
    font-weight: 900;
    font-size: 50px;
    font-family: var(--heading-font);
    color:black;
    letter-spacing: -2px;
    margin-bottom: 20px; /* optionnel, ajuste selon l'espacement désiré */
    background-color: transparent;
    text-align:left;
    line-height:1.1;

}
/* Colonne de gauche */
.pricing-heading {
    text-align: left; /* Alignement du texte à gauche */
}

/* Aligner à droite sur desktop, centré sur mobile */
@media (min-width: 992px) {
    .pricing-subtext {
        text-align: right;
    }

        .pricing-subtext .green-line {
            margin-left: auto;
        }
}


    /* Étiquette en haut (titre) */
    .pricing .pricing-item h3 {
        font-weight: 900;
        font-family: var(--heading-font);
        margin: 0;
        padding: 0;
        height: 80px; /* fixe */
        font-size: 19px;
        letter-spacing: -1px;
        line-height:1.2em;
        color: #fff;
        background: var(--accent-color);
        text-transform: capitalize;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

/* Image */
.pricing .pricing-image {
    width: 100%;
    height: 300px; /* fixe, pas en % */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    transform-origin: center center;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
}

/* Effet de zoom */
.pricing .pricing-item:hover .pricing-image {
    transform: scale(1.1);
}

.pricing .pricing-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* ← couleur + opacité */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.pricing .pricing-item:hover .pricing-image::after {
    opacity: 1;
}
/* Contenu sous l’image */
.pricing .pricing-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
    overflow: hidden; /* évite débordement */
}

/* Prix */
.pricing .pricing-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin: 20px 0 10px;
}

    .pricing .pricing-item h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
        position: relative;
    }

    .pricing .pricing-item h4 span {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 16px;
        font-weight: 300;
    }

/* Liste */
.pricing .pricing-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
}

    .pricing .pricing-item ul li {
        padding-bottom: 16px;
    }

    .pricing .pricing-item ul i {
        color: var(--accent-color);
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing .pricing-item ul .na {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: line-through;
    }

/* Texte */
.pricing .pricing-content p {
    font-family: var(--heading-font);
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bouton */
.pricing .btn-wrap {
    margin-top: auto;
    text-align: left;
    padding-top: 10px;
    margin-bottom: 20px;
}

.pricing .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: 0.3s;
}

    .pricing .btn-buy:hover {
        background: #fff;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
    }

/* Badge */
.pricing .advanced {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
}

/* Image background dynamique */
.img-1 {
    background-image: url('../img/Health.jpg');
}


.img-2 {
    background-image: url('../img/Health2.jpg');
}

.img-3 {
    background-image: url('../img/Health3.jpg');
}

.img-4 {
    background-image: url('../img/Health4.jpg');
}

.img-5 {
    background-image: url('../img/Health5.jpg');
}

.img-6 {
    background-image: url('../img/Health6.jpg');
}
/* Footer similaire à actualité */
.pricing-footer {
    margin-top: 20px;
    flex-shrink: 0;
}

    .pricing-footer hr {
        margin: 15px 0;
        border-color: #ddd;
    }

.pricing-meta {
    font-size: 14px;
    color: #777;
    font-family: var(--heading-font);
    display: flex;
    gap: 5px;
}

    .pricing-meta .separator {
        color: #aaa;
    }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq h2 {
    font-family: var(--heading-font);
    font-size: 14px;
    border: 1px solid black;
    padding: 10px 10px 5px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2em;
    margin-bottom: 10px;
    background-color: transparent;
    width: fit-content;
}
.faq h3 {
    font-weight: 700;
    font-size: 42px;
    font-family: var(--heading-font);
    letter-spacing: -1px;
    line-height: 1.1em;
    margin-top: 0; /* ← important pour compacter */
    margin-bottom: 20px;
}
.faq-toggle {
    font-style: normal;
}
.faq .col-lg-4 > p {
    font-family: var(--default-font);
    font-size: 18px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.8;
    margin-top: 10px;
}
    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-family: var(--heading-font);
        font-weight: 700;
        font-size: 20px;
        line-height: 1.2em;
        margin: 0 30px 0 0;
        transition: color 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .faq .faq-container .faq-item.faq-active h3 {
        color: var(--accent-color);
    }

    .faq .faq-container .faq-item h3 .num {
        color: var(--accent-color);
        padding-right: 5px;
    }

    .faq .faq-container .faq-item h3:hover {
        color: var(--accent-color);
    }

    .faq .faq-container .faq-item .faq-content {
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
        will-change: max-height, opacity; /* ← Ajout important */
    }

        .faq .faq-container .faq-item .faq-content p {
            font-style: var(--default-font);
            font-size: 18px;
            color: rgba(0, 0, 0, 0.4);
            line-height: 1.5em;
            font-weight: 400;
            margin-bottom: 0;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: static;
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        transition: color 0.3s ease;
        cursor: pointer;
        user-select: none;
        margin-right: 10px;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item.faq-active .faq-content {
        max-height: 500px; /* assez pour contenir le texte */
        opacity: 1;
    }

    .faq .faq-container .faq-item.faq-active .faq-toggle {
        color: var(--accent-color);
    }

    .faq .faq-container .faq-item.faq-active {
        border-color: var(--accent-color);
    }

.faq .faq-content details {
    font-style:var(--default-font);
    font-size:15px;
     margin-top: 15px;
     font-weight:400;
    border-left: 4px solid #28a745;
    padding-left: 10px;
}

.faq .faq-content summary {
    font-style: var(--default-font);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.5em;
    font-weight: 400;
    cursor: pointer;
}

.faq .faq-content .paragraph-block {
    font-style: var(--default-font);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    font-weight: 400;
    margin-top: 5px;
    line-height: 1.3em;
}
.faq .faq-content .paragraph-titre {
    font-style: var(--default-font);
    font-size: 13px;
    color:#000000 !important;
    margin-top: 15px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.3em;
}
.faq .faq-container .faq-item .faq-content ul {
    font-style: var(--default-font);
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 0;
    padding-left: 1.5em; /* espace à gauche pour les puces */
    list-style-type: square;
}

    .faq .faq-container .faq-item .faq-content ul li {
        margin-bottom: 0.3em;
        list-style-position: outside;
        color: rgba(0, 0, 0, 0.4);
    }

        .faq .faq-container .faq-item .faq-content ul li::marker {
            color: green; /* remplace par var(--accent-color) si tu veux */
        }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/* MODALE */
.search-modal {
    display: none; /* cachée par défaut */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* fond noir transparent */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Contenu (zone de recherche) */
.search-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Nouveau conteneur pour le champ + icône */
.search-input-wrapper {
    position: relative;
    width: 95vw;
    max-width: 700px;
}

    /* Champ ovale */
    .search-input-wrapper input {
        padding: 15px 60px 15px 20px; /* espace pour l'icône à droite */
        font-size: 24px;
        width: 100%;
        border: 2px solid white;
        border-radius: 50px; /* rendu ovale */
        background-color: transparent;
        color: white;
        outline: none;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

        .search-input-wrapper input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .search-input-wrapper input:focus {
            border-color: var(--nav-hover-color);
            box-shadow: 0 0 15px var(--nav-hover-color);
        }

/* Icône loupe bouton à droite */
.search-icon-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    z-index: 1;
    transition: color 0.3s ease;
}

    .search-icon-btn:hover {
        color: var(--nav-hover-color); /* ou une couleur de ton choix */
    }

.close-search {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid white; /* contour blanc */
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%; /* cercle */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

    .close-search:hover {
        color: var(--nav-hover-color); /* ou une couleur test comme #ff6666 */
        border-color: var(--nav-hover-color); /* change aussi la couleur du cercle au hover */
    }
/* KEYFRAMES */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ÉTAT INITIAL */
.close-search,
.search-input-wrapper {
    opacity: 0;
    transform: translateY(-30px);
}

/* MODALE */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

/* ANIMATIONS */
.animate-close-btn {
    animation: fadeSlideDown 0.5s ease forwards;
}

.animate-input {
    animation: fadeSlideDown 0.5s ease 0.3s forwards;
}



/* La section de présentation */
.presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* ou 80vh, selon ton besoin */
    background-color: white; /* 👈 le reste de la page reste blanc */
    padding: 40px;
}
.image-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; /* ✅ centrage du contenu (cadre blanc) */
}
/* IMAGE DE FOND + OVERLAY */

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/Student.jpg") center 30% / cover no-repeat;
    background-blend-mode: multiply;
    z-index: 0;
    transition: opacity 0.5s ease;
    background-attachment: fixed;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Vidéo masquée au départ */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
/* CONTENU AVEC BORDURE BLANCHE */
.presentation-content {
    position: relative;
    z-index: 2;
    border: 2px solid white;
    color: white;
    padding: 80px 60px;
    max-width: 1560px; /* 👈 fixe une largeur raisonnable */
    width: 80%;
    height: auto;
    min-height: 70vh; /* 👈 hauteur minimale confortable */
    margin: 40px auto; /* 👈 espace haut + centrage horizontal */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3); /* 👈 fond semi-transparent */
    box-sizing: border-box;
    backdrop-filter: blur(3px); /* 👈 pour adoucir le fond vidéo */
    border-radius: 0px; /* 👈 angles légèrement arrondis */
}
    .presentation-content h2 {
        font-family: var(--heading-font);
        font-size: 2.5rem;
        margin-top: 20px;
        font-size: 3rem;
        font-weight: 900;
        color: #fff;
        max-width: 600px; /* 👈 Limite la largeur */
        margin: 0 auto 20px; /* 👈 Centre le texte dans le bloc */
        line-height: 1.2;
    }

    .presentation-content p {
        font-size: 1.1rem;
        max-width: 600px; /* 👈 Limite la largeur */
        margin: 0 auto 20px; /* 👈 Centre le texte dans le bloc */
        line-height: 1.2;
    }
.play-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Le bouton play reste identique à tout à l’heure */
.play-button {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: none;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

    /* Animation au survol */
    .play-button:hover {
        background-color: white;
        color: var(--accent-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

/* Cercle ondulant */
.play-wrapper::before {
    content: '';
    position: absolute;
    width: 100px; /* 👈 même taille que le bouton */
    height: 100px;
    border-radius: 50%;
    background: rgba(126, 87, 194, 0.6);
    z-index: 1;
    animation: ripple 2s infinite ease-out;
    transform: scale(1); /* 👈 démarre à la taille du bouton */
    opacity: 0;
}
@keyframes ripple {
    0% {
        transform: scale(1); /* 👈 taille initiale = bord du bouton */
        opacity: 0.5;
    }

    70% {
        transform: scale(2.5); /* 👈 agrandissement depuis le bord */
        opacity: 0;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1600px; /* change cette valeur selon tes besoins */
    }
}
.pause-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

    .pause-button:hover {
        background-color: rgba(255, 255, 255, 0.8);
        color: black;
    }

/*--------------------------------------------------------------
# About Section Alignée à droite - Ordre inverse de about
--------------------------------------------------------------*/
.aboutlg {
    background-image: repeating-linear-gradient( -45deg, rgba(0, 0, 0, 0.025), /* Lignes très claires */
    rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 3px );
}
.aboutlg .aboutlg-content {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .aboutlg .aboutlg-content h2 {
        border: 2px solid black;
        padding: 10px 20px;
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: var(--heading-font);
        font-size: 16px;
        margin-bottom: 30px;
        background-color: transparent;
        width: fit-content;
    }

    .aboutlg .aboutlg-content h3 {
        font-weight: 900;
        font-size: 50px;
        font-family: var(--heading-font);
        letter-spacing: -2px;
    }

    .aboutlg .aboutlg-content ul {
        list-style: none;
        padding: 0;
    }

        .aboutlg .aboutlg-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 35px;
        }

            .aboutlg .aboutlg-content ul li:first-child {
                margin-top: 35px;
            }

/* Bloc contenant le texte à droite de l'icône */
.gear-check-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    /* Titre aligné à côté de l'icône */
    .gear-check-text h4 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 5px;
    }

    /* Paragraphe sous le titre */
    .gear-check-text p {
        font-size: 15px;
        color: #555;
        margin: 0;
        line-height: 1.5;
    }

/* Icône SVG + check */
.gear-check-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gear-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.check-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    line-height: 1;
    color: white;
    z-index: 1;
}

.aboutlg .row.gy-3 {
    display: flex;
    align-items: stretch;
}

    .aboutlg .row.gy-3 > .col-lg-6 {
        display: flex;
        flex-direction: column;
    }

.aboutlg .aboutlg-content p:last-child {
    margin-bottom: 0;
}

.aboutlg .btn1 {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}

    .aboutlg .btn1:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }

.image-wrapperlg {
    position: relative;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .image-wrapperlg img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

.card-infolg {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    z-index: 10;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

    .card-infolg h5 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 700;
        color: #6f42c1;
    }

    .card-infolg p {
        margin: 0;
        font-size: 18px;
        color: #666;
        line-height: 1.6;
    }

/*--------------------------------------------------------------
# culture Section
--------------------------------------------------------------*/
.culture .image-wrapper {
    width: 90%; /* Prendre toute la largeur disponible */
    position: relative; /* Nécessaire pour positionner la carte à l'intérieur */
    overflow: visible; /* Permet au débordement d'être visible */
    z-index: 0; /* Assure un contexte */
}
    .culture .image-wrapper .custom-quote {
        position: absolute;
        top: 60%; /* descend un peu plus */
        left: 25%; /* garde ce décalage horizontal */
        transform: translateY(-50%);
        max-width: 600px; /* largeur augmentée */
        background: none;
        color: white;
        padding: 0;
        display: flex;
        gap: 20px;
        border-radius: 0;
        box-shadow: none;
        z-index: 10;
        font-family: var(--heading-font);
    }

        .culture .image-wrapper .custom-quote i.fa-quote-left {
            font-size: 52px;
            line-height: 1;
            flex-shrink: 0;
            color: white;
            margin-top: 4px;
        }

        .culture .image-wrapper .custom-quote .quote-text p {
            margin: 0 0 10px 0;
            font-size: 17px;
            line-height: 1.4;
        }

        .culture .image-wrapper .custom-quote strong {
            font-weight: 900;
            font-size: 20px;
            display: block;
        }

        .culture .image-wrapper .custom-quote span {
            color: #f7931e; /* orange */
            font-size: 15px;
        }

    .culture .image-wrapper img {
        height: auto;
        max-height: 700px;
        width: 100%;
        object-fit: cover;
        display: block;
    }
@media (max-width: 768px) {
    /* Sur les petits écrans, l'image prendra 100% de la largeur de la fenêtre */
    .culture .image-wrapper {
        width: 100vw; /* Sur les petits écrans, l'image prendra 100% de la largeur */
        height: auto; /* Laisse la hauteur s'ajuster automatiquement */
        margin-left: 0; /* Aligner l'image à gauche */
        margin-right: 0; /* Pas de marge à droite */
    }
}
.culture .culture-content {
    margin-top: 0;
    flex: 1; /* Ajoute ceci */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* optionnel : pour répartir proprement le contenu */
}

    .culture .culture-content h2 {
        border: 2px solid black;
        padding: 10px 20px;
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: var(--heading-font);
        font-size: 16px;
        margin-bottom: 30px; /* ajuste la valeur selon l'espacement que tu veux */
    }

    .culture .culture-content h3 {
        font-weight: 900;
        font-size: 50px;
        font-family: var(--heading-font);
        letter-spacing: -2px;
    }

    .culture .culture-content ul {
        list-style: none;
        gap: 30px; /* Espace entre les colonnes */
        list-style: none;
        padding: 0;
    }

        .culture .culture-content ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }

            .culture .culture-content ul li:first-child {
                margin-top: 35px;
            }

        .culture .culture-content ul i {
            background: var(--accent-color);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            font-size: 22px;
            font-weight: 700;
            margin-right: 15px;
            color: #fff;
            border-radius: 50px;
        }

        .culture .culture-content ul h4 {
            font-size: 22px;
            font-weight: 500;
        }

        .culture .culture-content ul p {
            font-size: 15px;
        }

.culture .row.gy-3 {
    display: flex;
    align-items: stretch;
}

    /* Forcer les colonnes à prendre toute la hauteur */
    .culture .row.gy-3 > .col-lg-6 {
        display: flex;
        flex-direction: column;
    }

.culture .culture-content p:last-child {
    margin-bottom: 0;
}

.culture .btn1 {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}

    .culture .btn1:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }
/* La carte */
/* La carte (restant au-dessus de l'overlay) */
.culture-card-info {
    position: absolute; /* Positionnement absolu par rapport à l'image */
    top: 30%;
    right: -10vw;
    transform: translateY(-30%);
    width: 50vw;
    max-width: 500px;
    height: auto; /* ← laisse la hauteur s’adapter au contenu */
    min-height: 350px; /* ← ou plus, si tu veux l’agrandir */
    max-height: 650px; /* ← limite à moins que la hauteur de l’image (700px) */
    overflow-y: auto; /* ← si le contenu dépasse, ajoute une scrollbar (optionnel) */
    background: #fff;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 9999; /* La carte doit être au-dessus de l'overlay */
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--accent-color);
    background-color: white !important;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 3px, rgba(240, 240, 240, 0.2) 3px, rgba(240, 240, 240, 0.2) 6px);
}

    /* Optionnel : Ajouter un style au texte */
    .culture-card-info h5 {
        margin: 0 0 10px;
        font-size: 38px;
        font-weight: 700;
    }

    .culture-card-info p {
        margin: 0;
        font-size: 18px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px; /* Ajoute un espace de 20px sous le paragraphe */
    }
/* L'overlay seulement sur l'image */
.image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("assets/img/Intro.jpg") center 30% / cover no-repeat;
    background-blend-mode: multiply;
    z-index: 1; /* L'overlay doit être sous la carte */
}
/* Media Query pour ajuster la carte sur les petits écrans */
@media (max-width: 768px) {
    .culture-card-info {
        width: 70vw; /* Réduit la largeur de la carte sur les petits écrans */
        right: -5vw; /* Ajuste le débordement pour être plus modéré */
    }

        .culture-card-info h5 {
            font-size: 30px; /* Réduit la taille du titre pour s'adapter */
        }

        .culture-card-info p {
            font-size: 16px; /* Réduit la taille du texte */
        }
}
/* Inverser la carte à gauche */
.culture-card-info.left {
    left: -10vw;
    right: auto;
    transform: translateY(-50%);
}

/* Optionnel : si tu veux inverser les animations ou l’alignement */
.culture-reverse .overlay {
    background-position: center 30%;
}
/* Image wrapper décalée vers la droite */
.culture-reverse.image-wrapper {
    margin-left: auto; /* pousse l’image vers la droite */
    margin-right: 0;
    width: 90%; /* ou ajuste selon ton besoin */
}


@media (max-width: 480px) {
    .culture-card-info {
        width: 85vw; /* La carte prend encore plus de place sur les écrans très petits */
        right: -3vw; /* Ajuste le débordement */
        padding: 15px 20px; /* Réduit le padding pour une meilleure lisibilité */
    }

        .culture-card-info h5 {
            font-size: 24px; /* Ajuste la taille du titre sur les très petits écrans */
        }

        .culture-card-info p {
            font-size: 14px; /* Réduit encore plus la taille du texte */
        }
}


/* === CTA Section === */
.cta-section {
    background-image: url('../img/Footer.jpg');
    background-size: cover;
    background-position: top center; /* ✅ affiche le haut de l'image */
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 20px;
    color: white;
    min-height: 60vh;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("assets/img/Intro.jpg") center 30% / cover no-repeat;
    background-blend-mode: multiply;
    opacity: 0.7; /* ajuste l’intensité */
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2; /* Au-dessus de l’overlay */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text {
    flex: 1;
    min-width: 280px;
}

    .cta-text h2 {
        font-family:var(--heading-font);

        font-size: 3.5rem;
        font-weight:900;
        letter-spacing:-1px;
        margin-bottom: 20px;
        color: white;
    }

.cta-container .btn-get-started {
    color: white;
    background: var(--accent-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 12px 45px 20px;
    border: none; /* Retirer la bordure */
    border-radius: 0; /* Supprimer les coins arrondis */
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
.cta-container .btn-get-started:hover {
    background-color: white;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .cta-button:hover {
        background-color: #003eaa;
    }
.cta-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px; /* Augmenter l'espace sous le texte */
    line-height:1.8;
}


/* === Newsletter Section === */
.newsletter-section {
    width: 60%;
    margin: -80px auto 60px auto;
    background-color: var(--accent-color); /* accent-color ici */
    background-image: url('/assets/img/Fond2.png'); /* ton image */
    background-repeat: no-repeat; /* Empêche la répétition */
    background-position: center; /* Centre l’image */
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    color: white;
}
/* Overlay violet semi-transparent (plus foncé) */
    .newsletter-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(12, 24, 68, 0.9); /* Nouveau bleu profond avec opacité */
        z-index: 2;
    }

.newsletter-container {
    position: relative;
    z-index: 3;
}
.newsletter-container h3{
    font-family:var(--heading-font);
    font-size:40px;
    font-weight:700px;
    color:white;
    letter-spacing:-1px;
    text-align:left;
}
    .newsletter-container p {
        font-family: var(--heading-font);
        font-size: 22px;
        color: white;
        text-align: left;
    }

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    .newsletter-form input {
        padding: 12px;
        border: 1px solid #ccc;
        width: 80%;
    }

    .newsletter-form button {
        padding: 12px 20px;
        background-color: var(--accent-color);
        color: white;
        border: none;
        cursor: pointer;
        font-family: var(--heading-font);
        font-size: 22px;
        font-weight: 700;
        transition: all 0.3s ease; /* 🔁 Pour une transition fluide */
    }
        .newsletter-form button:hover {
            background-color: #6f2da8; /* un violet plus foncé (ou ajuste selon ta palette) */
            border: 2px solid #a259ff; /* ou une autre teinte de violet */
        }

/* === Footer === */
.site-footer {
    background-color: #000000; /* fond noir */
    color: white;
    padding: 100px 20px 30px;
    margin-top: -100px;
    position: relative;
    z-index: 0;
}
    .site-footer::before {
        content: "";
        position: absolute;
        top: -200px;
        left: 0;
        right: 0;
        height: 200px;
        background-color: #000000;
        z-index: -1;
    }

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

    .footer-column h4 {
        font-size: 3 rem;
        margin-bottom: 15px;
        color: #ffffff;
        font-family:var(--heading-font);

    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        color: #cbd6e2;
        font-size: 0.95rem;
        line-height: 1.6;
        text-decoration: none;
        line-height:1.8;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
        margin-bottom: 10px;
    }

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444; /* ou #cbd6e2 pour rester dans ton thème */
    padding-top: 20px;
    margin-top: 40px;
    font-family: var(--heading-font);
    font-size: 0.85rem;
    color: #cbd6e2; /* gris clair lisible sur fond noir */
}
.footer-logo {
    width: 200px; /* ou 80px, 60px... teste selon le rendu */
    height: auto; /* garde les proportions naturelles */
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .footer-logo {
        max-width: 80px;
    }
}
.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-family:var(--heading-font);
    font-size:20px;
}

    .contact-info li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: #cbd6e2;
        font-size: 0.95rem;
    }

    .contact-info .icon {
        font-size: 1.5 rem;
        margin-right: 10px;
        color: red; /* Vert Bootstrap */
    }
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .custom-list li::before {
            content: ">";
            position: absolute;
            left: 0;
            top: 0;
            color: #28a745; /* vert Bootstrap */
            font-weight: bold;
        }

    .custom-list a {
        color: #cbd6e2;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }

        .custom-list a:hover {
            color: #ffffff;
        }

/*La section 0 est la bannière à utiliser dans les pages statiques*/
/*----------------------------------------------------------------------------*/
.section0 {
    width: 100%;
    min-height: 40vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
   /* background: linear-gradient( 290deg, rgba(40, 25, 55, 0.6), 
    rgba(85, 60, 120, 0.8) 
    ), url("../img/Presentation.jpg") center 30% / cover no-repeat; */
    background-blend-mode: multiply;
    background-attachment: fixed;
}
.page-accueil.section0 {
    background-image: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/Presentation.jpg");
}

.page-comite.section0 {
    background-image: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/Comite.jpg");
}
.page-pi.section0 {
    background-image: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/Apply.jpg");
    background-repeat: no-repeat;
    background-size: cover; /* S'assure que l'image couvre la zone */
    background-position: center 80%;
}
.page-annuaire.section0 {
    background-image: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/BDD.jpg");
}
.page-manif.section0 {
    background-image: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("../img/Health5.jpg");
    background-repeat: no-repeat;
    background-size: cover; /* S'assure que l'image couvre la zone */
    background-position: center 80%;
}



    .section0::before {
        content: "";
        position: absolute;
        inset: 0;
        filter: blur(15px) brightness(0.95) saturate(0.8);
        z-index: 0;
    }

    .section0 > * {
        position: relative;
        z-index: 1;
    }

    .section0 .container {
        position: relative;
        width: 100%;
        padding-left: 30px; /* Décalage à gauche pour créer de l'espace */
        height: 100%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }

    .section0 h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 49px;
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: 3px;
        color: white;
        margin-bottom: 25px;
    }


        .section0 h2 span {
            /**border: 1px solid white;*/
            padding: 6px 8px;
            display: inline-block;
            letter-spacing: 2px;
        }
.section0 h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 75px; /* Taille ajustée pour plus de lisibilité */
    font-weight: 900;
    text-transform: capitalize;
    line-height: 1.1;
    color: white;
    margin-bottom: 15px;
    margin-left: -5px;
    letter-spacing: -2px;
    margin-left: 0; /* Teste sans pour voir le rendu, parfois -5px décale trop */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

    .section0 h1 span {
        color: var(--accent-color);
    }

.section0 p {
    color: white;
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.section0 .btn-get-started {
    color: white;
    background: var(--accent-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 12px 45px 20px;
    border: none; /* Retirer la bordure */
    border-radius: 0; /* Supprimer les coins arrondis */
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

    .section0 .btn-get-started:hover {
        background-color: white;
        color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }


.section0 .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


@media (max-width: 768px) {
    .section0 h1 {
        font-size: 30px;
    }

    .section0 p {
        font-size: 16px;
        line-height: 24px;
    }

    .section0 .btn-get-started {
        font-size: 14px;
        padding: 12px 30px;
    }
}
.section0-small {
    min-height: 20vh !important;
    padding: 20px 0 !important; /* Ajout essentiel */
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*-------------------------------- Fin de la section0 --------------------------*/
/* -----------------------Mise en page de la section paragraphe ----------------*/
.paragraph-block {
    font-size: 1.2rem !important;
    line-height: 1.8;
    color: #222;
    margin-bottom: 1.5rem;
    text-align: justify;
    list-style-position: outside;
    padding-left: 1.5rem;
}

    .paragraph-block li {
        /* hérite bien du style du texte */
        font-size: inherit;
        color: inherit;
        line-height: inherit;
        text-align: inherit;
    }

        .paragraph-block li::marker {
            color: #6f42c1; /* violet ou autre couleur souhaitée */
            font-weight: bold;
        }
/*-----------------------Fin de la section paragraphe--------------------------*/
/*------------------------Image à mettre au centre au niveau de la présentation -----*/
.styled-image-section {
    background: linear-gradient(135deg, #f0f4f8, #ffffff);
    padding: 60px 0;
    text-align: center;
}

.styled-image {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .styled-image:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }
/*----------------------Fin de l'image ------------------------------------------*/
/* -------------------Footer dans la partie textuelle ----------------------------*/
/* === FooterTxt === */
.FooterTxt {
    background-image: url('../img/Footer.jpg');
    background-size: cover;
    background-position: top center; /* ✅ affiche le haut de l'image */
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 20px;
    color: white;
    min-height: 30vh;
    z-index: 1;
}

.FooterTxt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(290deg, rgba(40, 25, 55, 0.6), rgba(85, 60, 120, 0.8)), url("assets/img/Intro.jpg") center 30% / cover no-repeat;
    background-blend-mode: multiply;
    opacity: 0.7; /* ajuste l’intensité */
    z-index: 1;
}

.FooterTxt-container {
    position: relative;
    z-index: 2; /* Au-dessus de l’overlay */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.FooterTxt-text {
    flex: 1;
    min-width: 280px;
}

    .FooterTxt-text h2 {
        font-family: var(--heading-font);
        font-size: 3.5rem;
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 20px;
        color: white;
    }

.FooterTxt-container .btn-get-started {
    color: white;
    background: var(--accent-color);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 12px 45px 20px;
    border: none; /* Retirer la bordure */
    border-radius: 0; /* Supprimer les coins arrondis */
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

    .FooterTxt-container .btn-get-started:hover {
        background-color: white;
        color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.FooterTxt-button:hover {
    background-color: #003eaa;
}

.FooterTxt-text p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px; /* Augmenter l'espace sous le texte */
    line-height: 1.8;
}
/*-------------------Fin de la section footerTxt ---------------------------------*/


/*-----------------------Table des matières au niveau de la propriété intellectuelle ---------*/
#sommaire {
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

    #sommaire ul {
        list-style-type: none;
        padding-left: 0;
    }

    #sommaire li {
        margin: 5px 0;
    }

    #sommaire a {
        text-decoration: none;
        color: #007bff;
    }

        #sommaire a:hover {
            text-decoration: underline;
        }
/*--------------------Fin de la table des matières ------------------------------------------*/
/*-------------------Fil d'ariane -----------------------------------------------------------*/
.breadcrumb-container {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1em;
    border: 1px solid white;
    padding: 6px 4px;
    display: inline-block;
    letter-spacing: 2px;
    color: white;
    width: fit-content; /* ajuste la largeur au contenu */
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
}

    .breadcrumb li::after {
        content: ">";
        margin-left: 5px;
        margin-right: 5px;
        color: white;
    }

    .breadcrumb li:last-child::after {
        content: "";
    }

    .breadcrumb a {
        text-decoration: none;
        color: white;
    }

/* ------------------------Fin du fil d'ariane ---------------------------------------------------*/
/*--------------------------Gestion des formulaires----------------------------------------------*/
.form-card {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
    .form-card {
        padding: 20px;
    }
}
/*------------------------------------------------------------------------------------------------*/
.btn-primary {
    background-color: #0C1844 !important;
    border-color: #0C1844 !important;
    color: white !important;
}

    .btn-primary:hover {
        background-color: #081030 !important; /* une variante plus foncée */
        border-color: #081030 !important;
    }

 /* --------------------Nouveau Footer ---------------------------------------------------------*/
/* Étendre les colonnes à la même hauteur */
.FooterHaut .row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #e0e0e0;
    overflow: visible;
    margin: 0;
    position: relative;
    z-index: 1;
}
#FooterHaut {
    position: relative;
    z-index: 1;
    padding-top: 80px; /* Laisse de la place pour la newsletter qui chevauche */
    padding-bottom: 100px;

}
    #FooterHaut .container h2.section-title-boxed {
        font-family: var(--heading-font);
        font-size: 22px;
        margin: 0 auto 30px auto;
        padding: 10px 25px;
        border: 2px solid black;
        color: black;
        background-color: transparent;
        display: block; /* 🔁 Remplace inline-block */
        width: fit-content; /* 👈 Permet de réduire à la largeur du contenu */
        text-align: center;
        border-radius: 0;
    }


/* Supprimer padding pour éviter les coupures */
.FooterHaut .col-xl-4 {
    padding: 0;
    display: flex;
    overflow: visible;
}

/* Étendre chaque carte */
.FooterHaut .service-item {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 30px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    min-height: 300px; /* 👈 ajoute cette ligne */
}

/* Supprimer bordure sur la dernière colonne */
.FooterHaut .col-xl-4:last-child .service-item {
    border-right: none;
}

/* Appliquer fond violet + texte blanc à tout le 3e bloc */
.FooterHaut .col-xl-4:nth-child(3) .service-item {
    background-color: var(--accent-color);
    color: #fff;
}
    /* Appliquer fond violet + texte blanc à tout le 3e bloc */
    .FooterHaut .col-xl-4:nth-child(3) .service-item p {
        color: #fff;
    }
    /* Inverser le style du h4 dans ce bloc */
    .FooterHaut .col-xl-4:nth-child(3) .service-item h4 {
        background-color: #fff;
        color: var(--accent-color);
        animation: slide-right-to-left 1s ease-out; /* Animation du défilement */
    }


        /* Style du lien dans le 3e bloc */
        .FooterHaut .col-xl-4:nth-child(3) .service-item h4 a {
            color: var(--accent-color); /* ou #fff si tu préfères que ce soit blanc */
            text-decoration: none;
        }

            .FooterHaut .col-xl-4:nth-child(3) .service-item h4 a:hover {
                text-decoration: underline
            }

/* Optionnel : effet au survol */
.FooterHaut .service-item h4 a:hover {
    text-decoration: underline;
}
/* Bordure verticale entre les colonnes */
/* Appliquer bordure verticale uniquement en desktop */
@media (min-width: 992px) {
    .FooterHaut .col-xl-4:not(:last-child) .service-item {
        border-right: 1px solid #e0e0e0;
    }
}

.FooterHaut .service-item .icon {
    margin-bottom: 10px;
}

    .FooterHaut .service-item .icon i {
        color: var(--accent-color);
        font-size: 36px;
        transition: ease-in-out 0.3s;
    }

.FooterHaut .service-item h4 {
    font-family:var(--heading-font);
    position: absolute;
    top: 0;
    left: 15px;
    background-color: var(--accent-color); /* violet */
    color: #ffffff;
    padding: 20px 20px;
    font-size: 23px !important;
    font-weight: 900;
    margin: 0;
    display: inline-block; /* 👈 ajoute ceci */
    white-space: nowrap;
}

.FooterHaut .service-item > div[data-aos] {
    position: absolute;
    top: 0;
    left: 15px;
}

.FooterHaut .service-item h4 a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #ffffff;
    transition: ease-in-out 0.3s;
}

    .FooterHaut .service-item h4 a:hover {
        text-decoration: underline;
    }

.FooterHaut .service-item p {
    line-height: 24px;
    font-size: 22px;
    color: #000000;
    margin-bottom: 0;
    margin-top: 30px;
    transition: ease-in-out 0.3s;
}

.FooterHaut .underline {
    width: 40px; /* largeur de la ligne */
    height: 4px; /* épaisseur */
    background-color: #28a745; /* vert */
    margin-top: 20px;
    border-radius: 2px;
}

.FooterHaut .underline1 {
    width: 40px; /* largeur de la ligne */
    height: 4px; /* épaisseur */
    background-color: orange; /* vert */
    margin-top: 20px;
    border-radius: 2px;
}
/* Animation de défilement du texte de droite à gauche */
@keyframes slide-right-to-left {
    0% {
        transform: translateX(100%); /* Commence à droite, hors du cadre */
    }

    100% {
        transform: translateX(0); /* Se déplace jusqu'à la position finale */
    }
}



    /*--------------------------------Fin du nouveau Footer--------------------------------------*/
/* Section Aboutpi utilisée dans les pages statiques comme celles de la propriété intellectuelle */
/*--------------------------------------------------------------*/
.aboutpi {
   
}

    .aboutpi .aboutpi-content {
        margin-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between;*/
        justify-content: flex-start; /* ← change ici */
    }

        .aboutpi .aboutpi-content h2 {
            border: 1px solid black;
            padding: 10px 10px 5px;
            display: inline-block;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2em;
            font-family: var(--heading-font);
            font-size: 14px;
            margin-bottom: 10px;
            background-color: transparent;
            width: fit-content;
        }

        .aboutpi .aboutpi-content h3 {
            font-weight: 700;
            font-size: 44px;
            font-family: var(--heading-font);
            letter-spacing: -1px;
            line-height: 1.1em;
            margin-top: 0; /* ← important pour compacter */
            margin-bottom:20px;
        }

        .aboutpi .aboutpi-content ul {
            list-style: none;
            padding: 0;
        }

            .aboutpi .aboutpi-content ul li {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                margin-bottom: 35px;
            }

                .aboutpi .aboutpi-content ul li:first-child {
                    margin-top: 35px;
                }



    .aboutpi .row.gy-3 {
        display: flex;
        align-items: stretch;
    }

        .aboutpi .row.gy-3 > .col-lg-6 {
            display: flex;
            flex-direction: column;
        }
    .aboutpi .col-lg-7,
    .aboutpi .col-lg-5 {
        display: flex;
        flex-direction: column;
    }

    .aboutpi .aboutpi-content p:last-child {
        margin-bottom: 0;
    }

    .aboutpi .btn1 {
        background: var(--accent-color);
        color: var(--contrast-color);
        display: inline-block;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 700;
        line-height:1em;
        font-family: var(--heading-font);
        border: 1px solid transparent;
        transition: all 0.3s ease;
        width: fit-content; /* ← Très important */
        border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
    }

        .aboutpi .btn1:hover {
            background: transparent;
            color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: none;
        }
.highlight-text {
    border-left: 5px solid #28a745; /* ligne verte à gauche */
    padding-left: 16px; /* espace entre la ligne et le texte */
    margin: 20px 0; /* espacement autour */
    color: #333; /* couleur du texte, ajustable */
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2em;
}


/*- Fin de la section aboutpi -------------------------*/
.custom-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/*********************************************************************/
/*****************Section Actualités *********************************/
/**********************************************************************/

.actualite .actualite-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 600px;
    padding: 0;
    cursor: pointer;
    box-shadow: none;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
    overflow: hidden;
    height: 100%;
}




/* Étiquette en haut (titre) */
    .actualite .actualite-item h3 {
        font-weight: 700;
        font-family: var(--heading-font);
        line-height: 1.2em;
        margin-top: 10px;
        padding: 0;
        font-size: 20px;
        letter-spacing: -1px;
        color: var(--accent-color);
        text-transform: capitalize;
        text-align: left !important;
        padding: 15px 20px; /* ← 15px en haut/bas, 20px à gauche/droite */
    }

/* Image */
.actualite .actualite-image {
    width: 100%;
    height: 300px; /* fixe, pas en % */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    transform-origin: center center;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.actualite .actualite-item {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* ombre par défaut */
}

    .actualite .actualite-item:hover {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); /* ombre au survol */
    }
.actualite .actualite-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05); /* voile sombre très léger */
    z-index: 1;
}
/* Contenu sous l’image */
.actualite .actualite-content {
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
    padding: 15px 20px; /* ← 15px en haut/bas, 20px à gauche/droite */
}

/* Prix */
.actualite .actualite-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin: 20px 0 10px;
}

    .actualite .actualite-item h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
        position: relative;
    }

    .actualite .actualite-item h4 span {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 16px;
        font-weight: 300;
    }

/* Liste */
.actualite .actualite-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
}

    .actualite .actualite-item ul li {
        padding-bottom: 16px;
    }

    .actualite .actualite-item ul i {
        color: var(--accent-color);
        font-size: 18px;
        padding-right: 4px;
    }

    .actualite .actualite-item ul .na {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: line-through;
    }

/* Texte */
.actualite .actualite-content p {
    font-family: var(--default-font);
    font-size: 16px;
    color:rgba(0, 0, 0, 0.4);
    line-height: 1.5em;
    font-weight:400;
}

/* Bouton */
.actualite .btn-wrapdetail {
    margin-top: auto;
    text-align: left;
    padding-top: 10px;
    margin-bottom: 20px;
}

.actualite .btn-detail {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: 0.3s;
}

    .actualite .btn-detail:hover {
        background: #fff;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
    }




.actualite .actualite-footer {
    padding: 10px 20px;
    border-top: 1px solid #e0e0e0; /* Ligne grise claire */
    font-size: 13px;
    color: #27AE60;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--default-font);
}

/* Optionnel : centrer ou ajuster selon mobile */
@media (max-width: 768px) {
    .actualite .actualite-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.actualite .actualite-meta {
    font-family:var(--default-font);
    font-size: 13px;
    font-weight:400;
    line-height:1.3em;
    color: #27AE60;
    padding: 2px 0 5px;
    display: flex;
    text-align:left;
    justify-content: left;
    gap: 8px;
}

    .actualite .actualite-meta .separator {
        display: inline-block;
        width: 4px; /* taille du point */
        height: 4px;
        background-color: #27AE60; /* couleur verte */
        border-radius: 50%; /* rond */
        margin: 0 8px; /* espace horizontal autour */
        content: ''; /* nécessaire si tu veux l’afficher en pseudo-élément */
    }
.actualite .actualite-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFFFF; /* Le texte reste blanc */
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    padding: 10px 20px;
    font-family: var(--heading-font);
    z-index: 10; /* au-dessus de l'image */
    pointer-events: none; /* pour ne pas gêner le clic */
    user-select: none;
    text-transform: capitalize; /* si tu veux le texte en majuscules */
}

/* Ajouter une couleur dynamique en fonction de la classe */
.actualite .badge-innovation {
    background-color: #4CAF50 !important; /* vert */
}

.actualite .badge-recherche {
    background-color: #2196F3 !important; /* bleu */
}

.actualite .badge-evenement {
    background-color: #FF9800 !important; /* orange */
}

.actualite .badge-default {
    background-color: var(--accent-color) !important; /* gris */
}

/* Image background dynamique */
.img-11 {
    background-image: url('../img/Actualite1.jpg');
}


.img-21 {
    background-image: url('../img/Actualite2.jpg');
}

.img-31 {
    background-image: url('../img/Actualite3.jpg');
}

.img-41 {
    background-image: url('../img/Actualite4.jpg');
}

.img-51 {
    background-image: url('../img/Actualite5.jpg');
}

.img-61 {
    background-image: url('../img/Actualite6.jpg');
}

/*******************Fin de la section Actualités ***************************/
/*******************Page détail de l'actualité: Remplie dynamiquement ********/
/* Section breadcrumb */
#breadcrumb0 {
    font-family: "Roboto", sans-serif; /* Spécifique à cette section */
    background-color: #fff;
    font-size: 14px;
    padding: 5px 0;

}
    #breadcrumb0 .breadcrumb,
    #breadcrumb0 .breadcrumb-item,
    #breadcrumb0 .breadcrumb-item a {
        font-weight: 400; /* Regular (pas gras) */
    }
    #breadcrumb0,
    #breadcrumb0 * {
        font-family: "Roboto", sans-serif !important;
        letter-spacing: 0px !important;
    }

    /* Conteneur breadcrumb */
    #breadcrumb0 .breadcrumb {
        background: none;
        padding: 0;
        margin: 0;
        color: #727272;
    }

    /* Séparateur */
        #breadcrumb0 .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            display: inline-block;
            vertical-align: middle;
            margin: 0 10px;
            color: var(--accent-color, #4b3dbf);
            font-weight:600 !important;
        }
    /* Liens */
    #breadcrumb0 .breadcrumb-item a {
        text-decoration: none;
        color: #727272;
        transition: color 0.2s ease;
    }

        #breadcrumb0 .breadcrumb-item a:hover {
            color: #4b3dbf;
        }

    /* Élément actif */
    #breadcrumb0 .breadcrumb-item.active {
        color: #727272;
    }
        #breadcrumb0 .btn2 {
            background: var(--accent-color);
            color: var(--contrast-color);
            display: inline-block;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1em;
            font-family: var(--heading-font);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            width: fit-content; /* ← Très important */
            border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
        }

            #breadcrumb0 .btn2:hover {
                background: transparent;
                color: var(--accent-color);
                border-color: var(--accent-color);
                transform: translateY(-2px);
                box-shadow: none;
            }
.breadcrumb-divider {
    border-top: 1px solid #ddd;
    width: 100%;
}
/* Applique une couleur de fond spécifique en fonction du badge */
.btn2.badge-innovation {
    background-color: #4CAF50 !important; /* Vert */
}

.btn2.badge-recherche {
    background-color: #2196F3 !important; /* Bleu */
}

.btn2.badge-evenement {
    background-color: #FF9800 !important; /* Orange */
}

.btn2.badge-default {
    background-color: #9E9E9E !important; /* Gris */
}

/* Style du texte du bouton */
.btn2 {
    color: white; /* Pour s'assurer que le texte reste bien visible sur n'importe quel fond */
    font-weight: bold;
}



  /**************Détail de l'actualité *****************************************/
.detailact {
}
#detailact {
    margin-top: 0; /* Évite l'ajout d'espace inutile en haut de cette section */
    padding-top: 0; /* Au cas où il y aurait du padding */
}

    .detailact .detailact-content {
        margin-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        /* justify-content: space-between;*/
        justify-content: flex-start; /* ← change ici */
    }

        .detailact .detailact-content h2 {
            border: 1px solid black;
            padding: 10px 10px 5px;
            display: inline-block;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2em;
            font-family: var(--heading-font);
            font-size: 14px;
            margin-bottom: 10px;
            background-color: transparent;
            width: fit-content;
        }

        .detailact .detailact-content h3 {
            font-weight: 700;
            font-size: 44px;
            font-family: var(--heading-font);
            letter-spacing: -1px;
            line-height: 1.1em;
            margin-top: 0; /* ← important pour compacter */
            margin-bottom: 20px;
        }

        .detailact .detailact-content ul {
            list-style: disc; /* ou 'circle' ou 'square' */
            padding-left: 1.5rem; /* réintroduit l’indentation */
            margin-top: 1rem;
        }

            .detailact .detailact-content ul li {
                display: list-item; /* revenir au comportement standard */
                margin-bottom: 0.5rem;
                gap: 0; /* facultatif : aucun écart horizontal */
                margin-bottom: 0.25rem;
            }

    

    .detailact .row.gy-3 {
        display: flex;
        align-items: stretch;
    }

        .detailact .row.gy-3 > .col-lg-6 {
            display: flex;
            flex-direction: column;
        }

    .detailact .col-lg-8,
    .detailact .col-lg-4 {
        display: flex;
        flex-direction: column;
    }

    .detailact .detailact-content p:last-child {
        margin-bottom: 0;
    }


.btn-custom {
    background: #F2F2F2;
    color: var(--accent-color);
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
    width: 100%; /* important pour remplir la colonne */
    text-align: center;
    text-decoration: none;
}

    .btn-custom:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-2px);
        box-shadow: none;
    }

        /***Menu à droite ****************/
/* Sidebar Section */
/* Ligne verticale entre les deux colonnes */
.sidebar {
    border-left: 1px solid #ccc; /* couleur grise standard */
    padding-left: 30px; /* pour que le contenu ne colle pas à la ligne */
    margin-left: 10px; /* facultatif : espace avec la colonne précédente */
}
.sidebar .sidebar-title {
    font-size: 23px;
    font-weight: 700;
    padding-bottom: 6px;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    line-height:1.2em;
    letter-spacing:-1px;
}


.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .author-box > div {
        display: flex;
        flex-direction: column;
    }

    .author-box img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ccc;
        border-radius: 0 !important;
    }
.author-name {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0px;
}
.author-box {
    margin-bottom: 30px; /* espace plus grand sous la box auteur */
}

.sidebar-separator {
    margin-top: 10px; /* réduit un peu l’espace au-dessus de la ligne */
}
.sidebar ul li {
    margin-bottom: 10px;
}

    .sidebar ul li a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .sidebar ul li a:hover {
            color: var(--accent-color);
        }
.sidebar-separator {
    border: 0;
    border-top: 1px solid #727272;
    margin-top: 0; /* supprime l'espace au-dessus */
    margin-bottom: 15px; /* espace sous la ligne, ajuste selon ton goût */
}

.sidebar-categories ul {
    margin: 0;
    padding: 0 0 0 15px; /* décale la liste à droite avec un padding-left */
}

    .sidebar-categories ul li {
        border-bottom: 1px solid #ccc; /* ligne grise */
        padding: 10px 0;
    }

        .sidebar-categories ul li a {
            position: relative;
            color: #555;
            text-decoration: none;
            padding-left: 20px;
            display: block;
            transition: color 0.3s ease;
        }

 

            .sidebar-categories ul li a:hover {
                color: var(--accent-color); /* texte devient violet au hover */
            }
            .sidebar-categories ul li a i {
                color: var(--accent-color);
                transition: color 0.3s ease;
            }

.sidebar-articles {
    margin-top: 20px;
}

    .sidebar-articles .sidebar-title {
        font-size: 23px;
        font-weight: 700;
        padding-bottom: 6px;
        margin-bottom: 16px;
        font-family: var(--heading-font);
        line-height: 1.2em;
        letter-spacing: -1px;
    }
    .sidebar-articles ul {
        padding-left: 0;
        margin: 0;
    }

    .sidebar-articles li {
        list-style: none;
        margin-bottom: 16px; /* espacement entre les éléments */
    }



    .sidebar-articles .article-item {
        margin-bottom: 16px; /* Garde un espace propre entre les articles */
    }


    .sidebar-articles .article-thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    .sidebar-articles .article-link {
        color: var(--accent-color);
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s ease;
        font-family:var(--heading-font);
        font-weight:700;
        line-height:1.2em;
        letter-spacing:0px;

    }

        .sidebar-articles .article-link:hover {
            color: var(--accent-color);
        }
    .sidebar-articles .article-content {
        display: flex;
        flex-direction: column;
    }

    .sidebar-articles .article-meta {
        font-family: 'Roboto', sans-serif;
        font-size: 13px;
        line-height: 1.3em;
        color: #888;
        margin-top: 4px;
    }

.detailact-form h5 {
    color: var(--accent-color);
    font-family: var(--heading-font);
    margin-bottom: 16px;
    font-size:32px;
    font-weight:700;
    line-height:1.1em;
    letter-spacing:-1px;
}

.detailact-form label {
    font-weight: 600;
    color: #444;
    font-family: var(--heading-font);
    font-size:16px;
    font-weight:600;
    text-transform:capitalize;
    line-height:1.5em;
}

.detailact-form .form-control {
    border-radius: 0; /* plus d’arrondis */
    border: 1.5px solid #ccc;
    padding: 10px 12px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    margin-bottom: 20px; /* <-- augmente cet espace */
}

    .detailact-form .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 6px rgba(111, 66, 193, 0.3);
        outline: none;
    }

.detailact-form button.btn.btn-primary {
    border-radius: 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    font-family: var(--heading-font);
    border: 2px solid var(--accent-color);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

    .detailact-form button.btn.btn-primary:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }

 .btnform {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    font-family: var(--heading-font);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}

    .btnform:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }
.inline-img {
    float: left; /* ou right si tu veux l’image à droite */
    margin-right: 16px;
    margin-bottom: 8px;
    max-width: 200px; /* ajuste selon la taille souhaitée */
    height: auto;
    border-radius: 4px;
}

/*******************Fin de la page détail ************************************/

/********************Page de formulaire pour les partenaires ****************/
.form-heading {
    font-family: var(--heading-font);
    font-size: 22px;
    margin-bottom: 30px;
    padding: 10px 25px;
    border: 2px solid black;
    color: black;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    border-radius: 0 !important;
    width: fit-content;
}
/*******************Fin de la page formulaire ******************************/

/*********************************************************************/
/*****************Section Equipements *********************************/
/**********************************************************************/

.eqp .eqp-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 600px;
    padding: 0;
    cursor: pointer;
    box-shadow: none;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
    overflow: hidden;
    height: 100%;
}




    /* Étiquette en haut (titre) */
    .eqp .eqp-item h3 {
        font-weight: 700;
        font-family: var(--heading-font);
        line-height: 1.2em;
        margin-top: 10px;
        padding: 0;
        font-size: 20px;
        letter-spacing: -1px;
        color: var(--accent-color);
        text-transform: capitalize;
        text-align: left !important;
        padding: 15px 20px; /* ← 15px en haut/bas, 20px à gauche/droite */
    }

/* Image */
.eqp .eqp-image {
    width: 100%;
    height: 300px; /* fixe, pas en % */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    transform-origin: center center;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.eqp .eqp-item {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* ombre par défaut */
}

    .eqp .eqp-item:hover {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); /* ombre au survol */
    }

.eqp .eqp-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05); /* voile sombre très léger */
    z-index: 1;
}
/* Contenu sous l’image */
.eqp .eqp-content {
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
    padding: 15px 20px; /* ← 15px en haut/bas, 20px à gauche/droite */
}

/* Prix */
.eqp .eqp-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin: 20px 0 10px;
}

    .eqp .eqp-item h4 sup {
        font-size: 20px;
        top: -15px;
        left: -3px;
        position: relative;
    }

    .eqp .eqp-item h4 span {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-size: 16px;
        font-weight: 300;
    }

/* Liste */
.eqp .eqp-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
}

    .eqp .eqp-item ul li {
        padding-bottom: 16px;
    }

    .eqp .eqp-item ul i {
        color: var(--accent-color);
        font-size: 18px;
        padding-right: 4px;
    }

    .eqp .eqp-item ul .na {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        text-decoration: line-through;
    }

/* Texte */
.eqp .eqp-content p {
    font-family: var(--default-font);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.5em;
    font-weight: 400;
}

/* Bouton */
.eqp .btn-wrapdetail {
    margin-top: auto;
    text-align: left;
    padding-top: 10px;
    margin-bottom: 20px;
}

.eqp .btn-detail {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: 0.3s;
}

    .eqp .btn-detail:hover {
        background: #fff;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
    }




.eqp .eqp-footer {
    padding: 10px 20px;
    border-top: 1px solid #e0e0e0; /* Ligne grise claire */
    font-size: 13px;
    color: #27AE60;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--default-font);
}

/* Optionnel : centrer ou ajuster selon mobile */
@media (max-width: 768px) {
    .eqp .eqp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.eqp .eqp-meta {
    font-family: var(--default-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3em;
    color: var(--accent-color);
    text-align: left;
    justify-content: left;
    gap: 8px;
    display: block; /* Assure que c'est un conteneur en bloc */
    flex-direction: column; /* Si hérite d’un flex, force la colonne */
    padding-left: 15px; /* décalage léger */
}
.eqp-meta p {
    margin: 0 0 5px 0; /* un petit espace sous chaque paragraphe */
    color: #333; /* couleur sombre, remplace le vert */
    font-weight: normal; /* pour que seul le label soit en gras */
}

.eqp-meta strong {
    font-weight: bold; /* libellé en gras */
}

    .eqp .eqp-meta .separator {
        display: inline-block;
        width: 4px; /* taille du point */
        height: 4px;
        background-color: #27AE60; /* couleur verte */
        border-radius: 50%; /* rond */
        margin: 0 8px; /* espace horizontal autour */
        content: ''; /* nécessaire si tu veux l’afficher en pseudo-élément */
    }

.eqp .eqp-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #FFFFFF; /* rouge */
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    padding: 10px 20px;
    font-family: var(--heading-font);
    z-index: 10; /* au-dessus de l'image */
    pointer-events: none; /* pour ne pas gêner le clic */
    user-select: none;
    text-transform: capitalize; /* si tu veux le texte en majuscules */
}
.eqp-meta i {
    color: var(--accent-color);
    margin-right: 5px;
    width: 16px;
    text-align: center;
}

/*******************Fin de la section Equipements ***************************/
/******************Liste des structures de recherche *****************/
/*--------------------------------------------------------------
# Structures Section
--------------------------------------------------------------*/
.structure .structure-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}



    .structure .structure-item .icon {
        transition: transform 0.3s ease;
    }

    .structure .structure-item:hover .icon {
        transform: translateY(-8px); /* déplace vers le haut de 8px */
    }

    .structure .structure-item .icon i {
        color: var(--contrast-color);
        font-size: 42px;
        transition: ease-in-out 0.3s;
    }
    /* Garde le même style de cercle */
    .structure .structure-item .icon {
        margin: 0 auto;
        width: 120px;
        height: 120px;
        /*background: var(--accent-color); */
        border: 2px solid var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        overflow: hidden; /* Important pour masquer tout débordement de l'image */
        transition: transform 0.3s ease;
    }

    /* Image dans l’icône circulaire */
    .structure .structure-item .structure-logo {
        width: 60%;
        height: auto;
        object-fit: contain;
        /* filter: brightness(0) invert(1); */ /* Retiré pour garder les vraies couleurs */
        transition: transform 0.3s ease;
    }
    /* Effet au survol */
    .structure .structure-item:hover .structure-logo {
        transform: scale(1.1); /* Zoom léger sur l'image */
    }

    .structure .structure-item h3 {
        margin: 10px 0 15px 0;
        font-size: 30px;
        font-weight: 900;
        transition: 0.3s;
        letter-spacing: -1px;
        color: var(--accent-color);
    }

/* Style du sous-titre (h4) */
#structure .structure-title h4 {
    font-family: var(--heading-font);
    font-size: 44px;
    font-weight: 900;
    color: black; /* ou white, selon ton fond */
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

/* Style du paragraphe */
#structure .section-title p {
    font-family: var(--body-font, 'Open Sans', sans-serif);
    font-size: 20px;
    color: #222222; /* ou var(--light-color) */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.structure .structure-item:hover {
    border-color: var(--accent-color);
}

    .structure .structure-item:hover h3 {
        color: var(--accent-color);
    }

#structure .section-title h2.section-title-boxed {
    font-family: var(--heading-font);
    font-size: 22px;
    margin: 0 auto 30px auto;
    padding: 10px 25px;
    border: 2px solid black; /* ou white selon ton choix */
    color: black;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    border-radius: 0 !important;
}
.structure .structure-info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

    .structure .structure-info-list li {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: wrap; /* autorise le retour à la ligne propre */
    }


        .structure .structure-info-list li strong {
            color: var(--accent-color);
            font-weight: 600;
            min-width: 110px; /* fixe une largeur minimale pour aligner les labels */
            flex-shrink: 0; /* évite que ça se rétrécisse */
            display: inline-block;
        }
        .structure .structure-info-list li i {
            color: var(--accent-color);
            font-size: 16px;
            margin-top: 3px;
        }
.structure .structure-intro {
    padding: 40px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.structure .btn1 {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 20px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content; /* ← Très important */
    border: 2px solid var(--accent-color); /* Pour dessiner la bordure autour du texte */
}

    .structure .btn1:hover {
        background: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: none;
    }
/* Survol de la carte */
.structure .structure-item:hover {
    background-color: var(--accent-color); /* Fond général devient bleu */
    color: #fff; /* Texte devient blanc */
    border-color: var(--accent-color);
}

    /* Texte et icônes internes en blanc */
    .structure .structure-item:hover h3,
    .structure .structure-item:hover .structure-info-list li,
    .structure .structure-item:hover .structure-info-list li strong,
    .structure .structure-item:hover .structure-info-list li i,
    .structure .structure-item:hover a {
        color: #fff !important;
    }

    /* Icône (cercle contenant le logo) : fond blanc au survol */
    .structure .structure-item:hover .icon {
        background-color: #fff;
        border: 2px solid var(--accent-color); /* on garde la bordure bleue */
    }

    /* Logo/image dans le cercle : pas d’inversion, juste un léger zoom */
    .structure .structure-item:hover .structure-logo {
        filter: none;
        transform: scale(1.1);
    }

.structure-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
/******************Fin de la liste des structures de recherche***********/