
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body{
    font-family: "Manrope", sans-serif;
}


/* HERO */
.hero {
  height: 100vh;
  background: url('./images/bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

}

.hero-title {
  animation: fadeUp 1s ease forwards;
  font-weight:800;
  font-size:3rem;
}


.nav-link{
    font-weight:bold;
    text-transform:uppercase;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 60px;
  animation: fadeUp 1.2s ease forwards;
}

/* BOXES */
.hero-box {
  height: 140px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  border-radius: 12px;
  position: relative;

}

.hero-box h5 {
  margin-bottom: 8px;
  z-index: 2;
  text-align:left;
  font-size:14px;

}

.counter{
    color:#C92A22;
    font-size:40px;
    font-weight:bold;
}

.stat-box p{
    color:#596066;
    text-transform:uppercase;
}

.hero-box .arrow {
  transition: transform 0.3s;
  z-index: 2;
}

.hero-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255,107,26,0.4);
}

.hero-box:hover .arrow {
  transform: translateX(10px);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width: 600px){
  .hero-box {height: 120px;}
  .hero-title {font-size: 2.5rem;}
}

.section {
    padding: 80px 0;
}

.stats {
    background: #111;
    color: white;
}

.service-card {
    border: none;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.btn-orange {
    background: #8AA5AF;
    color: white;
    padding: 8px 24px;
    border-radius:8px;
    text-decoration:none;
}

.footer {
    background: #000;
    color: white;
    padding: 40px 0;
}




.hero-box {
  height: 200px; /* ou ce que tu veux */
  /* background: url('./images/prod1.png') center/cover no-repeat; */
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* pousser le contenu en bas */
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

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

/* TEXTE en bas à gauche */
.hero-box-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}

/* FLECHE en bas à droite */
.hero-box-arrow {
  position: absolute;
  bottom: 15px;
  right: 8px;
  font-size: 24px;
  color: #FF6B1A;
  transition: transform 0.3s;
}

.hero-box:hover .hero-box-arrow {
  transform: translateX(5px); /* petite animation */
}



.bgsecond{
    background:#F1F5F9;
    border-radius:4px;
    border:none;
}

.card-title{
    color:#2D3339;
    font-size:36px;
    font-weight:bold;
}


.btn-fire{
background:#343A40;
color:#fff;
font-size:16px;
padding: 24px 32px;

}




.footer-section {
  background: #0A0A0A;
}

.footer-link {
  color: #000 !important;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-item a{
  color: #000;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section h6 {

  font-size: 16px;
  /* color: #829AB3; */

  color: #34577b;
}

.footer-bottom {
  font-size: 13px;
  padding-bottom:15px;
}


.footer-section{
    background:#DDE3EA;
}


/* ===== GLOBAL RESPONSIVE ===== */
@media (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .inner-hero {
    padding: 100px 40px 60px!important;
  }
 section {
    padding: 30px 10px!important;
}
 .section-dark {
    padding: 50px 10px!important;
}
.card-title {
    font-size: 24px!important;
  }
  .form-card {
    padding: 20px!important;
}
.section-title {
    font-size: 26px!important;
  }
  .navbar {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
  }

  .navbar-collapse {
    background: #000;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
  }

  .navbar-nav {
    gap: 15px !important;
    text-align: center;
  }
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 40px !important;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}

/* ===== HERO BOXES MOBILE ===== */
@media (max-width: 768px) {
  .hero-boxes {
    position: static !important;
    margin-top: 40px;
  }

  .hero-box{
    padding:0px;
  }

  .hero-box {
    height: 120px;
    padding: 15px;
  }

  .hero-box h5 {
    font-size: 14px;
  }

  .hero-box-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}

/* ===== STATS ===== */
@media (max-width: 768px) {
  .stats-title {
    font-size: 28px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

/* ===== ABOUT SECTION ===== */
@media (max-width: 991px) {
  .section .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .section img {
    margin-bottom: 30px;
  }
}

/* ===== CARD HORIZONTAL MOBILE ===== */
@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: column !important;
    text-align: center;
  }

  .card-action {
    margin-top: 20px;
    margin-left: 0 !important;
  }

  .card-horizontal .btn {
    width: 100%;
  }
}

/* ===== FOOTER ===== */
@media (max-width: 768px) {

  .btn-orange{
    margin-bottom:30px;
  }

  .hero-title{
    font-size:24px !important;
  }

  .hero-content{
    padding-top:220px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}




.footer-section h6::before {
    content: "";
    display: block;
    height: 1px;
    width: 25px;
    /* background-color:#829AB3; */
    background-color:#34577b;
    margin-right: 10px;
    top: 10px;
    position: relative;
    left: -30px;
}




.footer-section h6{
text-align: left;
    justify-content: flex-start;
    font-size: 14px;
    padding-left: 30px;
}


.navbar-toggler{
    background:#fff;
}



.inner-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('./images/slider.png');
    position: relative;
    overflow: hidden;
    padding: 100px 60px 70px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.heroimagepro{
  background: url('./images/product.jpg') !important;
  background-size:cover !important;


}

.prod_hero{

background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('./images/prod.jpg');
background-position: 50% 16%;
background-size:cover !important;
}

.propohero{
   background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('./images/ser.jpg') !important;
  background-size:cover !important;
   background-position: 80% 90% !important;
}

.contact_hero{
background: url('./images/c.png');
position: relative;
    overflow: hidden;
    padding: 100px 60px 70px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-repeat:no-repeat;
        background-size: cover;
    background-position: left;

}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}


.contact_hero h1{

   font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.01em;

    position: relative;
    z-index: 1;
    max-width: 700px;
    font-family: "Manrope", sans-serif;


}





.inner-hero h1 {

    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 600;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.01em;

    position: relative;
    z-index: 1;
    max-width: 700px;
    font-family: "Manrope", sans-serif;
}

.hero-subtitle {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 300;
    color: #e7e7e7;
    max-width: 500px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}



section {
    padding: 30px 60px;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8AA5AF;
    margin-bottom: 16px;

}


.section-title {

    font-size:36px;
    font-weight: 800;
    letter-spacing: -0.01em;

    line-height: 1.05;
    color: #000;
}



.orange-badge {
    position: absolute;
    bottom: 17px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: #F1F5F9;
    clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.orange-badge .num {

    font-size: 28px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.orange-badge .lbl {
    font-size: 10px;
    font-weight: 600;
    color: #000;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.3;
}



.section-dark {
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.section-title.light {
    color:#000;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    margin-bottom: 16px;
}


.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #8AA5AF;
}



.stat-num {
  color:#C92A22;
}

.cert-item{
  text-align:left;
}
.cert-badge {
    width: 72px;
    height: 72px;
    background: #F1F5F9;
    border: 1px solid #8AA5AF;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 800;
    color: #8AA5AF;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    letter-spacing: 0.05em;
}

.cert-item span {
    font-size: 14px;
    color: #000;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}



.breadcrumb a, .breadcrumb span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
}

.breadcrumb a:hover, .breadcrumb span:hover {
    color: #c43829!important;
}


.service-card {
    background:#fff;
    border: 1px solid #E8E6E1;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}


.service-card .learn-more {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8AA5AF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s;
}

.service-card:hover::before {
    background:#8AA5AF;
}


.service-card h3 {

    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}


.service-card p {
    font-size: 14px;
    color: #596066;
    line-height: 1.7;
    margin-bottom: 20px;
}


.feature-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: #596066;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    flex-shrink: 0;
    margin-top: 1px;
}


.txtsec{
  color:#8AA5AF;
}


.border{
 border: 1px solid #fff;
 border-radius: 8px;
 padding: 0px 8px;
}


.dropdown-menu li{
  border-bottom:1px solid #dde3ea;
}


.dropdown-menu li a{
  padding:8px 12px;
}



.process-step {
    position: relative;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 24px;
    transition: border-color .25s, transform .25s;
}

.step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    color: rgb(232 179 5 / 19%);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 16px;
}
.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
   background: rgb(241 245 249);
    border: 1px solid rgb(221 227 234);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 18px;
}


.step-title {

    font-weight: 700;
    font-size: 1.15rem;
    color: #8AA5AF;
    margin-bottom: 8px;
}

.capa-card {
    background: #F1F5F9;

    border-radius: 4px;
    padding: 28px;
}


.capa-list{


    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

}


.capa-list li i {
    color:#2D3339;
    font-size: .35rem;
    margin-right: 8px;
}


.capa-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;

}


