/**
* Template Name: Reveal - v4.7.0
* Template URL: https://bootstrapmade.com/reveal-bootstrap-corporate-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*
#3679D7
#0880e8
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: "Neuropolitical";
    font-style: normal;
    font-weight: normal;
    src: url("../../fonts/neuropolitical.ttf");
}

body {
    padding-top: 100px;
    background: #fff;
    color: #444;
    font-family: "Montserrat", sans-serif;
}

a {
    color: #3679d7;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #333;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #000;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #0007;
    color: #3679d7;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* le topbar doit être au-dessus du header */
  background: #3679d7;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #deebf6;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}
#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}
#topbar .contact-info i a:hover {
    color: #deebf6;
}
#topbar .social-links a {
    color: #fff;
    padding: 0 15px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
}
#topbar .social-links a:hover {
    color: #deebf6;
}
#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 40px; /* il démarre juste sous le topbar */
  left: 0;
  width: 100%;
  z-index: 1020; /* légèrement en dessous du topbar */
  background: #fff;
  transition: all 0.5s;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  border-top: 1px solid #3679d7;
  border-bottom: 1px solid #3679d7;
}

#header #logo h1 {
    font-size: 38px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}
#header #logo h1 a {
    color: #333;
}
#header #logo h1 a span {
    color: #3679d7;
}
#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 1280px) {
    #header {
        height: 60px;
    }
    #header #logo h1 {
        font-size: 20px;
    }
    #header #logo img {
        max-height: 40px;
    }
}

@media (max-width: 968px) {
    #header {
        height: 60px;
    }
    #header #logo h1 {
        font-size: 30px;
    }
    #header #logo img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    #header {
        height: 60px;
    }
    #header #logo h1 {
        font-size: 20px;
    }
    #header #logo img {
        max-height: 40px;
    }
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #3679d7;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #3679d7;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.navbar .getstarted {
    background: #3679d7;
    padding: 8px 30px;
    margin-left: 30px;
    border-radius: 25px;
    color: #fff;
}

.navbar .obtenir-service {
    background: #333;
    padding: 8px 30px;
    margin-left: 30px;
    border-radius: 25px;
    color: #fff;
}

.navbar .obtenir-service:hover {
    background: #3679d7;
    padding: 8px 30px;
    margin-left: 30px;
    border-radius: 25px;
    color: #fff;
}

.nav-item.dropdown:hover > .getstarted {
    color: #fff;
    background-color: #2f80ed;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}
/**
* Mobile Navigation
*/
/* Bouton hamburger */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    color: #444;
    font-family: "Montserrat", sans-serif;
}

.mobile-nav-toggle:focus {
    outline: none;
}

/* Menu mobile overlay - CACHÉ par défaut */
.navbar-mobile {
    display: none;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 30, 91, 0.95);
    z-index: 9999; /* Au-dessus de tout */
    overflow: hidden;
}

/* Quand le menu est actif */
.navbar-mobile.active {
    display: block;
}

/* Bouton X pour fermer */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    line-height: 1;
}

.mobile-nav-close:hover {
    color: #3679d7;
}

