/* === Global === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
.active {
	color: white;
	font-weight: bold;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
ul {
	list-style: none;
}
body , html {
	overflow-x: hidden;
}
/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 10px;
	background-color: #000000; /* Black background for navbar */
	color: whitesmoke;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	z-index: 1000; /* Keep navbar on top */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  }
  
  .logo {
	max-height: 30px;
	margin-left: 30px;
  }
  
  .nav-links {
	display: flex;
	align-items: center;
	cursor: pointer;
	list-style: none;
	margin: 0;
	padding: 0;
  }
  
  .nav-links li {
	margin: 0 15px;
  }
  
  .nav-links a {
	color: whitesmoke;
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
	color: #f25c05; /* Highlight color on hover */
  }
  
  html {
	scroll-behavior: smooth;
  }

/* Home Page */
header {
	width: 100vw;
	height: 100vh;
	background-image: url('./img/P1a.jpg'); /* Background Image */
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .header-content {
	color: whitesmoke;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
	padding: 40px 20px;
	max-width: 70%;
  }
  
  .header-content h1 {
	font-size: 6vmin;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
	font-family: 'Segoe UI', Roboto, 'Open Sans', sans-serif;
  }
  
  .header-content p {
	font-size: 2.5vmin;
	font-weight: 400;
	margin-bottom: 30px;
	line-height: 1.6;
	margin-left: 100px;
	margin-right: 100px;
	font-family: 'Segoe UI', Roboto, 'Open Sans', sans-serif;
  }
  
  .btn-discover {
	padding: 10px 30px;
	background-color: black;
	color: whitesmoke;
	text-decoration: none;
	font-size: 2vmin;
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-family: 'Segoe UI', Roboto, 'Open Sans', sans-serif;
  }
  
  .btn-discover:hover {
	background-color: #ffffff;
	color: black;
  }
  
.menu-btn {
	position: absolute;
	top: 10px;
	right: 30px;
	width: 40px;
	cursor: pointer;
	display: none;
}

/* Mobile device */
@media only screen and (max-width: 768px) {
	.header-content h1 {
		font-size: 6vmin;
	  }
	
	  .header-content p {
		margin-right: 10px;
		margin-left: 10px;
		font-size: 2.5vmin;
		line-height: 1.4;
	  }
	
	  .btn-discover {
		font-size: 0.9rem;
		padding: 10px 20px;
	  }
	
	.menu-btn {
	  display: block;
	}
  
	.navbar{
		padding: 30px;
	}

	.logo {
	  position: absolute;
	  top: 15px;
	  left: 10px;
	  max-height: 30px; /* Adjust size for mobile */
	}
  
	.nav-links {
	  flex-direction: column;
	  width: 100%;
	  height: 100%;
	  justify-content: center;
	  background-color: black;
	  margin-top: -900px;
	  transition: all 0.5s ease;
	}
  
	.mobile-menu {
	  margin-top: 0;
	}
  
	.nav-links li {
	  margin: 15px auto;
	}
  }

/* Description 1 - Technologically diverse*/
body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	color: #ffffff;
}
.tech-solutions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: left;
	padding: 50px;
	background-color: #121212;
}
.column {
	flex: 1; /* Each column takes equal space */
	padding: 20px;
}
  
.left-column {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
  
.right-column {
	text-align: justify;
}
  
h1 {
	font-size: 6vmin;
	font-weight: 600;
	margin-bottom: 0;
}
  
h1 .highlight {
	color: #f25c05; /* Highlight color for 'Netrenza' */
}
  
p {
	font-size: 2.5vmin;
	font-weight: 400;
	line-height: 1.6;
	color: #d1d1d1; /* Slightly lighter color for the paragraph text */
 }

 /* Mobile Version */
@media (max-width: 768px) {
	.tech-solutions {
	  flex-direction: column; /* Stack columns vertically */
	  padding: 30px; /* Adjust padding for smaller screens */
	  text-align: justify;
	}
  
	.column {
	  padding: 10px;
	}

	h1 {
	  font-size: 5vmin; /* Slightly smaller heading for mobile */
	}
  
	p {
	  font-size: 2vmin; /* Slightly smaller paragraph text */
	  line-height: 1.5; /* Adjust line height for readability */
	}
}

/* Description 2 - Empowering business */
body {
    line-height: 1.6;
}

.ai-solutions {
    background-color: #f9f9f9;
}

.ai-solutions-2 {
    background-color: #f9f9f9;
}

.container, .container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
	margin-right: 5%;
}