.capa-card h5 i{
  color:#C92A22 !important;
}


.capa-card h5{
  margin-bottom:1.2rem;
  font-weight:600;
}


.av-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 4px;
    background:#F1F5F9;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom:14px;

}


.av-text h6 {

    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}


.nav-tabs .nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: transparent;
}


.spec-table tr {
    border-bottom: 1px solid #DDE3EA;
}


.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef;
        margin-bottom: 2rem;
}


.product-tabs .nav-tabs .nav-link{

  color: #8aa5af;
}

.nav-tabs .nav-link.active{
  color:#000 !important;
}

.nav-tabs .nav-link {

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--steel);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 14px 24px;
    transition: color .2s;
}

.spec-table td:first-child {
    color: #000 !important;
    width: 40%;
    font-weight: 500;
}


.spec-table td {
    padding: 14px 16px;
    font-size: .9rem;
}

.card-img {
    position: relative;
    overflow: hidden;
    height: 230px;
    text-align: center;
    background: #fff;
    padding: 10px;
}

.card-img .cat-strip {
    position: absolute;
    top: 16px;
    left: 0;

    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: #8aa5af;
    color: #0B0E12;
    padding: 4px 12px;
    font-weight: 700;
}


.card-title-prod {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: #000;
    margin-bottom: 10px;
}