/* Conteneur blanc du menu */
.mobile-menu-content {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Liste du menu mobile */
.navbar-mobile .navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-mobile .nav-item {
    margin: 0;
    padding: 0;
}

.navbar-mobile .nav-link {
    display: block;
    padding: 15px 25px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar-mobile .nav-link:hover {
    color: #3679d7;
    background: #f8f9fa;
}

/* Dropdowns en mobile */
.navbar-mobile .dropdown-menu {
    display: none;
    position: static;
    background: #f8f9fa;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.navbar-mobile .dropdown-menu.active {
    display: block;
}

.navbar-mobile .dropdown-item {
    padding: 12px 25px 12px 45px;
    color: #555;
    font-size: 15px;
}

.navbar-mobile .dropdown-item:hover {
    color: #3679d7;
    background: #e9ecef;
}

.navbar-mobile .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}

/* Bouton Contactez-nous stylisé */
.navbar-mobile .getstarted {
    background: linear-gradient(135deg, #3679d7 0%, #2c5fb3 100%);
    color: #fff !important;
    border-radius: 50px;
    margin: 10px 15px;
    padding: 12px 25px !important;
    text-align: center;
}

.navbar-mobile .getstarted:hover {
    background: linear-gradient(135deg, #2c5fb3 0%, #1e4a8f 100%);
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar-desktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-nav-toggle,
    .navbar-mobile {
        display: none !important;
    }
}

/* Desktop nav styles */
.navbar-desktop .navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-desktop .nav-link {
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-desktop .nav-link:hover {
    color: #3679d7;
}

.navbar-desktop .getstarted {
    background: #3679d7;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 25px !important;
}

.navbar-desktop .getstarted:hover {
    background: #2c5fb3;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* Boutons responsive */
.boutons {
    margin-top: 2rem;
    gap: 1rem;
}

.boutons a {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-primary {
    padding: 12px 30px;
    font-weight: 500;
}

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

/* Sections Header
--------------------------------*/
.section-header {
    margin-top: 20px;
    margin-bottom: 30px;
}
.section-header h2 {
    font-size: 32px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}
.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #3679d7;
    bottom: 0;
    left: 0;
}
.section-header p {
    padding: 0;
    margin: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #c9d4e2;
    min-height: 40px;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}
@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* About Section
--------------------------------*/
#about {
    padding: 10px 0 10px 0;
}
#about .about-img {
    overflow: hidden;
}
#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
}
@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }
    /* #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  } */
}

#about ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about h3 {
    font-size: 22 px;
    font-weight: bold;
    color: #000;
}

#about p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.2rem;
}
#about ul li {
    /* Styles de la carte de base */
    background-color: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 5px;

    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /*cursor: pointer;*/
}

/* Styles de l'effet de survol */
#about ul li:hover {
    background-color: #3679d7;
    color: #ffffff;
    border-color: #3679d7;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Styles pour l'icône dans la liste */
#about ul li i.bi {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #3679d7;
    transition: color 0.3s ease;
}

#about ul li:hover i.bi {
    color: #ffffff;
}
/* #about .content h2 {
  color: #000;
  font-weight: 700;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
}
#about .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}
/*--------------------------------------------------------------
# Services css
--------------------------------------------------------------*/