.image-container, .image-container-2 {
    flex: 1 1 300px;
    text-align: center;
}

.image-container-2 {
	margin-left: 10%;
}

.image-container img, .image-container-2 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content, .content-2 {
    flex: 2 1 400px;
	text-align: justify;
}

.content h1 {
    font-size: 5.5vmin;
    color: #333;
    margin-bottom: 10px;
}

.content p, .content-2 p {
    font-size: 2.2vmin;
    color: #313131;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container, .container-2 {
        flex-direction: column;
        text-align: justify;
		padding: 20px;
    }

    .content h1 {
        font-size: 5.5vmin;
		text-align: center;
    }

    .content p, .content-2 p {
        font-size: 2.5vmin;
    }
}


  
/* --- SECTIONS --- */

/* --- INNOVATION --- */
.innovation-section {
	position: relative;
	overflow: hidden;
	width: 100%;
  }
  
  .innovation-background {
	position: relative;
	text-align: center;
	color: white;
  }
  
  .innovation-background img {
	width: 100%;
	height: auto;
	object-fit: cover;
  }
  
  .innovation-content {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	text-align: center;
  }
  
  .innovation-content h1 {
	font-size: 5vmin;
	font-weight: bold;
	margin-bottom: 20px;
	background-color: rgba(0, 0, 0, 0.447);
  }
  
  .innovation-content p {
	font-size: 2vmin;
	margin-bottom: 30px;
	line-height: 1.6;
	background-color: rgba(0, 0, 0, 0.447);
  }
  
  .innovation-slider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
  }
  
  .tiles-container {
	overflow: hidden;
	width: 80%;
	position: relative;
  }
  
  .tiles {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
  }
  
  .tile {
	min-width: calc(100% / 3); /* Show 1 full and 2 half tiles */
	max-width: 300px;
	background: white;
	color: black;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	margin: 0 10px;
	flex-shrink: 0;
  }
  
  .tile h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
  }
  
  .tile p {
	font-size: 0.9rem;
	color: rgb(39, 39, 39);
	background: none;
	line-height: 1.4;
  }
  
  .arrow {
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.5rem;
	transition: background 0.2s;
	z-index: 10;
  }
  
  .arrow:hover {
	background: rgba(0, 0, 0, 0.8);
  }
  
  .left-arrow {
	position: absolute;
	left: 5%;
	transform: translateY(-50%);
	top: 50%;
  }
  
  .right-arrow {
	position: absolute;
	right: 5%;
	transform: translateY(-50%);
	top: 50%;
  }

  @media (max-width: 768px) {
	.innovation-section {
	  position: relative;
	  overflow: hidden;
	  width: 100%;
	}
  
	.innovation-background img {
	  width: 100%;
	  height: auto;
	  object-fit: cover;
	}
  
	.innovation-content {
	  top: 5px; /* Adjust position for smaller screens */
	  left: 50%;
	  transform: translateX(-50%);
	  width: 90%; /* Reduce width for better readability */
	  text-align: center;
	}
  
	.innovation-content h1 {
	  font-size: 3vmin; /* Reduce font size for mobile */
	  margin-bottom: 1px;
	  padding: 5px;
	  border-radius: 5px;
	}
  
	.innovation-content p {
	  font-size: 1.5vmin; /* Slightly smaller font size */
	  line-height: 1.4; /* Adjust line height for readability */
	  margin-bottom: 5px;
	  padding: 5px;
	  border-radius: 5px;
	}
  
	.innovation-slider {
	  flex-direction: column; /* Stack arrows and tiles vertically for mobile */
	  align-items: center;
	  gap: 20px; /* Adjust spacing between elements */
	}
  
	.tiles-container {
	  width: 60%; /* Make the tiles container wider on mobile */
	}
  
	.tiles {
	  display: flex;
	  transition: transform 0.5s ease-in-out;
	  will-change: transform;
	}
  
	.tile {
	  min-width: 10%; /* Show one tile at a time */
	  max-width: 100%;
	  margin: 10px 7px; /* Add vertical spacing between tiles */
	  padding: 15px;
	}
  
	.tile h3 {
	  font-size: 2.2vmin; /* Slightly smaller heading */
	  margin-bottom: 10px;
	}
  
	.tile p {
	  font-size: 2vmin; /* Adjust font size for better readability */
	}
  
	.arrow {
	  width: 35px; /* Reduce arrow size */
	  height: 35px;
	  font-size: 1.2rem;
	}
} 

  
/* --- RESEARCH --- */
.rotating-tiles-section {
	position: relative;
	width: 100%;
	text-align: justify;
	margin: 0 0;
	padding: 50px 0;
	background-color: #f5f5f5;
  }

