@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  /* ----- PRIMARY BRAND ----- */
  --brand-red: #e11d2e;
  --brand-red-2: #ff2d3d;
  --brand-red-dark: #b31321;
  --brand-navy: #0b1b33;
  --brand-navy-2: #103059;
  --brand-blue: #1e5aa8;
  --brand-blue-dark: #0e3a6d;
  --ink: #0f172a;
  --muted: #5a6780;
  --line: #e6edf6;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --radius-card: 16px;
  --shadow-card: 0 12px 34px rgba(11, 27, 51, 0.1);
  --shadow-card-hover: 0 18px 54px rgba(11, 27, 51, 0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* ----- METALLIC / INDUSTRIAL TONES ----- */
  --steel-dark: #5a6168;
  --steel: #8c949c;
  --steel-light: #c7cdd3;
  --steel-highlight: #e6ebef;

  /* ----- NEUTRALS ----- */
  --text-dark: #1e1e1e;
  --text-muted: #6b7280;
  --background-light: #f4f6f8;
  --background-white: #ffffff;
  --bs-btn-bg: #0e3a6d;

  /* ----- GRADIENTS (premium) ----- */
  --gradient-blue: linear-gradient(
    135deg,
    #0e3a6d 0%,
    #1f5faf 60%,
    #2e7bd9 100%
  );
  --gradient-steel: linear-gradient(
    145deg,
    #5a6168 0%,
    #c7cdd3 50%,
    #8c949c 100%
  );
  --gradient-red-accent: linear-gradient(90deg, #a31217 0%, #d71920 100%);

  /* ----- SHADOWS & RADIUS (high-end industrial) ----- */
  --shadow-sm:
    0 8px 20px rgba(14, 58, 109, 0.08), 0 2px 6px rgba(30, 40, 50, 0.02);
  --shadow-md:
    0 20px 38px -10px rgba(14, 58, 109, 0.14),
    0 6px 16px rgba(31, 95, 175, 0.06);
  --shadow-lg:
    0 28px 48px -12px rgba(10, 45, 85, 0.22),
    0 10px 24px rgba(31, 95, 175, 0.08);
  --shadow-hover:
    0 34px 58px -16px rgba(14, 58, 109, 0.28),
    0 14px 32px rgba(215, 25, 32, 0.1);
  --radius-card: 28px;
  --radius-element: 22px;
  --radius-button: 60px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter","Plus Jakarta Sans",-apple-system,system-ui,sans-serif;
  color: var(--text-dark);
  background-color: var(--background-white);
  line-height: 1.55;
  padding-top: 160px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.018em;
}

/* Top Contact Bar */
.top-contact-bar {
  background: var(--brand-blue-dark);
  border-bottom: 3px solid var(--brand-red);
  color: white;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1040;
}

.top-contact-bar a {
  color: white;
  font-weight: 500;
  text-decoration: none;
}

.top-contact-bar a:hover {
  color: var(--brand-red-dark);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}
/* ====== Language selector ====== */
.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease;
}

.lang-btn svg {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 140px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid transparent;
  display: none;
  z-index: 9999;
}

/* Fix: toggle 'open' on .lang, not .lang-menu */
.lang.open .lang-menu {
  display: block;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  transition: background 150ms ease;
}

.lang a {
  color: black;
}

.lang-item a:hover {
  color: #000;
}

.check {
  width: 16px;
  height: 16px;
  opacity: 0;
}

.lang-item[aria-current="true"] .check {
  opacity: 1;
}

/* Put language selector to the right on mobile */
@media (max-width: 767.98px) {
  /* Make the right column a flex row and push content to the right */
  .top-contact-bar .text-md-end {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 10px;
  }

  /* Ensure the language switcher stays right */
  .top-contact-bar #langSwitcher {
    margin-left: auto !important;
  }

  /* Optional: slightly smaller button on mobile */
  .top-contact-bar .lang-btn {
    padding: 5px 8px;
    font-size: 12px;
  }
}
.logo-large {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-small {
  height: 75px;
  margin-top: 15px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: -30px;
}

.carousel-item {
  height: 600px;
  background-position: center;
  background-size: cover;
}

.carousel-item:nth-child(1) {
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 60, 120, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(94, 7, 101, 0.35) 100%
    ),
    url("/assets/img/IMG_3637.WEBP");
}

