:root {
  --primary:#0d6efd;
  --accent:#f4b400;
  --dark:#0b2240;
}

body {
  font-family: system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;
  color:#000;
}

/* On considère que le menu parent est en display: flex ou inline-block, etc. */

/* Le sous-menu — caché par défaut */
nav .submenu {
  display: none;
  position: absolute;
  background: #fff; /* ou la couleur du fond de ton menu */
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px; /* largeur minimale */
  /* tu peux ajuster z-index si besoin */
  z-index: 1000;
}

/* Chaque item du sous-menu */
nav .submenu li {
  /* Selon le design, tu peux mettre display: block; etc. */
}

nav .submenu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #000; /* ou la couleur que tu utilises */
}

/* Option: hover / focus pour le lien */
nav .submenu li a:hover {
  background: #f0f0f0; /* survol */
}

/* Afficher le sous-menu quand on survole le parent */
nav li.services:hover > .submenu {
  display: block;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* ========================================== */
/* Architecture de la section */
.dual-section {
  display: flex;
  height: 60vh;
}

/* Les deux colonnes - surfaces avec image en arrière-plan */
.column {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease;
  margin: 30px;
}

/* Exemple d’images */
.column:nth-child(1) {
  background-image: url('https://globaltradeafrica.com/assets/img/istockphoto-1178452628-612x612.jpg');
}
.column:nth-child(2) {
  background-image: url('https://globaltradeafrica.com/assets/img/group-business-people-sitting-discussing-600nw-1263803104.webp');
}

/* Assombrissement: la couche qui filtre la perception */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.4s ease;
}

/* Le texte — plan supérieur */
.content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.9;
}

/* Activation au survol */
.column:hover {
  transform: scale(1.03);
}

.column:hover .overlay {
  background: rgba(0,0,0,0.15);
}

.column:hover .content {
  transform: translateY(-10px);
  opacity: 1;
}

/* ========================================== */

/* ========================================== */



.fondgris{
  background:#D7E0E0;
  margin: 0px 5px;
  padding: 10px 0px;
}
.fondblanc{
  background:#ffffff;
  margin: 0px 5px;
  padding: 10px 0px;
}
.gauche{
  padding: 15px 25px;
}
.droite{
  padding: 15px 25px;
}

.bg-image-loaded {
    opacity: 1;
}
.imagebg {
    background-image:url('https://demo.themenio.com/insurify/image/plx-air-a.jpg');
    position: absolute;
    
    background-size: 100% 85%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity .4s;
}

.hast-bg{
  background-image:url('assets/img/istockphoto-1178452628-612x612.jpg'); background-repeat: no-repeat; background-position: 50% 50%; background-size: cover;
  position: relative;overflow: hidden;
}

.hast-bg::BEFORE {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-event: none;
    opacity: 0.5
    background: rgb(0,0,0);
    transition: all .3s;
}

.topbar {
  background:rgba(0,0,0,1);
  max-height:150px;
}

.hero-contact{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/contact.webp');
}
.hero-service{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/a.jpg');
}
.hero-service-construction{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/c.webp');
}
.hero-service-export{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/d.jpg');
}
.hero-service-industrie{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/e.jpg');
}
.hero-propos{
  background-image:linear-gradient(180deg, rgba(11,34,64,0.6), rgba(11,34,64,0.4)), url('../img/hero-bg.jpg');
}
.hero {
  background-size:cover;
  background-position:center;
  color:white;
  padding:110px 0;
}

.hero h1 {
  font-weight:700;
  letter-spacing:0.4px;
}

.hero-card {
  background:rgba(255,255,255,0.92);
  border-radius:12px;
}

.card-service {
  border:0;
  transition:transform .18s ease, box-shadow .18s ease;
}

.card-service:hover {
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(11,34,64,0.12);
}

.about {
  padding:60px 0;
}

.stats .stat {
  background:#fff;
  border-radius:8px;
  padding:20px;
  box-shadow:0 6px 24px rgba(11,34,64,0.05);
}

