/*-----------------------------------------------------------------------------------

    Template Name: 
    Version: 1.0.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    00 - Helpers (Variables & Mixins)
    01 - Basic (Typography, Common Classes)
        01.01 - Typography
        01.02 - Common Classes
    02 - Layout (Header, Footer, Section, Main Container/Wrapper and Page Header Styles)
        02.01 - Header
        02.02 - Footer
        02.03 - Main Content Wrapper, Sections & Section Heading
    03 - Modules (Template Design Elements as Modules and Third party Plugins Custom Styles)

-----------------------------------------------------------------------------------*/
/*===== 00 - Helpers (Variables) =====*/
/*----------------------------------------*/
/*  01. Helpers CSS
/*----------------------------------------*/
/*===== 01 - Basic (Typography, Common Classes) =====*/
/*----------------------------------------*/
/*  01. Template default CSS
/*----------------------------------------*/
/* Common Style */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  overflow-x: hidden;
  color: #727272;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #001833;
}

h1 {
  font-size: 68px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

p {
  margin: 0;
}

caption {
  font-size: 12px;
}

strong {
  font-weight: 700;
}

a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

*:focus {
  outline: none;
}

button:focus,
a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:hover {
  text-decoration: none;
}

button,
input[type=submit] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

hr {
  border-top-width: 2px;
}

/* Content Container */
.container {
  position: relative;
  z-index: 10;
  max-width: 80rem; /* 7xl = 80rem */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* 4 * 0.25rem = 1rem */
  padding-right: 1rem;
  width: 100%;
  /* Medium screens and up */
}
@media (min-width: 768px) {
  .container {
    padding-left: 2rem; /* 8 * 0.25rem = 2rem */
    padding-right: 2rem;
  }
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 4rem;
}
.header-section-label {
  color: #555336;
  font-size: 0.875rem;
  font-family: "Roboto Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.header-section-title {
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .header-section-title {
    font-size: 2.25rem;
  }
}
.header-section-description {
  font-size: 16px;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
}

/*----------------------------------------*/
/*  02. Classes CSS
/*----------------------------------------*/
.page {
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #fff;
}
.page::-moz-selection {
  background-color: #555336;
  color: #fff;
}
.page::selection {
  background-color: #555336;
  color: #fff;
}

/* Background */
.background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.background-image {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .background-overlay {
	background-color: rgba(0, 0, 0, 0.3);
  }
}


.background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Active nav link style */
.nav-link.active,
.mobile-nav-link.active {
  color: #ffffff;
  position: relative;
}

.nav-link.active::after,
.mobile-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-link.active::after,
.mobile-nav-link.active::after {
  width: 60%;
}

/*===== 02 - Layout =====*/
/*----------------------------------------*/
/*  01. Navbar CSS
/*----------------------------------------*/
/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}
.navbar.is-sticky {
  background-color: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: #555336;
  padding: 1rem 0;
}
.navbar.transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 2rem;
  }
}
/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container a {
	display: flex;
}
.logo-container img {
    height: auto;
    width: 130px;
	transition: all 0.3s linear;
}

.is-sticky .logo-container img {
    width: 100px;		
}