.carousel-item:nth-child(2) {
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 60, 120, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(94, 7, 101, 0.35) 100%
    ),
    url("/assets/img/IMG_3643.JPG?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
}
.carousel-item:nth-child(3) {
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 60, 120, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(94, 7, 101, 0.35) 100%
    ),
    url("/assets/img/03_extruding.jpg");
}
.carousel-item:nth-child(4) {
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 60, 120, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(94, 7, 101, 0.35) 100%
    ),
    url("/assets/img/06_quality.jpg");
}
.carousel-item:nth-child(5) {
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 60, 120, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(94, 7, 101, 0.35) 100%
    ),
    url("/assets/img/01_raw_materials.jpg");
}

.carousel-caption {
  bottom: 38%;
  text-align: left;
  padding-left: 50px;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.carousel-caption p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Products List Section */
.products-list-section {
  background: radial-gradient(ellipse at top left, #0e3a6d, #a31217);
  padding: 100px 0;
  position: relative;
  isolation: isolate;
}

/* subtle overlay to soften and create depth – keeps text readable */
.products-list-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 0;
}

.products-list-section .container {
  position: relative;
  z-index: 2;
}

/* ------ PRODUCT CARDS – now with LIGHT BACKGROUND, crisp shadows, pop against dramatic bg ------ */
.product-list-item {
  background: white;
  backdrop-filter: blur(2px);
  border-radius: var(--radius-card);
  padding: 34px 32px;
  box-shadow:
    0 28px 48px -8px rgba(0, 0, 0, 0.35),
    0 12px 24px -6px rgba(163, 18, 23, 0.2);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-list-item:hover {
  box-shadow:
    0 40px 64px -12px rgba(0, 0, 0, 0.45),
    0 20px 40px -8px rgba(215, 25, 32, 0.3);
  transform: translateY(-9px);
  border-color: white;
  background: white;
}

/* left accent bar – gradient red (industrial signature) – even more vibrant on dark bg */
.product-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.product-list-icon {
  background: linear-gradient(145deg, var(--steel-highlight), white);
  width: 88px;
  height: 88px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--brand-blue-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 12px;
  border: 1px solid rgba(31, 95, 175, 0.1);
}

.product-list-item:hover .product-list-icon {
  background: var(--brand-blue-dark);
  color: white;
  box-shadow: 0 18px 32px rgba(14, 58, 109, 0.4);
  transform: scale(0.94);
  border-color: var(--brand-blue-light);
}

.product-list-item h4 {
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 18px;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.product-list-item p {
  color: var(--steel-dark);
  font-weight: 450;
  margin-bottom: 20px;
}

.product-list-item ul li {
  font-size: 0.98rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
}

.product-list-item ul li i {
  color: var(--brand-red);
  font-size: 0.85rem;
  background: rgba(215, 25, 32, 0.08);
  padding: 4px;
  border-radius: 50%;
  margin-right: 12px;
}
.btn-outline-primary {
  border: 2.2px solid var(--brand-blue);
  color: var(--brand-blue-dark);
  border-radius: var(--radius-button);
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: var(--transition);
  background: transparent;
  margin-top: 20px;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.btn-outline-primary:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(31, 95, 175, 0.3);
}

/* ------ SECTION TITLES inside products section – white for contrast on dark gradient ------ */
.products-list-section h2,
.products-list-section .lead {
  color: white !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.products-list-section h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--brand-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* ------ SERVICE CARDS – colored background, metallic + red accent icons, premium shadows ------ */
#services {
  background: linear-gradient(110deg, var(--background-white) 0%, #eef3fc 100%);
  position: relative;
}

#services .product-card {
  background:
        radial-gradient(500px 160px at 15% 0%, rgba(255,45,61,.16), transparent 62%),
        linear-gradient(180deg, #fff, var(--surface-2));
  border:1px solid rgba(225,29,46,.10);
      border-radius: 14px;
  padding: 38px 26px 38px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  backdrop-filter: blur(4px);
  position: relative;
}

#services .product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-10px) scale(1.01);
  border-color: var(--brand-blue-light);
  background: white;
}

.product-icon {
  background: radial-gradient(circle at 80% 20%, var(--steel-highlight), white);
  width: 96px;
  height: 96px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.1rem;
  color: var(--brand-blue-dark);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--steel-light);
}

.product-card:hover .product-icon {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 22px 40px rgba(31, 95, 175, 0.35);
  border-color: var(--brand-blue-dark);
}

.card-title {
  font-weight: 700;
  color: var(--brand-blue-dark);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.card-text {
  color: var(--steel-dark);
  text-align: justify;
  hyphens: auto; /* Adds hyphens when words break */
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
/* ------ ALERT – metallic blue gradient, red accent ------ */
.alert-info {
  background: linear-gradient(95deg, #f0f6fe, white);
  border: none;
  border-left: 12px solid var(--brand-red);
  border-radius: 28px;
  padding: 34px 40px;
  box-shadow: var(--shadow-lg);
  color: var(--brand-blue-dark);
  font-weight: 500;
}

.alert-info h5 {
  font-weight: 800;
  color: var(--brand-blue-dark);
  font-size: 1.45rem;
}

.alert-info i {
  color: var(--brand-red);
}

.go-to-top.show {
  opacity: 1;
  visibility: visible;
}

.go-to-top:hover {
  background-color: var(--brand-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: var(--brand-blue-dark);
  color: white;
  margin-top: 0;
  position: relative;
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-widget h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--brand-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: white;
}

.footer-contact-info i {
  color: var(--brand-red-2);
  margin-right: 10px;
  margin-top: 5px;
  min-width: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Per-platform brand colors on hover */
.social-links a[title="Facebook"] {
  background-color: #1877f2;
}
.social-links a[title="LinkedIn"] {
  background-color: #0a66c2;
}
.social-links a[title="YouTube"] {
  background-color: #ff0000;
  border: var(--brand-mcs-red) 1px solid;
}
.social-links a[title="Instagram"] {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Fix YouTube play triangle to stay white */
.social-links a[title="YouTube"] polygon {
  fill: white;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.powered-by {
  color: var(--steel-light) !important;
  font-weight: 600;
}

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
  }
  .container.my-5 h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--brand-blue-dark);
  }
}
@media (max-width: 768px) {
  .product-list-item .d-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .product-list-item .flex-shrink-0 {
    margin-bottom: 20px !important;
    align-self: center !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .product-list-item .flex-grow-1 {
    margin-left: 0 !important;
    width: 100%;
  }

  .product-list-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
    margin-bottom: 8px;
  }

  .product-list-item h4 {
    text-align: center;
    font-size: 1.8rem;
  }

  .product-list-item p {
    text-align: center;
  }

  .product-list-item ul li {
    justify-content: center;
    text-align: left; /* keep list items left-aligned for readability */
    float: left;
  }

  .btn-outline-primary {
    align-self: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* remove left accent bar on mobile? keep it but adjust radius */
  .product-list-item::after {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    width: 100%;
    height: 8px;
    top: 0;
    left: 0;
    right: 0;
    background: white;
  }
}
@media (max-width: 576px) {
  .product-list-item {
    padding: 28px 20px;
  }
  .product-list-icon {
    width: 90px;
    height: 90px;
    font-size: 2.6rem;
  }
  .product-list-item h4 {
    font-size: 1.6rem;
  }
}
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: rgb(0, 0, 0);
}
.parallax-content .col-md-3 > div {
  background: rgba(130, 123, 123, 0.268);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 34px 16px !important;
  border: 1px solid rgba(199, 205, 211, 0.35);
  box-shadow: 0 30px 50px -10px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.parallax-content .col-md-3 > div:hover {
  background: rgb(252, 254, 255);
  backdrop-filter: blur(16px);
  border-color: var(--steel-light);
  transform: translateY(-8px);
}

.parallax-content i {
  color: var(--brand-red-dark);
  text-shadow: 0 6px 16px rgba(215, 25, 32, 0.3);
}

/* Page Header */
.page-header {
  background:
    linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 61, 122, 0.9)),
    url("/assets/img/OIG6.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-position: center;
  color: #fff;
  padding: 100px 0 60px;
  margin-bottom: 60px;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.25) 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
}

.page-header h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
}

/* Main Content */
.container.my-5 {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0 !important;
}

.container.my-5 h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--brand-blue-dark);
}

.container.my-5 .lead {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
}

.container.my-5 p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.container.my-5 .product-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container.my-5 .product-card img {
  object-fit: cover;
  max-height: 420px;
  width: 100%;
  border-radius: 8px;
}

.container h2,
.container h3 {
  color: var(--brand-blue-dark);
  position: relative;
  padding-left: 18px;
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-icon {
  font-size: 3rem;
  color: var(--brand-blue);
  margin-bottom: 20px;
}

/* Feature Blocks */
.product-features {
  background: var(--steel-light);
  border: 1px solid var(--steel);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.product-features ul,
.container .row ul:not(.navbar-nav) {
  padding-left: 18px;
}

.product-features li {
  margin-bottom: 10px;
}

/* Technical Table */
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.product-table thead th {
  background: var(--brand-blue);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  padding: 12px;
}

.product-table tbody td {
  padding: 10px;
  border-bottom: 1px solid var(--steel);
}

.product-table tbody tr:nth-child(even) {
  background: var(--steel-light);
}

.product-table tbody tr:hover {
  background: rgba(31, 95, 175, 0.08);
  transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Sidebar Cards */
.card {
  border: 1px solid var(--steel);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.4s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--brand-blue-dark);
}
.card-img-top {
  border-radius: 30px;
}

/* Alert */
.alert-info {
  background: linear-gradient(90deg, rgba(31, 95, 175, 0.1), #ffffff);
  border-left: 5px solid var(--brand-blue);
  color: var(--text-dark);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .container > .row {
    animation: fadeUp 0.8s ease both;
  }
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.5rem;
}

.service-card-header {
  padding: 40px 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-body {
  padding: 25px 30px 35px;
}

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

.service-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--brand-blue);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Process Section */
.process-section {
  background-color: var(--brand-blue-dark);
  padding: 80px 0;
  margin: 80px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--brand-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--brand-blue);
  opacity: 0.3;
  z-index: 1;
}

@media (max-width: 992px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}

/* CTA Section */
.cta-section {
  background:
    linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 61, 122, 0.9)),
    url("https://images.unsplash.com/photo-1581094794793-8f0c1ab0b13e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin: 80px 0;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

@media (max-width: 992px) {
  .cta-section h2 {
    font-size: 2.2rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h5 {
  margin: 0;
  color: var(--brand-blue-dark);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-answer.show {
  padding: 25px;
  max-height: 500px;
}

/* Project Card */
.project-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  height: 200px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  body {
    padding-top: 140px;
  }
  .logo-large {
    height: 80px;
    margin-left: -10px;
  }
  .logo-small {
    margin-left: -10px;
  }
  .hero-section,
  .carousel-item {
    height: 500px;
  }
  .carousel-caption {
    bottom: 20%;
    padding-left: 20px;
  }
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
  .cta-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 130px;
  }
  .logo-large {
    height: 70px;
  }
  .hero-section,
  .carousel-item {
    height: 400px;
  }
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .footer-widget {
    margin-bottom: 30px;
  }
  .service-card-header,
  .service-card-body {
    padding: 25px 20px;
  }
  .cta-section {
    padding: 70px 0;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 120px;
  }
  .logo-large {
    height: 60px;
  }
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  .top-contact-bar .container .row {
    flex-direction: row;
    align-items: center;
  }

  .top-contact-bar .col-md-6 {
    width: 50%;
  }

  /* phone left */
  .top-contact-bar .col-md-6:first-child {
    text-align: left;
  }

  /* language right */
  .top-contact-bar .col-md-6:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nomobile {
    display: none;
  }
  .container.my-5 h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--brand-blue-dark);
  }
}

.nord {
  font-size: 16px;
  font-weight: 600;
  color: #0a67c3;
}
.pvc {
  font-size: 16px;
  font-weight: 600;
  color: #a8b1b6;
}

.intext {
  width: 80px;
  margin-top: -6px;
}
/* Nouveau style pour la section engagements - fond bleu nuit professionnel */
.commitment-section {
  /* Richer, deeper navy gradient for more depth */
  background: linear-gradient(135deg, #0b1e3b 0%, #15355f 100%);
  padding: 120px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Subtle ambient glow in the background for vibrancy */
.commitment-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.commitment-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(79, 172, 254, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}

.commitment-section .container {
  position: relative;
  z-index: 2;
}

.commitment-section h2 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  /* Subtle text glow */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.commitment-section .section-subtitle {
  color: #b0c4de;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.commitment-card {
  /* Refined Glassmorphism */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Top accent line */
.commitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ff9f43);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.commitment-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255, 107, 107, 0.1);
}

.commitment-card:hover::before {
  transform: scaleX(1);
}

.commitment-icon {
  width: 80px;
  height: 80px;
  /* Transparent background with gradient border effect */
  background: rgba(11, 30, 59, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  /* Vibrant Coral Gradient Text */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, #ff6b6b, #ff9f43);

  /* Glowing Border */
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
  transition: all 0.5s ease;
}

/* Icon Background Glow on Hover */
.commitment-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ff9f43);
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.commitment-card:hover .commitment-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.5);
  filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4));
}

