:root {
--color1 : #0078D4; /* A blue  color */
--color2 : #8000FF; /* A purple color*/
--color3: #f9f9f9; /* A light gray color*/
--color4: #f8f0fc; /* A light purple color*/
}
	body {
		font-family: Arial, sans-serif;
		margin: 0;
		padding: 0;
		line-height: 1.6;
		max-width:1700px;
		margin:auto;
	}
	
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;	
	background: gray;
	display: flex;
	justify-content: center;
	padding: 5px 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
nav a {
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	margin: 0 5px;
	font-size: 16px;
	border-radius: 5px;
	transition: background 0.3s;
}
nav a:hover {
	background: #002266;
}

header {
	background: white;
	color: #0078D4;
	padding: 1em 0;
	text-align: center;
}
header h1 {
	margin: 0;
}
.container {
	padding: 1.5em;
}
.section {
	margin-bottom: 2em;
}
.section h2 {
	color: var(--color1);
	padding-bottom: 0.3em;
}
	
.main-container{	
	padding:10px 100px;
}


.features-container, .challenges-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}
.feature-box, .challenge-box {
	width: 300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	opacity:1;
}
.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.feature-box i {
	font-size: 40px;      
	background: linear-gradient(90deg, #005CFF, #8000FF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.feature-box h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #0044cc;
}
.feature-box p {
	font-size: 14px;
	color: #555;
}

div.productscreen{
	margin-bottom: 40px;	
}



.productImage {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adds a soft shadow */
	border-radius: 8px; /* Optional: smooth corners */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation on hover */
	
}
	

.challenge-box i {
	font-size: 2rem;
	color: var(--color1);
	margin-bottom: 0.5em;
	
}

.challenge-box h3 {
	color: var(--color1);	
}

.challenge-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero {
	background: var(--color2);
	color: white;
	padding: 60px 20px;
	text-align: center;
}
.hero h1 {
	font-size: 40px;
	margin: 0 0 10px;
}
.hero p {
	font-size: 18px;
	margin: 0 0 20px;
}

footer {
	background: linear-gradient(to right, var(--color1), var(--color2)); 
	color: white;
	text-align: center;
	padding: 1em 0;
}

	
	/* Container for the image */
.screen-image-container {
	width:100%;
	padding:0;
	position:relative;
}

/* Style for the images */
.screen-image-container img {
	width: 100%;
	height:auto;
	overflow:hidden;
	position:abosolute;
	border-radius: 0; /* Rounds the corners of the image */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Adds a soft shadow around the container */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Adds smooth transition effects when interacting with the image */
}

/* Hover effect */
.screen-image-container:hover {
	transform: scale(1.05); /* Slight zoom on hover */
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
}

/* Caption or text overlay (optional) */
.screen-image-caption {
	position: relative; 
	margin-top:10px;
	//background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background */
	color: white;
	font-size: 0.5 em;
	padding: 5px 15px;
	border-radius: 5px;
   /* Hide by default */
}

/* Show caption when hovered */
.screen-image-container:hover .screen-image-caption {
	display: block;
}

.responsive_image{
	width:100%;
	height:auto;
	display:block;	
}

.slideshow-container {
	position: relative;
	max-width: 100%;
	height: 350px;
	overflow: hidden;
	margin-top: 40px;  /*Offset for fixed menu */	
}

.printSlogan-container {
	position: relative;
	max-width: 100%;
	height: 300px;
	overflow: hidden;
	margin-bottom:30px;
	font-size:2em;
}

.printSlogan-container_thin {
	position: relative;
	max-width: 100%;
	height: 300px;
	overflow: hidden;
	margin-bottom:30px;
	font-size:2em;
}

.icon-box {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	background: var(--color4);
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.icon-box i {
	font-size: 40px;
	margin-right: 20px;
	color: #16a085;
}
.icon-box div {
	flex: 1;
}


.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	
}
.slide img {
	height: 100%;
	width:100%;
	object-fit: cover;
}
.slide.active {
	opacity: 1;
}

.slideBg{			
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%; /* Full height of the slide */
	background:var(--color1);
	border-radius: 0 0 40% 0;

	 margin:0 0 30px 0;
}

.slideInfo{	
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;			
	padding: 25px;
	background: linear-gradient(to right, var(--color1), var(--color2)); 
	border-radius: 0 0 40% 0;
	height:100%;
	color: #ffffff; /* White text for high contrast */
	font-family: 'Arial', sans-serif; /* Clean and professional font */
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adds subtle depth to text */
}

 .text-cover{			 
	  font-size: 24px;
	  font-weight: bold;			
	  color:white;	 
	  opacity:0.9;	 
}

.print-cover{
	 font-size: 24px;
	 font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%; /* Full height of the slide */
	padding:5px;
	border-radius: 0 0 40% 0;
	background: linear-gradient(to right, var(--color1), var(--color2)); /* Gradient from blue to green */
	color: #ffffff; /* White text for high contrast */
	font-family: 'Arial', sans-serif; /* Clean and professional font */
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adds subtle depth to text */

	 margin:0 0 30px 0;
}
	
.printOnly{
	display:none;
}

.buildexMobile{
	max-height:700px;
	padding:30px;
}

.buildexPane1{
	margin:100px;
	color:blue;"
}

.slogan{
	color:var(--color1);
	font-size:2em;
	padding:50px 25px;
}

.contactPane{
	background-color:var(--color3);
}

.slideshowNM-container {
	position: relative;
	max-width: 100%;
	height: 550px;
	overflow: hidden;
	 margin-top: 45px; 
}

.team-section {
text-align: center;
padding: 2rem;
background-color: #f9f9f9;
}

.team-title {
font-size: 2rem;
margin-bottom: 1.5rem;
}

.team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}

