* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.category-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.category-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.category-item img {
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.1);
}

.label {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #325662;
  background: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.3s, color 0.3s;
}

.category-item:hover .label {
  background-color: #FC717B;
  color: white;
}


.top-bar {
  background: #f5f5f5;
  display: flex;
  justify-content: flex-end;
  padding: 5px 20px;
  font-size: 14px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  flex-wrap: wrap;
  background: #ffffff;
}

.main-menu {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.main-menu > li {
  list-style: none;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  padding: 8px;
  display: block;
}

.main-menu li:hover > a {
  color: #FC717B;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-text {
  position: absolute;
  bottom: 50px;
  left: 60px;
  color: white;
}

.carousel-text h1 {
  font-size: 56px;
  font-weight: bold;
  margin: 0;
}

.carousel-text p {
  font-size: 28px;
  margin-top: 10px;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 2;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.cta-button {
  background-color: #007d6c;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #005f4c;
}

footer {
  background-color: #222;
  color: #eee;
  padding: 60px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4,
.footer-column h2 {
  color: #FC717B;
  margin-bottom: 12px;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

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

.social-icons a {
  color: #ccc;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FC717B;
}

.map-container {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* aboutus */










/* Responsive */
@media (max-width: 768px) {
  .header,
  .black-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .main-menu {
    flex-direction: column;
    gap: 5px;
  }

  .carousel-text h1 {
    font-size: 36px;
  }

  .carousel-text p {
    font-size: 18px;
  }

  .footer-container {
    flex-direction: column;
  }
}





.products-section {
  background-color: #f8f9fb;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #325662;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #FC717B;
  margin: 15px auto 0;
  border-radius: 3px;
}

.section-description {
  font-size: 18px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.product-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid #d3d3d3;
  padding-top: 60px;
  max-width: 1200px;
  position: relative;
}

.product-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.product-block.reverse {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1 1 400px;
  max-width: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: linear-gradient(145deg, #ffffff, #e6eaf1);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.product-image:hover img {
  transform: scale(1.06);
}

.product-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FC717B;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(252, 113, 123, 0.4);
}

.product-content {
  flex: 1 1 500px;
  text-align: left;
  max-width: 600px;
  padding: 10px 20px;
}

.product-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #325662;
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
}

.product-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 3px;
  background-color: #FC717B;
  border-radius: 2px;
}

.product-content p {
  font-size: 16.5px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-link {
  display: inline-block;
  background-color: #FC717B;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(252, 113, 123, 0.3);
  transition: background-color 0.3s ease, transform 0.2s;
}

.product-link:hover {
  background-color: #e45664;
  transform: translateY(-3px);
}

.all-products-btn {
  text-align: center;
  margin-top: 60px;
}

.read-more {
  display: inline-block;
  padding: 14px 34px;
  background-color: #325662;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
}

.read-more:hover {
  background-color: #243e4a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .product-block,
  .product-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .product-content {
    text-align: center;
    padding: 0;
  }

  .product-content h2::before {
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
  }

  .product-content h2 {
    padding-left: 0;
    padding-top: 20px;
  }

  .product-content p {
    padding: 0 10px;
  }
}

/* Styles généraux */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* --- SECTION SINOTRUK --- */
 

.logo img {
  height: 100px;
}

.address {
  flex: 1;
  padding: 0 30px;
  color: #000;
  font-size: 14px;
  min-width: 250px;
}

.address i {
  color: #009ec0;
  margin-right: 8px;
}


.contact-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #000;
}

.contact-info i {
  color: #009ec0;
  margin-right: 8px;
}

.news-video-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 40px;
  background-color: #fff;
}

.news-column,
.video-column {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: #f0c000;
  margin-top: 8px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.news-item img {
  width: 120px;
  height: auto;
  object-fit: cover;
}

.news-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.news-date {
  color: #339ddc;
  font-size: 14px;
  margin: 5px 0;
}

.news-content p {
  font-size: 14px;
  margin: 5px 0;
}

.news-content a {
  font-size: 14px;
  color: #339ddc;
  text-decoration: none;
}

.news-content a:hover {
  text-decoration: underline;
}

.video-column video {
  max-width: 100%;
  border: 1px solid #ddd;
}


/* Style de la popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideDown 0.5s ease;
}.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  max-width: 90%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideDown 0.4s ease;
}

.popup-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.popup-content h3 {
  font-size: 16px;
  margin: 8px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.features li {
  font-size: 14px;
  margin-bottom: 5px;
}

.popup-image {
  width: 90%;
  height: auto;
  margin: 10px 0;
  border-radius: 8px;
}

.highlight {
  font-size: 14px;
  color: #e91e63;
  font-weight: bold;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.close-text {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: underline;
  color: #FC717B;
  cursor: pointer;
}


.flash-badge {
  background-color: yellow;
  color: red;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 3px dashed red;
  border-radius: 8px;
  animation: flashPulse 1s infinite alternate;
}

/* Animation clignotement */
@keyframes flashPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.05); opacity: 0.8; }
}








@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-30px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.contact-container {
  display: flex;
  gap: 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
}

.contact-icon img {
  width: 150px;
  height: auto;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 25px;
  background-color: #f1f1f1;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #43b043;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #369336;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f2f2f2;
}

.form-container {
  max-width: 800px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background: #f9f9f9;
}

textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-group label {
  font-weight: 500;
}

.btn-container {
  text-align: center;
  margin-top: 25px;
}

button {
  background: linear-gradient(90deg, #00c853, #1de9b6);
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(90deg, #00b44f, #14dba7);
}

/* Header global */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  flex-wrap: wrap;
}

.main-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Menu burger (hidden by default on desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Contact banner */

/* ---------- Base styles ---------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ----- Contact Banner ----- */
.contact-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f1f1f1;
  flex-wrap: wrap;
}

.contact-banner .logo,
.contact-banner .contact-info,
.contact-banner .address {
  flex: 1;
  min-width: 200px;
}

.contact-banner .logo {
  text-align: left;
}

.contact-banner .contact-info {

}

.contact-banner .address {
  margin-left: auto; /* Permet de coller l'adresse à droite sans hack */
}

.contact-banner .logo img {
  height: 100px;
  display: block;
  margin: 0 auto 0 0; /* aligne à gauche */
}

.contact-info p,
.address p {
  margin: 5px 0;
}

.contact-info a {
  text-decoration: none;
  color: black;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ----- Header & Navigation ----- */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 10px 0;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.main-menu li a:hover {
  color: #FC717B;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin: 10px auto;
    position: static;
    align-self: center;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: white;
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding: 10px 0;
  }

  .main-menu.show {
    display: flex;
  }

  .main-menu li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .contact-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-banner .logo,
  .contact-banner .contact-info,
  .contact-banner .address {
    flex: none;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-banner .logo img {
    margin: 0 auto;
  }

  .contact-banner .address {
    margin-left: 0; /* enlève le auto qui faisait le push en desktop */
  }
}