.top-description h1 {
	color: black;
	padding-bottom: 20px;
	padding-left: 5%;
	font-size: 5.5vmin;
}

.top-description p {
	color: rgb(76, 75, 75);
	padding-bottom: 30px;
	padding-left: 5%;
	padding-right: 7%;
	font-size: 2.5vmin;
	font-weight: 600;
} 
  .rotating-tiles-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	width: auto; /* Box width */
	height: 60vh; /* Box height */
	margin: 0 auto;
	position: relative;
	padding-left: 5%;
	padding-right: 10%;
	gap: 40px; /* Gap between tiles */
  }

  .rotating-tiles-container p {
	text-align: justify;
	font-size: 1.5vmin;
  }
  
  .rotating-tile {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .rotating-tile .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
  }
  
  .rotating-tile:hover .overlay {
	opacity: 1;
  }

  @media (max-width: 768px) {
	.rotating-tiles-container {
		width: 85vw; /* Box width */
		height: 50vh; /* Box height */
	}

	.rotating-tiles-container p {
		font-size: 1.2vmin;
  	}
  }

/* Bottom Description Quantum */

.quantum-section {
	display: flex;
	align-items: center;
	text-align: justify;
	justify-content: center;
	padding: 50px 20px;
	background-color: #f5f5f5; /* Light background for contrast */
  }
  
  .quantum-content {
	flex: 1;
	margin-left: 10%;
  }
  
  .quantum-content h1 {
	font-size: 4vmin;
	font-weight: bold;
	color: #000; /* Black text color */
	margin-bottom: 10px;
  }
  
  .quantum-content h2 {
	font-size: 3vmin;
	font-weight: 600;
	color: #555; /* Slightly lighter text for subheading */
	margin-bottom: 20px;
  }
  
  .quantum-content p {
	font-size: 1.7vmin;
	line-height: 1.6;
	color: #333;
	margin-bottom: 15px;
  }
  
  .quantum-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .quantum-image img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
	.quantum-section {
	  flex-direction: column;
	  text-align: center;
	}
  
	.quantum-content {
	  margin-bottom: 20px;
	}

	.quantum-content h1 {
		font-size: 6vmin;
	}

	.quantum-content h2 {
		font-size: 5vmin;
	}

	.quantum-content p {
		font-size: 3vmin;
		text-align: justify;
	}

	.quantum-image img {
		max-width: 60%;
		border-radius: 10px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	}
  }
  
  
 /* --- SOLUTIONS --- */
  
 /* First Solutions Section */

 .solutions-body {
	background-color: #000000; /* Black background */
 }
 .customized-solutions {
	padding-top: 50px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #000; /* Black background */
	color: #fff; /* White text */
}

.customized-solutions h2 {
	text-align: center;
	padding-left: 50px;
	font-size: 5vmin;
	font-weight: 600;
	margin-bottom: 20px;
	color: #d3d3d3;
}
  
.customized-solutions hr {
	width: 95%;
	margin: 40px auto;
	border: 0;
	border-top: 1.5px solid #fff;
}
  
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 50px;
	margin-right: 50px;
}
  
.solution-card {
	background-color: #111; /* Slightly lighter black */
	border: 1px solid #ffff;
	padding: 20px;
	text-align: justify;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
  
.solution-card img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 15px;
}
  
.solution-card h3 {
	font-size: 1.5vmin;
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff; /* Highlight color */
}
  
.solution-card p {
	font-size: 2vmin;
	line-height: 1.5;
	color: #ccc;
}

.customized-solutions h1 {  /* Second Section Title*/
	text-align: center;
	margin-top: 5%;
	font-size: 5.5vmin;
	color: #d3d3d3;
}