@media (max-width: 767px) {
  .logo-container img {
	  width: 100px;		
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .desktop-links {
    display: flex;
  }
}
.desktop-links .nav-link {
  font-size: 0.875rem;
  font-family: "Roboto Mono", monospace;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.desktop-links .nav-link:hover {
  color: #555336;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(138, 155, 168, 0.3);
  background: transparent;
  color: #8b8d8f;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-button:hover {
  color: #555336;
  border-color: #555336;
}
.lang-button span {
  font-size: 0.75rem;
  font-family: "Roboto Mono", monospace;
  font-weight: bold;
}
.lang-button .lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: #2c2c2c;
  border: 1px solid rgba(138, 155, 168, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #0a0a0a;
  border-bottom: 1px solid rgba(138, 155, 168, 0.2);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-links .mobile-nav-link {
  color: #d1d5db;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1f2937;
  font-family: "Courier New", monospace;
  transition: color 0.3s ease;
  display: block;
}

.mobile-nav-link:hover {
  color: #555336;
}

.mobile-lang-selector {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #1f2937;
}

.mobile-lang-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-family: "Courier New", monospace;
  border: 1px solid rgba(138, 155, 168, 0.3);
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn:hover {
  color: #555336;
  border-color: rgba(0, 255, 136, 0.5);
}

.mobile-lang-btn.active {
  background-color: #555336;
  color: white;
  border-color: #555336;
}

/* SVG Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/*----------------------------------------*/
/*  02. Hero CSS
/*----------------------------------------*/
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0a0a0a;
  padding-top: 5rem;
}

@media (max-width: 1024px) {
	.hero-section {
	 	min-height: 100%;
		height: auto;
		padding-bottom: 7.5rem;
	}
}

/* Background Elements */
.hero-background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.magicpatterns.com/uploads/ip6LGfL8KVyRJtHtDX4X7m/Niels_Christiaens_Metal_Custom_Works.jpg");
  background-size: cover;
  background-position: center;
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .hero-background-overlay {
	background-color: rgba(0, 0, 0, 0.3);
  }
}

.hero-background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, #0a0a0a 100%);
}

.hero-background-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(85, 83, 54, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Rotating Gear */
.hero-rotating-gear {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  opacity: 0.05;
  animation: rotate-gear 50s linear infinite;
}
@media (max-width: 1023px) {
  .hero-rotating-gear {
    display: none;
  }
}
.hero-rotating-gear .gear-icon {
  width: 10rem;
  height: 10rem;
  color: #555336;
}

@keyframes rotate-gear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* Content Container */
.hero-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  /* Large screens and up */
}
@media (min-width: 1024px) {
  .hero-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Text Content */
.hero-text-content {
  opacity: 0;
  transform: translateX(-50px);
  order: 2;
}
.hero-text-content.reveal {
  animation: fadeInLeft 0.8s ease forwards;
}
@media (min-width: 1024px) {
  .hero-text-content {
    order: 1;
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-tagline-line {
  height: 1px;
  width: 3rem;
  background-color: #555336;
}

.hero-tagline-text {
  color: #555336;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-main-heading {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: white;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-main-heading {
    font-size: 3.75rem;
  }
}

.hero-gradient-text {
  background: linear-gradient(to right, #555336, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 36rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Buttons */
.hero-button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-button-group {
    flex-direction: row;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-wrap: nowrap;
  align-items: center;
}
.hero-btn.btn-primary {
  background-color: #555336;
  color: #fff;
  border: 1px solid transparent;
}
.hero-btn.btn-primary:hover {
  background-color: #fff;
  color: #555336;
}
.hero-btn.btn-outline {
  background-color: transparent;
  border: 2px solid #8b8d8f;
  color: #8b8d8f;
}
.hero-btn.btn-outline:hover {
  border-color: #555336;
  color: #555336;
}
.hero-btn .icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.3s ease;
}
.hero-btn .icon svg {
  width: 1em;
  height: 1em;
}
.hero-btn:hover .icon {
  transform: translateX(0.25rem);
}

/* Visual Content */
.hero-visual-content {
  opacity: 0;
  transform: scale(0.8);
  order: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-visual-content.reveal {
  animation: fadeInScale 0.8s ease 0.2s forwards;
}
@media (min-width: 1024px) {
  .hero-visual-content {
    order: 2;
    justify-content: flex-end;
  }
}
.hero-visual-content .glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: rgba(85, 83, 54, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-visual-content {
  /* Diamond Frame */
}
.hero-visual-content .diamond-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 24rem;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}
@media (max-width: 576px) {
  .hero-visual-content .diamond-frame {
    width: 340px;
	  height: 15rem;
  }
}
.hero-visual-content .diamond-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-visual-content .diamond-svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}
.hero-visual-content .diamond-image-container {
  position: absolute;
  top: 4%;
  right: 4%;
  bottom: 4%;
  left: 4%;
  z-index: 10;
  overflow: hidden;
  background-color: #1a1a1a; /* or your specific industrial-gray color */
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media (max-width: 576px) {
  .hero-visual-content .diamond-image-container {
    clip-path: polygon(50% 4%, 100% 50%, 50% 96%, 0% 50%);
  }
}

.hero-visual-content .diamond-image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.3;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}
.hero-visual-content .diamond-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.25);
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #6b7280;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInBounce 1s ease 1s forwards;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.scroll-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Roboto Mono", monospace;
}

.chevron-icon {
  width: 1rem;
  height: 1rem;
  animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(8px);
  }
}
/* SVG Icons */
.icon {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/*----------------------------------------*/
/*  03. Wrapper CSS
/*----------------------------------------*/
/* Introduction Section */
.introduction-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

/* Texture Overlay */
.texture-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
}