.services-section {
    background-color: #f7f9fa;
    padding: 60px 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: solid #e7e6e65b 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.card-description {
    color: #6c757d;
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card:hover .service-icon {
    transform: rotate(-15.46deg);
}

.service-card .card-title:hover {
    color: #333 !important;
}

.card-tag {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 500;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-tag i {
    margin-right: 8px;
}

.icon-blue {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}
.icon-green {
    background: linear-gradient(135deg, #28a745, #20c997);
}
.icon-yellow {
    background: linear-gradient(135deg, #b8860b, #daa520);
}
.icon-orange {
    background: linear-gradient(135deg, #fd7e14, #e55a4e);
}
.icon-violet {
    background: linear-gradient(135deg, #952ee9, #6923a1);
}
.icon-jaune {
    background: linear-gradient(135deg, #d6b70a, #a0a603);
}
.icon-vert {
    background: linear-gradient(135deg, #03b32f, #037518);
}
.icon-rose {
    background: linear-gradient(135deg, #e92ee0, #780568);
}

.tag-blue {
    background: linear-gradient(135deg, #4a91e28d, #357abd);
    color: white;
}
.tag-green {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}
.tag-yellow {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
}
.tag-orange {
    background: linear-gradient(135deg, #fd7e14, #e55a4e);
    color: white;
}
.tag-violet {
    background: linear-gradient(135deg, #952ee9, #6923a1);
    color: white;
}
.tag-jaune {
    background: linear-gradient(135deg, #d6b70a, #a0a603);
    color: white;
}
.tag-vert {
    background: linear-gradient(135deg, #03b32f, #037518);
    color: white;
}
.tag-rose {
    background: linear-gradient(135deg, #e92ee0, #780568);
    color: white;
}

/* service card hover */
/* service card hover */
.col-sm-12.col-md-6.col-lg-3:nth-child(1) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(108, 164, 247, 0.496);
    border: 2px solid #4a90e2; /* bordure bleue */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(2) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(46, 142, 2, 0.525); /* vert */
    border: 2px solid #28a745; /* bordure verte */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(3) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(219, 203, 21, 0.68); /* jaune */
    border: 2px solid #c6b602; /* bordure jaune */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(5) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgb(153, 136, 4); /* orange */
    border: 2px solid #d6b70a; /* bordure orange */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(4) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(221, 93, 1, 0.735); /* orange */
    border: 2px solid #fd7e14; /* bordure orange */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(7) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(109, 3, 185, 0.761); /* orange */
    border: 2px solid #952ee9; /* bordure orange */
    border-radius: 20px;
}

.col-sm-12.col-md-6.col-lg-3:nth-child(8) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(160, 2, 162, 0.57); /* violet */
    border: 2px solid #e92ee0; /* bordure orange */
    border-radius: 20px;
}
.col-sm-12.col-md-6.col-lg-3:nth-child(6) .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(3, 157, 54, 0.57); /* violet */
    border: 2px solid #03b32f; /* bordure violet */
    border-radius: 20px;
}

/* FORMATIONS*/

.iti {
    width: 100%;
}

.iti__arrow {
    border: none;
}

input {
    font-size: 15px;
    color: #333;
}

::placeholder {
    color: #bdbdbd;
    opacity: 1;
    font-weight: 300;
}

:-ms-input-placeholder {
    color: #bdbdbd;
    font-weight: 300;
}

::-ms-input-placeholder {
    color: #bdbdbd;
    font-weight: 300;
}

input,
textarea {
    border: 1px solid lightgrey;
    border-radius: 2px;
    margin-bottom: 5px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2c3e50;
    font-size: 14px;
    letter-spacing: 1px;
}

input:focus,
textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #304ffe;
    outline-width: 0;
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}

.active-card {
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: #2f80ed;
    color: #ffff;
    box-shadow: 0 1rem 3rem rgba(49, 45, 45, 0.17) !important;
}

.active-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* léger zoom + effet flottant */
    box-shadow: 5px 0 5px 1px rgba(0, 0, 0, 0.3) !important;
    border-color: #4b84c4;
}

.card-btn {
    transition: all 0.3s ease;
}

.card-btn:hover .btn {
    background-color: #2f80ed;
    color: #fff;
    transform: scale(1.05);
}

.formation-card {
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 5px 5px 5px 5px;
    box-shadow: 0 1rem 3rem rgba(49, 45, 45, 0.17) !important;
}

.formation-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #2f80ed;
    box-shadow: 5px 0 5px 1px rgba(36, 129, 249, 0.3) !important;
}

.formation-card:hover .card-icon {
    transform: rotate(-15.46deg);
}

.active-card:hover .card-icon {
    transform: rotate(-15.46deg);
}

.formation-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 5px 0 5px 1px rgba(0, 38, 107, 0.05) !important;
    background-color: #2f80ed;
    font-size: 2rem;
}

/* Styles pour l'image de l'icône à l'intérieur du wrapper */
.formation-icon-img,
.formation-icon-img-active {
    max-width: 60%;
    max-height: 60%;
    height: auto;
    object-fit: contain;
}

/* Style spécifique pour l'icône dans la carte active (bleue) */
.active-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2f80ed;
    box-shadow: 1rem 0.5rem 1rem rgba(21, 96, 235, 0.05);
    background-color: #ffffffff;
    font-size: 2rem;
}

.formation-icon-img-active {
    max-width: 60%;
    max-height: 60%;
    height: auto;
    object-fit: contain;
    /* Filtre pour rendre l'icône bleue (Fonctionne mieux sur les icônes noires) */
    filter: invert(28%) sepia(87%) saturate(2250%) hue-rotate(200deg) brightness(97%) contrast(105%);
}

.formation-icon-img {
    /* Filtre pour rendre l'icône blanche */
    filter: invert(1);
}
/*----------------------FIN FORMATIONS------------------------------------*/
/* === SECTION VIDÉO === */
.video-section {

    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    background-color: #ffffff;
}

.video-container {
    position: absolute;
    inset: 0;
}

.background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    clip-path: url(#wave-clip-path);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #4b84c4, #2b2a2a65);
    opacity: 0.85;
    z-index: 2;
    clip-path: url(#wave-clip-path);
}

.video-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

svg.hidden-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* === CONTENU === */
.content-wrapper {
    position: relative;
    z-index: 10;
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === TEXTE === */
.hero-text h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-text h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === IMAGE === */
.hero-image-container img {
    max-width: 90%;
    height: auto;
}

/* === RESPONSIVE === */

@media (max-width: 991px) {
    .video-section {
        min-height: 80vh;
    }

    .video-container {
        height: 80vh;
    }

    .video-border,
    .hidden-svg {
        display: none;
    }

    .overlay {
        clip-path: none;
        -webkit-clip-path: none;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, #4b84c4, #2b2a2a65);
        opacity: 0.85;
        z-index: 2;
    }

    .background-video {
        clip-path: none;
        -webkit-clip-path: none;
    }

    .content-wrapper {
        flex-direction: column;
        height: auto;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-text {
        text-align: center !important;
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 1.1rem;
    }

    .hero-text h4 {
        font-size: 1rem;
    }

    .hero-image-container img {
        display: block;
        margin: 0 auto;
        max-width: 30% !important;
    }
}

/* Mobiles ≤ 576px */
@media (max-width: 576px) {
    .video-section {
        min-height: 90vh;
    }

    .video-container {
        height: 90vh;
    }

    .video-border,
    .hidden-svg {
        display: none;
    }

    .content-wrapper {
        padding: 1rem 0;
        height: 80vh;
    }

    .content-wrapper .row {
        flex-direction: column !important;
    }

    .hero-text {
        text-align: center !important;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .hero-text h2 {
        font-size: 1rem;
    }

    .hero-text h4 {
        font-size: 0.95rem;
    }

    .hero-image-container img {
        display: block;
        margin: 0 auto;
        max-width: 70% !important;
    }
}

/* Très petits écrans ≤ 375px */
@media (max-width: 375px) {
    .hero-text {
        padding: 0 0.5rem;
    }

    .hero-image-container img {
        max-width: 90%;
    }
}

/* Ultra petits écrans ≤ 320px */
@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 1.1rem;
    }

    .hero-text h2 {
        font-size: 0.9rem;
    }

    .hero-image-container img {
        max-width: 70% !important;
    }
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    animation: slideInRight 1.2s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

#clients {
    padding: 30px 0;
}
#clients img {
    max-width: 100%;
    opacity: 0.5;
    transition: 0.3s;
    padding: 15px 0;
}
#clients img:hover {
    opacity: 1;
}
#clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #3679d7;
}
#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #3679d7;
}

/**---------------------------Realisations sur la page realisations-----------------------------------*/

/* Breadcrumbs Modernes */
.breadcrumbs-modern {
    background: linear-gradient(135deg, #3679d7 0%, #2a5ba8 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumbs-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,0 1000,100 0,100"/></svg>')
        no-repeat;
    background-size: cover;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.breadcrumb-nav {
    font-size: 1rem;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-link:hover {
    color: white;
    opacity: 0.8;
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.7;
}

.breadcrumb-current {
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 20px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3679d7;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Portfolio Cards */
#realisations .portfolio-grid {
    margin-bottom: 60px;
}

#realisations .portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 480px;
    display: flex;
    flex-direction: column;
}

#realisations .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(54, 121, 215, 0.15);
}

#realisations .card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

#realisations .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#realisations .portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

#realisations .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 20, 26, 0.4), rgba(16, 19, 24, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

#realisations .portfolio-card:hover .card-overlay {
    opacity: 1;
}

#realisations .overlay-content {
    display: flex;
    gap: 15px;
}

.lightbox-btn,
.details-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: #3679d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-card:hover .lightbox-btn,
.portfolio-card:hover .details-btn {
    transform: translateY(0);
}

.lightbox-btn:hover,
.details-btn:hover {
    background: #3679d7;
    color: white;
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3679d7, #2a5ba8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#realisations .card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#realisations .project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

#realisations .project-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

#realisations .card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f2f6;
}

#realisations .view-project-btn {
    color: #3679d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#realisations .view-project-btn:hover {
    color: #2a5ba8;
    transform: translateX(5px);
}

#realisations .view-project-btn i {
    transition: transform 0.3s ease;
}

#realisations .view-project-btn:hover i {
    transform: translateX(3px);
}

#realisations .pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #3679d7 0%, #2a5ba8 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,100 0,100"/></svg>')
        no-repeat;
    background-size: cover;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-btn {
    background: white;
    color: #3679d7;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: #f8f9fa;
    color: #3679d7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumbs-modern {
        padding: 60px 0;
    }

    .portfolio-modern {
        padding: 60px 0;
    }

    .stats-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .portfolio-card {
        height: 420px;
    }

    .card-image-container {
        height: 240px;
    }

    .card-content {
        padding: 25px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-section {
        padding: 60px 0;
        text-align: center;
    }
}
/**---------------------------Fin Realisations sur la page realisations-----------------------------------*/
/* Styles des cartes de realisations sur l'index */
.realisation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 420px;
    /* Hauteur fixe pour toutes les cartes */
    position: relative;
    display: flex;
    flex-direction: column;
}

.realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(54, 121, 215, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.realisation-card:hover .card-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.3), rgba(10, 12, 15, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    gap: 15px;
}

.lightbox-btn,
.details-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: #3679d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.realisation-card:hover .image-overlay {
    opacity: 1;
}

.view-btn {
    background: white;
    color: #3679d7;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.realisation-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: #3679d7;
    color: white;
    transform: scale(1.05);
}

.view-btn i {
    margin-right: 8px;
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #3679d7, #2a5ba8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.card-title:hover {
    color: #3679d7;
}

.card-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f2f6;
}

.read-more {
    color: #3679d7;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #2a5ba8;
    transform: translateX(5px);
}

.read-more i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    #realisations {
        align-content: center;
    }

    .realisation-card {
        min-height: 350px;
    }

    .card-image-wrapper {
        height: 200px;
    }

    .card-content {
        height: calc(100% - 200px);
        padding: 20px;
    }
}

/* Stats Section */
.stats-section {
    background: #3679d7;
    border-radius: 20px;
    padding: 40px;
    margin: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 20px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #e5e5e5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-section {
        margin: 20px;
        padding: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}
/* End Stats*/

/* Call To Action Section
--------------------------------*/
#call-to-action {
    position: relative; /* important pour que l’overlay se place correctement */
    background-image: url("/cta-image.webp");
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    z-index: 1;
    height: 100%;
}