/* Second Solutions Section */
.seamless-solutions-section {
	background-image: url('./img/P7e.png'); /* Background Image */
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-align: justify;
  }

  .three-column-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	padding: 50px 20px;
	background-color: #1111116e; /* Dark background for contrast */
	color: #fff;
  }
  
  .three-column-section img {
	width: 100%;
  }

  .column {
	flex: 1;
  }
  
  .text-column {
	min-width: 500px;
	max-width: 600px;
  }
  
  .text-column h1 {
	text-align: left;
	font-size: 5vmin;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
  }
  
  .text-column p {
	font-size: 2vmin;
	line-height: 1.6;
	margin-bottom: 15px;
  }
  
  .boxes-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  
  .box {
	background-color: #22222285;
	border: 1px solid #ffff;
	padding: 20px;
	width: 400px;
	height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
	}
  
  .box img {
	margin-top: 20px;
	max-width: 50px;
	margin-bottom: 10px;
  }
  
  .box h3 {
	font-size: 2vmin;
	font-weight: 600;
	color: #fff;
  }
  
  @media (max-width: 768px) {
	.three-column-section {
	  flex-direction: column;
	  align-items: center;
	}
  
	.text-column {
	  max-width: 100%;
	  margin-bottom: 20px;
	  text-align: justify;
	}
  
	.boxes-column {
	  width: 100%;
	  align-items: center;
	}
  
	.box {
	  align-items: center;
	  text-align: center;
	  width: 90%;
	  height: 60%;
	}

	.box img {
		margin-top: 5%;
	}
  }
  

  /* --- SERVICES --- */  
.services-section {
	padding: 50px 20px;
	background-color: #f4f7fa;
  }
  
  .services-section h2 {
	text-align: center;
	font-size: 5.5vmin;
	font-weight: bold;
	margin-bottom: 10px;
	color: black;
  }
  
  .services-section p {
	text-align: center;
	font-size: 2.5vmin;
	margin-bottom: 30px;
	color: #2d2d2d;
  }
  
  .services-slider {
	margin-left: 15%;
	margin-right: 15%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .services-tiles-container {
	overflow: hidden;
	width: 80%;
	max-width: 1200px;
	position: relative;
  }
  
  .services-tiles {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
  }
  
  .service-tile {
	min-width: calc(100% / 3); /* Show 3 tiles at a time */
	height: 500px;
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 10px;
	overflow: hidden;
	flex-shrink: 0;
  }
  
  .service-tile h3 {
	position: absolute;
	bottom: 1px;
	color: white;
	font-size: 1.2rem;
	font-weight: 500;
	background-color: rgb(23, 25, 49);
	padding: 5px 10px;
	text-align: center;
	align-items: center;
	width: 100%;
	height: 40px;
  }

  .service-tile p {
	font-size: 1.2vmin;
	color: white;
	text-align: justify;
  }
  
  .service-tile .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
  }
  
  .service-tile:hover .overlay {
	opacity: 1;
  }
  
 .arrow {
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.5rem;
	transition: background 0.2s;
	z-index: 10;
  }
  
  .arrow:hover {
	background: rgba(0, 0, 0, 0.8);
  }
  
  .left-arrow {
	position: absolute;
	left: 50%;
	transform: translateY(-50%);
	top: 50%;
  }
  
  .right-arrow {
	position: absolute;
	right: 50%;
	transform: translateY(-50%);
	top: 50%;
  }

  .service-tile.active .overlay {
    opacity: 1; /* Show overlay on click */
}

/* Services Description */
.possibilities-section {
	text-align: center;
	padding: 50px 20px;
	background-color: #f4f7fa; /* Light background for subtle contrast */
	color: #333; /* Dark text for readability */
  }
  
  .possibilities-section h1 {
	font-size: 5.5vmin;
	font-weight: bold;
	color: #181818; /* Darker shade for the heading */
	margin-bottom: 20px;
  }
  
  .possibilities-section hr {
	width: 90%;
	height: 1px;
	background-color: #005fbe; /* Accent color for the horizontal line */
	border: none;
	margin: 20px auto;
  }
  
  .possibilities-content p {
	text-align: justify;
	max-width: 80%;
	margin: 0 auto;
	font-size: 2.5vmin;
	line-height: 1.8;
	color: #3e3e3e; /* Softer shade for text */
  }
  
  .possibilities-content p {
	margin-bottom: 20px;
  }

  .product-tile.active .overlay {
    opacity: 1; /* Show overlay on click */
}
  
  @media (max-width: 768px) {
	.service-tile {
        width: 50%;
        height: 400px;
        display: flex; /* Enables flexbox */
        flex-direction: column; /* Aligns items vertically */
        justify-content: center; /* Centers content vertically */
        align-items: center; /* Centers content horizontally */
        text-align: center; /* Optional: centers text within the tile */
    }

    .service-tile h3 {
        font-size: 2vmin;
        height: auto; /* Adjust to fit content */
        margin: 0; /* Reset margins for precise alignment */
    }

    .service-tile p {
        font-size: 1.2vmin;
        height: auto; /* Adjust to fit content */
        margin: 0; /* Reset margins for precise alignment */
    }
	
	.possibilities-section h1 {
	  font-size: 2rem;
	}
  
	.possibilities-content {
	  font-size: 0.9rem;
	  line-height: 1.6;
	}
  }
  
  