/* Grid Layout */
.introduction-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .introduction-content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Carousel Container */
.introduction-carousel-container {
  position: relative;
}

/* Rectangle Frame */
.introduction-carousel-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.introduction-carousel-image.active {
  opacity: 1;
}
.introduction-carousel-image:hover {
  filter: grayscale(0%);
}
.introduction-carousel-image.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
.introduction-carousel-image.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

/* Navigation Arrows */
.introduction-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  padding: 0;
}
.introduction-carousel-nav:hover {
  color: var(--industrial-green);
  transform: translateY(-50%) scale(1.1);
}
.introduction-carousel-nav.prev {
  left: 8px;
}
.introduction-carousel-nav.next {
  right: 8px;
}
.introduction-carousel-nav svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Text Content */
.introduction-content .highlight {
  color: #555336;
}
.introduction-content-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}
.introduction-content-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 16px;
}
.introduction-content-description:last-of-type {
  margin-bottom: 2rem;
}

/* Capabilities Grid */
.introduction-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .introduction-capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.introduction-capability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
}
.introduction-capability-item.reveal {
  animation: fadeInUp 0.5s ease forwards;
}
.introduction-capability-item .capability-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #555336;
  flex-shrink: 0;
}
.introduction-capability-item .capability-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.introduction-capability-item .capability-text {
  font-size: 0.875rem;
  font-family: "Roboto Mono", monospace;
  line-height: 1.25rem;
  color: #d1d5db;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fade animation for images */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*----------------------------------------*/
/*  04. Services Grid CSS
/*----------------------------------------*/
/* Services Section */
.services-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.services-section-2 {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #000;
}
.services-section-2 .services-grid {
  margin-bottom: 0;
}

/* Background Elements */
.services-background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.services-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .services-background-overlay {
	background-color: rgba(0, 0, 0, 0.5);
  }
}


.services-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

.services-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.services-logo .logo-image {
  width: 10rem;
  opacity: 0.9;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}