.spec-pill {

    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(43, 159, 216, .1);
    color: var(--accent);
    border: 1px solid rgba(43, 159, 216, .2);
    padding: 3px 10px;
    border-radius: 20px;
}



.card-cta a {

    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c43829;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
    font-weight:900;
}



.card-cta .demand-btn {

    font-size: .90rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #8aa5af;
    color: #8aa5af;
    padding: 6px 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: background .2s;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #DDE3EA;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}


.animate-up {
    animation: fadeUp .7s ease both;
}



.product-card {
    background: #F1F5F9;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
    height: 100%;
}


.card-body-custom {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-desc {

    font-size: .88rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}



.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;

    border: 1px solid #8aa5af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color:#000;
    margin-bottom: 14px;
}

.feat-title {

    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
    color: #000;
}



.hero-contact{
  background: #64808a;
  padding-top:120px;
}


.info-card {

    border: 1px solid #dde3ea;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color .25s, transform .25s;
}

.info-label {
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 4px;
}

.info-value {
    color: #000;
    font-weight: 600;
    font-size: .95rem;
}


.map-wrap{
  margin-top:16px;
}



.info-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 4px;
    background: rgba(243, 243, 243, 0.46);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}


.form-label {
    margin-bottom: .5rem;
    font-size: 14px;
    font-weight: 600;
}


.form-card {

    border: 1px solid #dde3ea;

    border-radius: 4px;
    padding: 40px;
}




  .form-card-title {

    font-weight: 800;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 6px;
}



.btn-send {
    background: #8AA5AF;
    color:#fff;
    font-weight: 700;

    font-size: 1.1rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    padding: 14px 40px;
    width: 100%;
    transition: background .2s, transform .15s;
}


.horaires-card {

    border: 1px solid #dde3ea;
    border-radius: 4px;
    padding: 24px;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dde3ea;
    font-size: .85rem;
}


.horaire-closed {
    color: #e74c3c;
    font-weight: 600;
}
.dropdown-menu li a{
  padding:8px 12px;
  text-decoration: none;
}
.flag{
	width: 20px;
    height: 20px;
    border-radius: 50%;
}
.lang_text, .text-file a span{ color:#000000;}

#expertise-section .img-fluid
{
    width: 90%;
}
.form-control:focus {
    border-color: #8AA5AF;
    box-shadow: none;
}
.form-control.is-invalid:focus
{
    box-shadow: none;
}
.form-control.is-invalid {
    background-image: none;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-active-bg)!important;
    border-color: var(--bs-btn-active-border-color)!important;
}
.active-menu{
    color: #c43829!important;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}
.title-service{
  color:#fff;
}
.hero-box a {text-decoration: unset;}
.dropdown-item.active, .dropdown-item:active
 { background-color: #c43829!important; }

 .text-justify ,  .text-justify p{
    text-align: justify;
}
.sticky-bar.stick {
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    background-color:#000;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.dropdown-menu li:last-child {
    border-bottom: unset;
}
.section-contenu ul {
  list-style: none;
  padding-left: 0;
}

.section-contenu ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.section-contenu ul li::before {
  content: "✔"; /* ou ●, ➤, ■, etc */
  position: absolute;
  left: 0;
  color: #c43829; /* couleur du marker */
  font-weight: bold;
}
.card-img img{height: 100%;}