/* --- PRODUCTS --- */  
.products-section {
	text-align: center;
	padding: 50px 20px;
	background-color: #1a1a2e;
  }
  
  .products-section h2 {
	font-size: 5.5vmin;
	font-weight: bold;
	margin-bottom: 10px;
	color: rgb(255, 255, 255);
  }
  
  .products-section p {
	font-size: 2.5vmin;
	margin-bottom: 30px;
	color: #ffffff;
  }

  .products-section hr {
	width: 80%;
	height: 1px;
	background-color: #399afb; /* Accent color for the horizontal line */
	border: none;
	margin: 70px auto;
  }
  
  .products-slider {
	margin-left: 15%;
	margin-right: 15%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .products-tiles-container {
	overflow: hidden;
	width: 80%;
	max-width: 1200px;
	position: relative;
  }
  
  .products-tiles {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
  }
  
  .product-tile {
	min-width: calc(100% / 3); /* Show 3 tiles at a time */
	height: 300px;
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 10px;
	border-radius: 20px;
	border: 1.5px solid #ffff;
	overflow: hidden;
	flex-shrink: 0;
  }
  
  .product-tile h3 {
	position: absolute;
	bottom: 1px;
	color: rgb(2, 0, 35);
	font-size: 1.2rem;
	background-color: rgba(255, 255, 255, 0.763);
	padding: 5px 10px;
	text-align: center;
	align-items: center;
	width: 100%;
  }

  .product-tile p {
	font-size: 1vmin;
	margin-left: 20px;
	text-align: justify;
  }
  
  .product-tile .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
  }
  
  .product-tile:hover .overlay {
	opacity: 1;
  }
  
  .arrow {
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.5rem;
	transition: background 0.2s;
	z-index: 10;
  }
  
  .arrow:hover {
	background: rgba(0, 0, 0, 0.8);
  }
  
  .left-arrow {
	position: absolute;
	left: 10px;
	transform: translateY(-50%);
	top: 50%;
  }
  
  .right-arrow {
	position: absolute;
	right: 10px;
	transform: translateY(-50%);
	top: 50%;
  }

  /* Product Description */
  .innovations-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: justify;
	padding: 50px 20px;
	background-color: #1a1a2e; /* Dark blue background for a professional look */
	color: #ffffff; /* White text for contrast */
	gap: 20px;
  }
  
  .innovations-content {
	flex: 1;
	max-width: 50%;
	margin-right: 2%;
  }
  
  .innovations-content h1 {
	text-align: center;
	font-size: 5.5vmin;
	font-weight: bold;
	margin-bottom: 20px;
	color: #ffffff;
  }
  
  .innovations-content p {
	font-size: 2vmin;
	line-height: 1.8;
	margin-bottom: 20px;
  }
  
  .innovations-image {
	flex: 1;
	max-width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .innovations-image img {
	max-width: 100%;
	border: 4px solid #00aaff; /* Highlighted border color */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 768px) {
	.product-tile {
        width: 50%;
        height: 400px;
        display: flex; /* Enables flexbox */
        flex-direction: column; /* Aligns items vertically */
        justify-content: center; /* Centers content vertically */
        align-items: center; /* Centers content horizontally */
        text-align: center; /* Optional: centers text within the tile */
    }

    .product-tile h3 {
        font-size: 2vmin;
        height: auto; /* Adjust to fit content */
        margin: 0; /* Reset margins for precise alignment */
    }

    .product-tile p {
        font-size: 1.5vmin;
        height: auto; /* Adjust to fit content */
        margin: 0; /* Reset margins for precise alignment */
    }
	
	.innovations-section {
	  flex-direction: column;
	  text-align: center;
	}
  
	.innovations-content {
	  max-width: 100%;
	}

	.innovations-content p {
		font-size: 2.5vmin;
		text-align: justify;
	  }
  
	.innovations-image {
	  max-width: 100%;
	  margin-top: 20px;
	}
  }
  
/* --- MISSION --- */
.solutions-section {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	background-color: #111; /* Dark background for contrast */
	color: #fff;
  }
  
  .left-section {
	flex: 1;
	background-image: url('./img/P11a.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .left-section .overlay {
	background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
	padding: 40px;
	max-width: 80%;
	text-align: center;
  }
  
  .left-section h1 {
	font-size: 4vmin;
	font-weight: 400;
	font-weight: bold;
	margin-bottom: 20px;
  }
  
  .left-section p {
	font-size: 2vmin;
	line-height: 1.6;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: justify;
  }

  .left-section .btn-discover {
	padding: 5px 15px;
	font-size: 1.5vmin;
  }
  
  .right-section {
	flex: 1;
	padding: 40px;
	background-color: #222;
  }
  
  .right-section h2 {
	font-size: 4.5vmin;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
  }
  
  .right-section .highlight {
	color: #ffa500; /* Highlight color for Netrenza */
  }
  
  .right-section hr {
	border: none;
	border-top: 2px solid #444;
	margin: 20px 0;
  }
  
  .right-section p {
	text-align: justify;
	font-size: 2vmin;
	line-height: 1.6;
	margin-bottom: 20px;
  }
  
  .right-section img {
	max-width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
	.solutions-section {
	  flex-direction: column;
	}

	.solutions-section h1 {
		font-size: 6vmin;
	  }

	.solutions-section h2 {
		font-size: 5vmin;
	  }
	
	.solutions-section p {
		font-size: 2.5vmin;
	  }
  
	.left-section {
	  min-height: 400px;
	}
  
  }
  

/* --- CONTACT --- */

.contact-body {
	background: #f5f8fb;
	color: #3f3f3f;
}

.contact-section {
	padding-left: 10%;
	padding-right: 10%;
	max-width: 100%;
	background: #f5f8fb;
}

.contact-header {
	text-align: left;
	margin-bottom: 50px;
}

.contact-header h1 {
	text-align: left;
	font-size: 5vmin;
	font-weight: bold;
	margin-bottom: 10px;
	color: #3f3f3f;
}

.contact-header p {
	font-size: 2vmin;
	line-height: 1.6;
	color: #3f3f3f;
}

.container {
	padding-left: 10%;
	padding-right: 5%;
	max-width: 100%;
	background: #f5f8fb;
	display: flex;
	gap: 20px;
}

.side-content {
	flex: 1;
	text-align: center;
	align-items: center;
}

.side-content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.address p {
	font-size: 2.5vmin;
	color: #555;
	text-align: left;
	padding-left: 10px;
}

.form-content {
	flex: 2;
}

h1 {
	text-align: center;
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

input, textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 2vmin;
}

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

.form-group-2 input, textarea {
	width: 100%;
}

textarea {
	resize: none;
}

.captcha {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 2.2vmin;
	font-weight: bold;
	align-items: center;
}

.captcha input {
	width: 85%;
}

button {
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 2vmin;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-bottom: 20px;
}

button:disabled {
	background-color: #555;
}

button:enabled {
	cursor: pointer;
}


/* --- FOOTER --- */
.footer {
	background-color: #121212;
	color: #ffffff;
	padding: 40px 70px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.footer-container {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	flex-wrap: wrap;
}
.footer-column {
	flex: 1;
	min-width: 200px;
}
.footer-column h3 {
	font-size: 2.5vmin;
	margin-bottom: 15px;
	font-weight: bold;
}
.footer-column p {
	font-size: 1.5vmin;
	line-height: 1.5;
	color: #cccccc;
}
.footer-column ul {
	list-style: none;
	padding: 0px;
}
.footer-column ul li {
	margin-bottom: 10px
}
.footer-column ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.5vmin;
	transition: color 0.3s;
}
.footer-column ul li a:hover {
	color: #f25c05; /* Highlight color on hover */
}

/* Quick Links Section */
.quick-links-columns {
	display: flex;
	gap: 20px; /* Reduce gap between the two columns */
  }
  
  .quick-links-columns ul {
	flex: 1;
  }

.footer-bottom {
	text-align: center;
	margin-top: 30px;
}
.footer-bottom hr {
	border: none;
	height: 1px;
	background-color: #444;
	margin: 10px 0;
}
.footer-bottom p {
	font-size: 1.5vmin;
	color: #888;
}