@media (min-width: 768px) {
  .services-logo .logo-image {
    width: 14rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Service Card */
.service-card {
  position: relative;
  background-color: rgba(44, 44, 44, 0.8);
  backdrop-filter: blur(4px);
  border: 2px solid #555336;
  padding: 2rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.reveal {
  animation: fadeInUp 0.6s ease forwards;
}
.service-card:hover {
  border-color: #555336;
}
.service-card .number-badge {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2rem;
  height: 2rem;
  background-color: #555336;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.service-card .service-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.25;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@media (min-width: 768px) {
  .service-card .service-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.service-card .decorative-line {
  margin-top: 1rem;
  height: 2px;
  width: 3rem;
  background-color: rgba(85, 83, 54, 0.5);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.service-card:hover {
  border-color: #555336;
}
.service-card:hover .service-title {
  color: #555336;
}
.service-card:hover .decorative-line {
  width: 100%;
}

.service-card-2 {
  position: relative;
  padding: 2rem;
  cursor: pointer;
  background-color: rgba(44, 44, 44, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
}
.service-card-2:hover {
  border-color: rgba(85, 83, 54, 0.5);
}
.service-card-2:hover .decorative-line {
  width: 100%;
}
.service-card-2 .icon-badge {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  background-color: #555336;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}
.service-card-2 .icon-badge img {
    width: 32px;
    height: auto;
}
.service-card-2 .icon-badge svg {
  width: 2rem;
  height: 2rem;
}
.service-card-2 {
  /* Title */
}
.service-card-2 .service-title {
  padding-top: 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card-2 {
  /* Animated Line */
}
.service-card-2 .decorative-line {
  margin-top: 1rem;
  height: 2px;
  width: 3rem;
  background-color: rgba(85, 83, 54, 0.5);
  transition: all 300ms ease;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Corner Rivets */
.rivet {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
}
.rivet.top-left {
  top: 0.5rem;
  left: 0.5rem;
}
.rivet.top-right {
  top: 0.5rem;
  right: 0.5rem;
}
.rivet.bottom-left {
  bottom: 0.5rem;
  left: 0.5rem;
}
.rivet.bottom-right {
  bottom: 0.5rem;
  right: 0.5rem;
}

/* Text and CTA Section */
.services-cta {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  transform: translateY(20px);
}
.services-cta.visible {
  animation: fadeInUp 0.6s ease forwards;
}
.services-cta-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #555336;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.services-cta-button svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}
.services-cta-button:hover {
  background-color: #fff;
  color: #555336;
  border-color: #555336;
}
.services-cta-button:hover svg {
  transform: translateX(4px);
}

/* CTA Button */
/*----------------------------------------*/
/*  05. Client Cases CSS
/*----------------------------------------*/
/* Client Cases Section */
.client-cases-section {
  padding: 6rem 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

/* Decorative Rotating Gear */
.client-cases-rotating-gear {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  opacity: 0.03;
  animation: rotateGear 60s linear infinite;
}

@keyframes rotateGear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gear-icon {
  width: 16rem;
  height: 16rem;
  color: white;
}

/* Client Cases Layout */
.client-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .client-cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image Side */
.image-container {
  position: relative;
}

.aspect-ratio-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.white-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 1rem;
}

.inner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(85, 83, 54, 0.3);
  background-color: #000;
}

.client-cases-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.client-cases-image.active {
  opacity: 1;
}

.rivets-tl-svg {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}
.rivets-tr-svg {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}
.rivets-bl-svg {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}
.rivets-br-svg {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  pointer-events: none;
  overflow: visible;
}

/* Content Side */
.client-cases-side {
  position: relative;
}

.client-cases-content {
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  width: 100%;
}
.client-cases-content.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  visibility: visible;
}

.client-cases-name {
  font-size: 0.75rem;
  font-family: "Roboto Mono", monospace;
  color: #555336;
  margin-bottom: 0.5rem;
}

.client-cases-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}

.client-cases-description {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Tags */
.client-cases-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.client-cases-tags .tag {
  font-size: 0.625rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background-color: rgba(85, 83, 54, 0.2);
  color: #8b8d8f;
  border: 1px solid rgba(85, 83, 54, 0.3);
}

/* Read More Button */
.client-cases-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8b8d8f;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}
.client-cases-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}
.client-cases-btn:hover {
  color: #555336;
}
.client-cases-btn:hover svg {
  transform: translateX(4px);
}

/* Navigation Controls */
.client-cases-navigation-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 9;
}

.nav-button {
  width: 3rem;
  height: 3rem;
  pointer-events: auto;
  background-color: #000;
  border: 1px solid rgba(85, 83, 54, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-button:hover {
  background-color: #2c2c2c;
}
.nav-button svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}
.nav-button.prev:hover svg {
  transform: translateX(-4px);
}
.nav-button:hover {
  background-color: #555336;
  border-color: #fff;
}
.nav-button:hover svg {
  transform: translateX(4px);
}
.nav-button .icon {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/*----------------------------------------*/
/*  06. Partners CSS
/*----------------------------------------*/
/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Decorative Rotating Gear */
.partners-rotating-gear {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  opacity: 0.03;
  animation: rotateGearReverse 50s linear infinite;
}
.partners-rotating-gear .gear-icon {
  width: 12rem;
  height: 12rem;
  color: white;
}

@keyframes rotateGearReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Partner Card */
.partner-card {
  position: relative;
  background-color: #2c2c2c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.9);
  height: auto !important;
}
.partner-card.reveal {
  animation: fadeInScale 0.6s ease forwards;
}
.partner-card-gear {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.partner-card-gear svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #555336;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.partner-card-logo {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  background-color: rgba(85, 83, 54, 0.2);
  border: 1px solid #555336;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}
.partner-card-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #555336;
  transform: rotate(-45deg);
  transition: transform 0.5s ease;
}
.partner-card-name {
  color: #d1d5db;
  font-size: 0.625rem;
  font-family: "Roboto Mono", monospace;
  color: #6b7280;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}
.partner-card-corner {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  transition: border-color 0.3s ease;
}
.partner-card-corner.top-left {
  top: 0;
  left: 0;
  border-top: 1px solid rgb(85, 83, 54, 0.5);
  border-left: 1px solid rgb(85, 83, 54, 0.5);
}
.partner-card-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgb(85, 83, 54, 0.5);
  border-right: 1px solid rgb(85, 83, 54, 0.5);
}
.partner-card:hover {
  border-color: rgba(85, 83, 54, 0.5);
}
.partner-card:hover .partner-card-gear {
  opacity: 0.4;
}
.partner-card:hover .partner-card-logo {
  transform: rotate(0deg);
}
.partner-card:hover .partner-card-logo-text {
  transform: rotate(0deg);
}
.partner-card:hover .partner-card-name {
  color: #d1d5db;
}
.partner-card:hover .partner-card-corner.top-left {
  border-top-color: #555336;
  border-left-color: #555336;
}
.partner-card:hover .partner-card-corner.bottom-right {
  border-bottom-color: #555336;
  border-right-color: #555336;
}

.partners-active .swiper-pagination {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    bottom: 0 !important;
}
.partners-active .swiper-pagination-bullet {
    background: rgba(85, 83, 54, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
}
.partners-active .swiper-pagination-bullet-active {
	background : #555336;
}

.partner-nav {
	display: flex;
    justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
}



@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*----------------------------------------*/
/*  07. Partners CSS
/*----------------------------------------*/
/* Partnership CTA Section */
.partnership-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background-color: #000;
}

/* Industrial Background */
.partnership-background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partnership-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.magicpatterns.com/uploads/rGhaKvhUwMf63qtyThU8AP/NC_Metal_Custom_Works_Samenwerking.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.partnership-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.partnership-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

.partnership-cta-wrapper {
  position: relative;
  max-width: 42rem;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  margin: 0 auto;
}
.partnership-cta-wrapper.reveal {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CTA Block */
.partnership-cta-block {
  position: relative;
  background-color: rgba(44, 44, 44, 0.9);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(85, 83, 54, 0.3);
  padding: 3rem;
  text-align: center;
}

/* Rivets SVG */
.partnership-cta-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* CTA Content */
.partnership-cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .partnership-cta-title {
    font-size: 1.875rem;
  }
}

.partnership-cta-description {
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* CTA Button */
.partnership-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #555336;
  color: white;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partnership-cta-button:hover {
  background-color: white;
  color: #555336;
  border-color: #555336;
}

/*----------------------------------------*/
/*  08. Partners CSS
/*----------------------------------------*/
/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: #2c2c2c;
  position: relative;
}

/* Texture Overlay */
.texture-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.1;
  mix-blend-mode: overlay;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info */
.contact-info-title {
  font-size: 2.25rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: white;
  margin-bottom: 1.5rem;
}
.contact-info-text {
  color: #9ca3af;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(85, 83, 54, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 1px solid rgba(85, 83, 54, 0.5);
  color: #555336;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-title {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.25rem;
}
.contact-item-text {
  color: #9ca3af;
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  margin: 0;
}


.contact-socail {
  padding-top: 3rem;
}
.contact-socail-items {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-socail-items li .icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(85, 83, 54, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    border: 1px solid rgba(85, 83, 54, 0.5);
    color: #555336;
    text-align: center;
}
.contact-socail-items li .icon:hover {
  background-color: #555336;
  color: #fff;
}
.contact-socail-items li .icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* Form Container */
.contact-form-container {
  background-color: #0a0a0a;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.form-gradient-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #555336 0%, rgba(255, 255, 255, 0.2) 50%, #555336 100%);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-label {
  display: block;
  font-size: 0.75rem;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: #2c2c2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  color: white;
  transition: border-color 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #555336;
  outline: none;
}

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

/* Submit Button */
.submit-button {
  width: 100%;
  padding: 0.875rem 1.75rem;
  background-color: #555336;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto Mono", monospace;
  position: relative;
  overflow: hidden;
}
.submit-button:hover {
  background-color: #fff;
  color: #555336;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.submit-button:active {
  transform: translateY(0);
}
.submit-button .corner {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-color: #fff;
  opacity: 0.5;
}
.submit-button .corner.top-left {
  top: 0;
  left: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.submit-button .corner.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*----------------------------------------*/
/*  09. Footer  CSS
/*----------------------------------------*/
/* Footer */
.footer {
  background-color: #000;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
  }
}

/* Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 2rem;
  width: auto;
  opacity: 0.9;
}

.footer-copyright {
  color: #9ca3af;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-family: "Roboto Mono", monospace;
}

.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/*----------------------------------------*/
/*  10. Content Hero  CSS
/*----------------------------------------*/
/* Hero Banner Section */
.content-hero-banner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Background */
.content-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.content-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.magicpatterns.com/uploads/51XUTdWZTBpszJBGRenCBa/NC_Metal_Custom_Works_interieur_deur.jpg");
  background-size: cover;
  background-position: center center;
}
.content-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.content-background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, transparent 50%, #0a0a0a 100%);
}
.content-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Content Wrapper with Animation */
.content-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  text-align: center;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Service Badge */
.content-hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(85, 83, 54, 0.5);
  background-color: rgba(85, 83, 54, 0.1);
  color: #555336;
  font-family: "Roboto Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

/* Main Title */
.content-hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .content-hero-title {
    font-size: 3.75rem;
  }
}

/* Gradient Text */
.content-hero-gradient-text {
  background: linear-gradient(to right, #555336, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Description */
.content-hero-description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .content-hero-description {
    font-size: 1.25rem;
  }
}

/*----------------------------------------*/
/*  11. Craftsmanship  CSS
/*----------------------------------------*/
.craftsmanship-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

/* craftsmanship Background */
.craftsmanship-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Background Image */
}
.craftsmanship-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.magicpatterns.com/uploads/rhbHhteD7BBK2tRdZhUTXZ/NC_Metal_Custom_Works_interieur_roest.jpg");
  background-size: cover;
  background-position: center center;
}
.craftsmanship-background {
  /* Background Overlay */
}
.craftsmanship-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.craftsmanship-background {
  /* Texture Overlay */
}
.craftsmanship-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* craftsmanship Content */
.craftsmanship-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .craftsmanship-content {
    padding: 0 2rem;
  }
}
.craftsmanship-content-title {
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
}
.craftsmanship-content p {
  color: #d1d5db;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.craftsmanship-content p:last-of-type {
  margin-bottom: 2rem;
}

/* Button Container */
.craftsmanship-button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .craftsmanship-button {
    flex-direction: row;
  }
}
.craftsmanship-button {
  /* Buttons */
}
.craftsmanship-button .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  z-index: 10;
  gap: 0.5rem;
}
.craftsmanship-button .btn .btn-corner {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-color: currentColor;
  opacity: 0.5;
}
.craftsmanship-button .btn .btn-corner-tl {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}
.craftsmanship-button .btn .btn-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.craftsmanship-button .btn.btn-primary {
  background-color: #555336;
  color: #000;
}
.craftsmanship-button .btn.btn-primary .btn-corner-tl {
  border-color: #fff;
}
.craftsmanship-button .btn.btn-primary .btn-corner-br {
  border-color: #fff;
}
.craftsmanship-button .btn.btn-primary:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(85, 83, 54, 0.3);
}
.craftsmanship-button .btn.btn-primary:hover .btn-corner-tl {
  border-color: #555336;
}
.craftsmanship-button .btn.btn-primary:hover .btn-corner-br {
  border-color: #555336;
}
.craftsmanship-button .btn.btn-outline {
  background-color: transparent;
  color: #8b8d8f;
  border: 1px solid #8b8d8f;
}
.craftsmanship-button .btn.btn-outline .btn-corner-tl {
  border-color: #8b8d8f;
}
.craftsmanship-button .btn.btn-outline .btn-corner-br {
  border-color: #8b8d8f;
}
.craftsmanship-button .btn.btn-outline:hover {
  color: #555336;
  border-color: #555336;
}
.craftsmanship-button .btn.btn-outline:hover .btn-corner-tl {
  border-color: #555336;
}
.craftsmanship-button .btn.btn-outline:hover .btn-corner-br {
  border-color: #555336;
}