.team-member {
max-width: 250px;
text-align: center;
background: #fff;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-photo {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}

.team-name {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}

.team-position {
font-size: 0.9rem;
color: #555;
}

.team-description {
font-size: 0.85rem;
color: #777;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}
		
@media (max-width: 768px) {
	.main-container{	
		padding:10px 5px;
	}
    .chief-title {
        font-size: 2em;
    }
    .chief-card {
        padding: 15px;
    }
    .chief-card h3 {
        font-size: 1.3em;
    }
    .chief-icon {
        font-size: 2em;
    }
	.infographic {
		width:200px;
		margin:auto;
	}
	
	.slideshow-container {
		position: relative;
		max-width: 100%;
		height: 450px;	
		background: white;
	    margin-top: 40px;
		
	}
	
		
	.slideInfo{	
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		font-weight: bold;			
		padding: 25px;
		/*background: linear-gradient(to right, var(--color1), purple);  Gradient from blue to green */
		background-color:blue;
		color: #ffffff; /* White text for high contrast */
		font-family: 'Arial', sans-serif; /* Clean and professional font */
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adds subtle depth to text */
	}
	
	.responsive_image{
		height:100%;
		width:auto;
		display:block;	
	}
	
	
	.print-cover{	
		height:200px;
		padding:5px 10px;
	}


	.text-cover{
		display: flex;
		align-items: center;
		justify-content: center;
		height:200px;
		padding:20px;
		border-radius: 0 0 40% 0;
		background: linear-gradient(to right, #3b82f6, var(--color2)); /* Gradient from blue to green */
		color: #ffffff; /* White text for high contrast */
		font-family: 'Arial', sans-serif; /* Clean and professional font */
		/*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);  Adds subtle depth to text */
	}
	
	.newPage{
		margin-top:100px;
	}
	
	
	
	
	.buildexMobile{
		padding:0;
		width:100%;
	}
	
	.buildexPane1{
		margin:10px;
	}
	
	.printSlogan-container {
		height: 600px;
		overflow:hidden;
	}
	
	.printSlogan-container_thin {
		height: 600px;
		overflow:hidden;
	}
}



@media print{
	.printSlogan-container {
		height: 480px;
		overflow:hidden;
	}
	
	.printSlogan-container_thin {
		height: 230px;
		overflow:hidden;
	}
	
	.main-container{	
		padding:0px;
	}
	
	.main-container h2{	
		padding:30px 10px 5px 30px;
	}
	
	.noPrint{
		display: none !important;
	}
	
	.newPage{
		break-before:always;
		page-break-before:always;
	}
	
	.feature-box{
		page-break-inside:avoid;
		break-inside:avoid;
	}
	
	.feature-box::before{
		content:"";
		display:block;
		height:20px;
	}
	
	.challenge-box{
		page-break-inside:avoid;
		break-inside:avoid;
	}
	
	.chief-card{
		page-break-inside:avoid;
		break-inside:avoid;
	}
	
	.chief-card::before{
		content:"";
		display:block;
		height:20px;
	}
	
	.printContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh; /* Full page height */
    }
	
	.printOnly {
        display: flex;
    }

    .printImage {
        max-height: 90vh; /* Leave some margin */
        max-width: 100vw;
        object-fit: contain;
    }
	
	
	.buildexMobile{
		max-height:900px;
		padding:0;
		max-width:400px;
	}
	
	.buildexPane1{
		padding:0;
		margin:5px;
	}
	
	div.productscreen{
		padding:0 20px;	
	}
	
	.text-cover{
		
		padding:15px;
		
	}
	
	.printSloganFirstPage-container{
		height:800px;
	}
	
	
	.calendly-badge-widget{
		display:none !important;
	}
}