.contact-card {
  background:linear-gradient(180deg,#ffffff, #f8fbff);
  border-radius:12px;
  padding:24px;
}

.footer {
  background:#2a2d33;
  color:#197376;
  padding:40px 0;
}
.footer Div.gts{
  color:#ffffff;
}
.footer Div.gts ul li{
  color:#ffffff;
  list-style: none;
}
.footer Div.gts ul li a{
  color:#ffffff;
  text-decoration:none;
}
.footer Div.gts ul li a:hover{
  color:skyblue;
  text-decoration: underline;
}

.social-bottom {
padding-left:30px;
}
.social-bottom div{
padding-left:30px;

  border-radius: 50%;
  border-color: #fff;
}
.social-bottom a {
  color:#ffffff;
  text-decoration:none;
  border: 1px solid #197376;
      border-radius: 20px;
      padding: 8px 10px;
      font-size: 14px;
      cursor: pointer;
      
      transition: all 0.2s ease;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.social-bottom a:hover{
  color:#197376;
 }
  
.copyright {
  background:#1e2228;
  color:#ffffff;
  padding:15px 0;
}

.copyright a {
  color:#ffffff;
  text-decoration:none;
}
.copyright a:hover{
  color:skyblue;
  text-decoration: underline;
}

@media (max-width:767px) {
  .hero {
    padding:60px 0;
  }
}

/* Conteneur global : icônes + boutons */
    .header-top11 {
      position: fixed;
      top: 15px;
      right: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 1000;
      font-family: Arial, sans-serif;
    }

    /* Icônes sociales */
    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      text-decoration: none;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .facebook { background-color: #1877f2; }
    .twitter { background-color: #1da1f2; }
    .instagram { background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 10%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
    .whatsapp { background-color: #25D366; }

    .social-icons a:hover {
      transform: scale(1.1);
      opacity: 0.9;
    }

    /* Boutons de langue et de devis */
    .top-buttons {
      display: flex;
      gap: 10px;
    }

    .top-buttons button {
      border: none;
      border-radius: 8px;
      padding: 1px 6px;
      font-size: 14px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .btn-fr {
      background-color: #197376;
      color: #000;
    }

    .btn-en {
      background-color: #f5f5f5;
      color: #000;
    }

    .btn-devis {
      background-color: #197376;
      color: white;
    }

    .top-buttons button:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }
/* ===================
Bouton
====================== */

.devis a{
  color:#ffffff;
}
.devis a:hover h6{
  background-color:#ffffff;
  color:#197376;
  text-decoration: none;
}

.btn-rouge a{
  color:#ffffff;
  background-color:#eb143a;
  text-decoration: none;
}

.btn-rouge a h6{
  color:#ffffff;
  background-color:#eb143a;
}
.btn-rouge a:hover h6{
  background-color:#197376;
  color:#ffffff;
}

a:hover i{
  padding-left: 10px;
}

/* ===================
hero css 
====================== */

.hero-section{
  position: relative;
  overflow: hidden;


.hero-single {
  padding-top: 120px;
  padding-bottom: 120px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-single::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
}

.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  /*text-transform: capitalize;*/
}

.hero-single .hero-content .hero-title span{
  color: #053780;
}

.hero-single .hero-content .hero-sub-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 2px;
  background: #127575;
  width: fit-content;
  border-radius: 50px;
  padding: 13px 19px 15px 19px;
}

.hero-single .hero-content p {
  color: #fff;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-title {
  font-weight: 700;
  margin: 0px 0;
}

.hero-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-section .owl-dots {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.hero-section .owl-dots .owl-dot{
  display: block;
}

.hero-section .owl-dots .owl-dot span {
  border: 4px solid rgba(66, 152, 239, 0.5);
  margin: 5px;
  border-radius: 50px;
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: transparent;
  transition: all .5s ease-in-out;
}

.hero-section .owl-dots .owl-dot.active span {
  background-color: transparent;
  border-color: #053780;
}


/* hero-slider2 */

.hero-slider2.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider2.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.hero-slider2.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #053780;
}

.hero-slider2.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider2.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider2.owl-theme .owl-nav .owl-prev, .hero-slider2.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider2.owl-theme .owl-nav .owl-prev, .hero-slider2.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 5px !important;
  }

  .hero-slider2.owl-theme .owl-nav .owl-next {
    left: 120px;
  }

  .hero-social-wrapper{
    display: none;
  }
}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-single{
    padding-top: 150px;
  }

  .hero-img{
    display: none;
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 2rem;
  }

  .hero-single .hero-content .theme-btn {
    padding: 10px 14px;
  }

  .hero-section .owl-dots {
    top: unset;
    right: unset;
    left: 10px;
    bottom: 40px;
  }

  .hero-section .owl-dots .owl-dot{
    display: inline-block;
  }


}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/** @section Thumbnails */
.figure-light figcaption {
  padding-top: 10px;
  color: #cdcdcd;
}

.thumbnail-classic {
  position: relative;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .thumbnail-classic {
    max-height: 80vw;
  }
}

.desktop:not([data-x-mode='true']) .thumbnail-classic:hover .thumbnail-classic-caption {
  opacity: 1;
}

.desktop:not([data-x-mode='true']) .thumbnail-classic .thumbnail-classic-caption {
  opacity: 0;
}

.thumbnail-classic-figure {
  display: block;
}

.thumbnail-classic-figure img {
  width: 100%;
}

.thumbnail-classic-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 25px;
  background: rgba(28, 39, 72, 0.68);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.thumbnail-classic-caption::before {
  content: '';
  display: block;
  position: absolute;
  top: 15px;
  left: 17px;
  right: 17px;
  bottom: 15px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 8%, transparent 8%, transparent 92%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 8%, transparent 8%, transparent 92%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 11%, transparent 11%, transparent 89%, rgba(255, 255, 255, 0.5) 89%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 11%, transparent 11%, transparent 89%, rgba(255, 255, 255, 0.5) 89%, rgba(255, 255, 255, 0.5) 100%);
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: no-repeat;
}

.thumbnail-classic-title {
  font-weight: 700;
  letter-spacing: .025em;
}

.thumbnail-classic-time {
  font-family: "Source Code Pro", Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  position: relative;
  text-transform: uppercase;
  margin-top: 16px;
}

.thumbnail-classic-time::before {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 36px;
  background-color: #4ac4cf;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.thumbnail-modern {
  position: relative;
}

.thumbnail-modern-figure img {
  width: 100%;
}

.thumbnail-modern-caption {
  position: absolute;
  top: 26px;
  left: 24px;
  right: 25px;
  bottom: 29px;
  background-color: rgba(0, 0, 0, 0.39);
  transition: all 0.3s ease-in-out;
}

.desktop:not([data-x-mode='true']) .thumbnail-modern-caption {
  background-color: transparent;
}

.desktop:not([data-x-mode='true']) .thumbnail-modern-caption > *:not(.thumbnail-modern-price-wrap) {
  opacity: 0;
  visibility: hidden;
}

.thumbnail-modern-wrap {
  text-align: center;
}

@media (max-width: 575.98px) {
  .thumbnail-modern-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }
}