/*----------------------------------------*/
/*  12. Gallery Carousel  CSS
/*----------------------------------------*/
.gallery-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Container */
.gallery-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Background Image */
}
.gallery-background-image {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.magicpatterns.com/uploads/kaHi61E6jabSKbYs3mncvt/NC_Metal_Custom_Works_interieur_roest.jpg");
  background-size: cover;
  background-position: center center;
}
.gallery-background {
  /* Background Overlay */
}
.gallery-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.gallery-background {
  /* Texture Overlay */
}
.gallery-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Header Section */
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}

.gallery-subtitle {
  color: #9ca3af;
  font-size: 16px;
}

/* Carousel Container */
.carousel-wrapper {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

/* Rectangle Frame */
.rectangle-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.white-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 1rem;
}

.inner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(85, 83, 54, 0.3);
  background-color: #000;
}

.carousel-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-image.active {
  opacity: 1;
}

/* Navigation Controls */
.nav-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .nav-controls {
    margin: 0 -4rem;
  }
}



/* Counter */
.image-counter {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  color: #555336;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* Description */
.gallery-description {
  max-width: 48rem;
  margin: 4rem auto 0;
  text-align: center;
}

.gallery-description p {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Gradient Fade */
.gradient-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  z-index: 20;
}

/************************/
.elementor-element, .e-con-inner, .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}