#call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.774); /* bleu foncé avec transparence */
    z-index: 1;
}
#call-to-action .container {
    position: relative;
    z-index: 2; /* pour que le texte soit au-dessus du filtre */
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}
#call-to-action .cta-text {
    color: #fff;
    font-size: 20px;
}

/* --- Case à cocher + label alignés --- */
.consentement-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    justify-content: flex-start; /* Force l'alignement à gauche */
}

.consentement-wrapper input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.consentement-wrapper label {
    width: 45%;
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    cursor: pointer;
    line-height: 1.4;
}

.multi-step-form-wrapper {
    /*backdrop-filter: blur(10px);*/
    padding: 20px 30px;
    border-radius: 15px;
    max-width: 900px;
    margin: 30px auto 0;
}

.progress-indicator {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s;
}

.progress-dot.active {
    background: #333;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.form-row-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.step-field {
    position: relative;
}

.step-field.full-width {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.step-field label {
    display: block;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.step-field input,
.step-field textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    padding: 15px 15px;
    border-bottom: 2px solid #ddd;
    background-color: #fff;
    font-family: inherit;
    color: #333;
}

.step-field input:focus,
.step-field textarea:focus {
    border-bottom-color: #fff;
    outline: none !important;
    outline-offset: none !important;
}

.step-field textarea {
    resize: vertical;
    min-height: 100px;
    color: #333;
}

.form-actions-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-back-custom {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 20px;
    color: #fff;
    text-decoration: underline;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-back-custom:hover {
    color: #333;
}

.btn-next-custom {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.btn-next-custom:hover {
    background: #333;
    transform: scale(1.1);
}

.btn-next-custom:hover .arrow-custom {
    border-color: #fff;
}

#nextButton.btn-primary {
    margin-left: auto;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#nextButton.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

#nextButton.btn-loading {
    opacity: 0.7;
    background-color: #6c757d; /* couleur légèrement grisée (optionnel) */
    cursor: not-allowed;
}

.arrow-custom {
    width: 18px;
    height: 18px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(-45deg);
    transition: border-color 0.3s;
}

.error-message {
    color: #d24a41;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-weight: 600;
}

.error-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    #call-to-action .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .multi-step-form-wrapper {
        padding: 30px 20px;
        margin: 30px auto 0;
        width: calc(100% - 30px);
        max-width: 100%;
    }

    .form-row-custom {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-field input,
    .step-field textarea {
        padding: 12px 10px;
        width: 100%;
    }

    .btn-next-custom {
        width: 50px;
        height: 50px;
    }

    .arrow-custom {
        width: 14px;
        height: 14px;
    }

    .consentement-wrapper {
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
    }
    .consentement-wrapper label {
        width: 100%;
        word-wrap: normal;
    }
}

@media (max-width: 480px) {
    .multi-step-form-wrapper {
        padding: 25px 15px;
        margin: 20px auto 0;
        width: calc(100% - 20px);
    }

    .step-field label {
        font-size: 0.9rem;
    }

    .step-field input,
    .step-field textarea {
        font-size: 1rem;
        padding: 10px 8px;
    }

    .consentement-wrapper {
        justify-content: flex-start;
        text-align: left;
    }
    .consentement-wrapper label {
        width: 100%;
        word-wrap: normal;
    }
}

/** STYLES FOR ACTUALITES */

.custom-card {
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
    /* Augmente la hauteur */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.custom-card img {
    height: 220px;
    object-fit: cover;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hover-card img:hover {
    transform: scale(1.05);
}

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

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

/** END STYLES FOR ACTUALITES */

/* Google Maps Section
--------------------------------*/
#google-maps {
    background: #c9d4e2;
    background-size: cover;
    padding: 20px 0;
}
#google-maps .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

/* Page Détails Mikrotik */
.product-details-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.product-main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-main-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-main-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.product-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.sidebar-products h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
}

.other-product-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.other-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.other-product-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
}