.thumbnail-modern-wrap:hover .thumbnail-modern-caption {
  background-color: rgba(0, 0, 0, 0.39);
}

.thumbnail-modern-wrap:hover .thumbnail-modern-caption > *:not(.thumbnail-modern-price-wrap) {
  opacity: 1;
  visibility: visible;
}

.thumbnail-modern-price-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 6px 16px;
  display: flex;
  color: #151515;
  letter-spacing: .02em;
}

.thumbnail-modern-price-wrap li + li {
  margin-left: 12px;
}

.thumbnail-modern-icon {
  font-size: 22px;
  color: #ffffff;
}

.thumbnail-modern-icon:hover {
  color: #4ac4cf;
}

.thumbnail-modern-icon[class*='like'] {
  position: absolute;
  top: 22px;
  right: 21px;
}

.thumbnail-modern-icon-list {
  display: flex;
  justify-content: center;
  margin-left: -30px;
}

.thumbnail-modern-icon-list > * {
  margin-left: 30px;
}

.thumbnail-modern-icon-list li {
  position: relative;
}

.thumbnail-modern-icon-list li + li::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -15px;
  width: 1px;
  height: 22px;
  background-color: #ffffff;
}

.thumbnail-modern-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thumbnail-modern-buttons .button {
  margin-top: 16px;
  padding: 15px 19px;
}

.thumbnail-modern-title {
  font-weight: 700;
  margin-top: 13px;
}

.old-price {
  text-decoration: line-through;
}


/** @section Sections */
.section-xs {
  padding: 25px 0;
}

.section-sm,
.section-md,
.section-lg,
.section-lg-2,
.section-lg-3 {
  padding: 60px 0;
}

.section-xl {
  padding: 90px 0;
}

.section-xxl {
  padding: 100px 0;
}

.section-collapse + .section-collapse {
  padding-top: 0;
}

.section-collapse:last-child {
  padding-bottom: 0;
}

html [class*='section-'].section-bottom-0 {
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  section.section-sm:first-of-type,
  section.section-md:first-of-type,
  section.section-lg:first-of-type,
  section.section-xl:first-of-type {
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  .section-sm {
    padding: 60px 0;
  }
  .section-md {
    padding: 70px 0;
  }
  .section-lg {
    padding: 85px 0;
  }
  .section-lg-2 {
    padding: 60px 0;
  }
}

@media (min-width: 992px) {
  .section-md {
    padding: 80px 0 90px;
  }
  .section-lg {
    padding: 100px 0;
  }
  .section-lg-2 {
    padding: 100px 0;
  }
  .section-lg-3 {
    padding: 24px 0 155px;
  }
  .section-xxl {
    padding: 140px 0;
  }
}

@media (min-width: 1200px) {
  .section-lg {
    padding: 115px 0;
  }
  .section-xl {
    padding: 115px 0;
  }
}

.section-single {
  display: flex;
  text-align: center;
}

.section-single p {
  margin-left: auto;
  margin-right: auto;
}

.section-single * + .rights {
  margin-top: 35px;
}

.section-single * + .countdown-wrap {
  margin-top: 35px;
}

.section-single .countdown-wrap + * {
  margin-top: 35px;
}

@media (min-width: 992px) {
  .section-single * + .rights {
    margin-top: 60px;
  }
  .section-single .countdown-wrap + * {
    margin-top: 35px;
  }
}

.section-single .rd-mailform-wrap {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-single * + .rd-mailform-wrap {
  margin-top: 20px;
}

.section-single-header {
  padding: calc(1em + 3vh) 0 calc(1em + 2vh);
}

.section-single-main {
  padding: calc(1em + 4vh) 0;
}

.section-single-footer {
  padding: calc(1em + 2vh) 0 calc(1em + 3vh);
}

.section-single-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
}

.section-single-inner > * {
  width: 100%;
}

.section-video {
  height: 880px;
  min-height: 880px;
}