/*----------------------------------------*/
/*  13. Engineering  CSS
/*----------------------------------------*/
/* Two Column Section */
.two-column-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
  position: relative;
}

/* Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Text Content */
.tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tagline-line {
  height: 2px;
  width: 3rem;
  background-color: #555336;
}
.tagline-text {
  color: #555336;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .text-title {
    font-size: 2.25rem;
  }
}
.text-title .muted {
  color: #6b7280;
}

.text-paragraph {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.text-paragraph:last-of-type {
  margin-bottom: 2rem;
}

/* Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  z-index: 10;
  gap: 0.5rem;
  background-color: transparent;
  color: #8b8d8f;
  border: 1px solid #8b8d8f;
}
.btn-outline .btn-corner {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-color: currentColor;
  opacity: 0.5;
}
.btn-outline .btn-corner-tl {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
  border-color: #8b8d8f;
}
.btn-outline .btn-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-color: #8b8d8f;
}
.btn-outline:hover {
  color: #555336;
  border-color: #555336;
}
.btn-outline:hover .btn-corner-tl {
  border-color: #555336;
}
.btn-outline:hover .btn-corner-br {
  border-color: #555336;
}

/* Image Content */
.two-column-image-content {
  position: relative;
}

/* Rectangle Frame */
.two-column-rectangle-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.two-column-white-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 1rem;
}