.other-product-card .info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.other-product-card .info span {
    font-size: 0.85rem;
    color: #777;
}

/** End Page Détails Mikrotik */

/*** Details Realisation ***/
/* Styles pour la nouvelle page de détails */
.details-page-section {
    background-color: #f8f9fa; /* Couleur de fond légère */
    padding: 60px 0;
}

.project-main-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.project-main-content .project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

.project-main-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.project-meta {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.project-meta li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.project-meta .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #eef3ff;
    color: #0d6efd;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
}

.sidebar-projects h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
}

.other-project-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.other-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.other-project-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
}

.other-project-card .info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.other-project-card .info span {
    font-size: 0.85rem;
    color: #777;
}

/** End Details Realisation */
/* Contact Section
--------------------------------*/
#contact {
    padding: 30px 0;
}
#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}
#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #3679d7;
}
#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}
#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}
#contact .contact-info a {
    color: #000;
}
#contact .contact-info a:hover {
    color: #3679d7;
}
#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
}
@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}
#contact #google-map {
    height: 290px;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    #contact #google-map {
        margin-top: 20px;
    }
}
#contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}
#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
#contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
#contact .php-email-form input,
#contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}
#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
    background-color: #3679d7;
}
#contact .php-email-form button[type="submit"] {
    background: #3679d7;
    border: 0;
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}
#contact .php-email-form button[type="submit"]:hover {
    background: #2dc899;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.well {
    min-height: 20px;
    padding: 25px 19px;
    margin-bottom: 20px;
    background-color: #dbe6f0;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well .markup {
    background: #fff;
    color: #777;
    position: relative;
    padding: 45px 15px 15px;
    margin: 15px 0 0 0;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.well .markup::after {
    content: "Example";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #3679d7;
    padding: 0 0 30px 0;
    font-size: 14px;
}
#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: #ddd;
}
#footer .copyright a {
    color: #fff;
}

#footer .copyright a:hover {
    color: rgb(235, 240, 210);
}