.commitment-card:hover .commitment-icon::after {
  opacity: 0.6;
}

.commitment-card h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
}

.commitment-card p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .commitment-section {
    padding: 80px 0;
  }

  .commitment-section h2 {
    font-size: 2.2rem;
  }

  .commitment-card {
    padding: 2.5rem 1.5rem;
    margin-bottom: 20px;
  }
}
.map-container {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.map-container:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* === Navbar Wrapper === */
.navbar-wrapper {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 1030;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* ============================= */
/* NAVBAR SCROLL SHRINK EFFECT */
/* ============================= */

/* Default navbar state */
.navbar {
  background-color: white;
  padding: 0;
  height: 100px;
  transition:
    height 0.35s ease,
    box-shadow 0.35s ease;
}

/* Large navbar (top of page) */
.navbar-large {
  height: 100px;
}

/* Small navbar when scrolling */
.navbar-small {
  height: 75px;
}

/* Logo default size */
.logo-large {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}

/* Logo smaller when scrolling */
.logo-small {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}

/* Navbar wrapper smooth movement */
.navbar-wrapper {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 1030;
  background-color: white;
  border-bottom: 1px solid #8c949c;
  transition:
    top 0.35s ease,
    box-shadow 0.35s ease;
}

/* Optional: move navbar slightly when scrolling */
.navbar-small + .navbar-wrapper,
.navbar-wrapper.navbar-small {
  top: 0;
}

/* Ensure logo container aligns properly */
.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .navbar {
    height: 80px;
  }

  .navbar-small {
    height: 65px;
  }

  .logo-large {
    height: 70px;
  }

  .logo-small {
    height: 55px;
  }
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.nav-link {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-dark) !important;
  padding: 10px 18px !important;
  position: relative;
}
.nav-link::after :not(img) {
  content: "";
  position: absolute;
  left: 5%;
  right: 15%;
  bottom: 4px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-small .logo-small {
  transform: translateY(-2px);
}
/* Shrink navbar on scroll */
.navbar-small .navbar {
  height: 75px !important;
  transition: height 0.3s ease;
}

/* Optional smoother logo resize */
.navbar-small .logo-large {
  height: 75px;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  border-top: 3px solid var(--brand-blue);
}
.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.dropdown-item:hover {
  background-color: #c7cdd3;
  color: var(--brand-blue);
}

/* Responsive */
@media (max-width: 992px) {
  body {
    padding-top: 140px;
  }
  .navbar {
    height: 80px;
  }
  .logo-large {
    height: 70px;
    margin-top: 10px;
  }
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 58, 109, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1025;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === MOBILE MENU CONTAINER === */
.navbar-collapse {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
  /* Mobile menu slide from right */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    max-width: 85vw;
    background: white;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    z-index: 1030;
    overflow-y: auto;
    padding: 100px 0 30px 0;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    transform: translateX(0);
  }

  /* Mobile navbar items */
  .navbar-nav {
    padding: 0;
  }

  .nav-item {
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.3s ease forwards;
  }

  .nav-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  .nav-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .nav-item:nth-child(4) {
    animation-delay: 0.25s;
  }
  .nav-item:nth-child(5) {
    animation-delay: 0.3s;
  }
  .nav-item:nth-child(6) {
    animation-delay: 0.35s;
  }

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

  .nav-link {
    padding: 18px 30px !important;
    font-size: 1.05rem;
    color: var(--text-dark) !important;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active :not(img) {
    background: linear-gradient(90deg, rgba(31, 95, 175, 0.08), transparent);
    border-left-color: var(--brand-blue);
    color: var(--brand-blue) !important;
  }
  .nav-link:hover,
  .nav-link.active img {
    border-left-color: transparent !important;
    background: none !important;
  }
  .nav-link::after {
    display: none;
  }

  /* Dropdown icon */
  .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* Dropdown menu mobile */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #f8fafc;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dropdown-menu.show {
    max-height: 500px;
  }

  .dropdown-item {
    padding: 14px 30px 14px 50px;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideDown 0.3s ease forwards;
  }

  .dropdown-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .dropdown-item:nth-child(2) {
    animation-delay: 0.15s;
  }
  .dropdown-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .dropdown-item:nth-child(4) {
    animation-delay: 0.25s;
  }

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

  .dropdown-item::before {
    content: "→";
    position: absolute;
    left: 30px;
    color: var(--brand-blue);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover::before,
  .dropdown-item.active::before {
    opacity: 1;
    left: 35px;
  }

  .dropdown-item:hover,
  .dropdown-item.active {
    background: white;
    border-left-color: var(--brand-red);
    color: var(--brand-blue);
    padding-left: 55px;
  }

  /* Navbar toggler custom */
  .navbar-toggler {
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1031;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    width: 26px;
    height: 2px;
    background: var(--brand-blue);
    display: block;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--brand-blue);
    left: 0;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    bottom: -8px;
  }

  /* Animated hamburger to X */
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
}
.text-primary {
  --bs-text-opacity: 1;
  color: var(--brand-blue) !important;
}
.btn-primary {
  --bs-btn-bg: var(--brand-blue) !important;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-2));
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.25);
  transform: translateZ(0);
}