.two-column-inner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(85, 83, 54, 0.3);
  background-color: #000;
}

.two-column-frame-image {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Decorative Element */
.decorative-corner {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-bottom: 2px solid rgba(85, 83, 54, 0.3);
  border-left: 2px solid rgba(85, 83, 54, 0.3);
  display: none;
}
@media (min-width: 768px) {
  .decorative-corner {
    display: block;
  }
}

/*----------------------------------------*/
/*  14. Two Columns  CSS
/*----------------------------------------*/
.numbered-section {
  padding: 6rem 0;
  background-color: #2c2c2c;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Background Container */
.background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Background Image */
.background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Background Overlay */
.background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

/* Texture Overlay */
.background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Column */
.column {
  position: relative;
}

/* Column with Border */
.column-bordered {
  position: relative;
}
@media (min-width: 1024px) {
  .column-bordered {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 4rem;
  }
}

/* Column Title */
.column-title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Number Badge */
.number-badge {
  width: 2rem;
  height: 2rem;
  background-color: #555336;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-family: "Courier New", monospace;
  color: #fff;
  flex-shrink: 0;
}

/* Paragraph */
.column-text {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.column-text:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  15. Production Process  CSS
/*----------------------------------------*/
/* Production Process Section */
.production-section {
  padding: 6rem 0;
  background-color: #0a0a0a;
  position: relative;
}

/* Header Section */
.production-header {
  text-align: center;
  margin-bottom: 4rem;
}
.production-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .production-title {
    font-size: 2.25rem;
  }
}
.production-subtitle {
  color: #9ca3af;
}

/* Grid Layout */
.production-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .production-image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .production-image-grid {
    gap: 4rem;
  }
}

/* Image Item */
.production-image-item {
  position: relative;
  /* Second image offset on desktop */
}
@media (min-width: 768px) {
  .production-image-item.offset {
    margin-top: 6rem;
  }
}

/* Rectangle Frame - Portrait */
.production-rectangle-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}

