/* ====== RESET ====== */
:root {
  --main-blue: #0A3563;
  --light-bg: #ffffff;
  --text-dark: #000;
  --soft-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: var(--light-bg);
  color: var(--text-dark);
}


/* ---------------------------- */
/* CONTENEUR GENERAL */
/* ---------------------------- */
.services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}


/* ---------------------------- */
/* COLONNE GAUCHE */
/* ---------------------------- */
.services-left {
  flex: 1;
}



.services-left h2 {
  color: var(--main-blue);
  margin-bottom: 15px;
  font-size: 1.8em;
  font-family: "Segoe UI", sans-serif;

}

.services-left h3 {
  color: var(--main-blue);
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Segoe UI", sans-serif;

}


.services-left ul {
  padding-left: 20px;
  line-height: 1.6;
  font-family: "Segoe UI", sans-serif;

}


/* ---------------------------- */
/* COLONNE DROITE */
/* ---------------------------- */
.services-right {
  flex: 1;
}

.services-right h1 {
  color: var(--main-blue);
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Segoe UI", Arial,;
  font-size: 2.2em;
  color: #00aaff;
  

}

  
.services-right h2 {
  color: var(--main-blue);
  font-family: "Segoe UI", Arial, sans-serif;
  margin-bottom: 20px;
  font-size: 1.8em;
}


/* =============================
PORTFOLIO – CADRE BLEU
============================= */
.portfolio-subtitle {
font-size: 18px;
margin-bottom: 30px;
font-family: "Segoe UI", Arial, sans-serif;
color:  #00aaff;
}

.portfolio-box {

position: relative;
padding: 60px;
}


.portfolio-bg {

border-radius: 30px;
}


.portfolio-list {
position: absolute;
top: 80px;
left: 80px;
right: 60px;
}


.portfolio-list ul {
list-style: none;
padding: 0;
}


.portfolio-list li {
margin-bottom: 5px;
}


.portfolio-list a {
text-decoration: none;
color: #fff;
font-weight: 600;
transition: 0.3s ease;
}


.portfolio-list a:hover {
color: #0096d6;
}
 ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
footer {
  text-align: center;
  background-color: var(--main-blue);
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9em;
  line-height: 1.4;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* Logo centré dans le footer */
.footer-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 12%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.visitor-counter {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 10px;
  border: 2px solid #0078d7;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-top: 14px;
  text-align: center;
}


/* ---------------------------- */
/* RESPONSIVE */
/* ---------------------------- */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    gap: 25px;
  }

  .services-left, 
  .services-right {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .trust-box {
    padding: 20px;
  }

  .services-left h2,
  .services-right h2 {
    font-size: 1.5em;
  }
}