.production-white-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 1rem;
}

.production-inner-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 136, 0.3);
  background-color: #000;
}

.production-frame-image {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Image Caption */
.production-caption {
  margin-top: 1.5rem;
  text-align: center;
}
.production-caption .caption-title {
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.production-caption .caption-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/*----------------------------------------*/
/*  16. Review  CSS
/*----------------------------------------*/
/* Review Section */
.review-section {
  padding: 6rem 0;
  background-color: #2c2c2c;
  position: relative;
  overflow: hidden;
}

/* Background Container */
.review-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Background Image */
}
.review-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.review-background {
  /* Background Overlay */
}
.review-background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.review-background {
  /* Texture Overlay */
}
.review-background-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* Content Container */
.content-container {
  max-width: 55rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Quote Icon */
.quote-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(85, 83, 54, 0.2);
  color: #555336;
  margin-bottom: 2rem;
  border: 1px solid rgba(85, 83, 54, 0.5);
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

/* Blockquote */
.testimonial-quote {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #fff;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.875rem;
  }
}

/* Author Section */
.author-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Author Image */
.author-image-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(85, 83, 54, 0.3);
}

.author-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Author Info */
.author-info {
  text-align: center;
}

.author-name {
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-title {
  color: #555336;
  font-family: "Roboto Mono", monospace;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}