* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	/*background: linear-gradient(45deg, #667eea, #764ba2);*/
	/*background: linear-gradient(90deg, #667eea, #c9c6cd);*/
	background: linear-gradient(45deg, rgb(118, 75, 162), rgb(102, 126, 234)) text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #667eea;
}

.cta-button {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	padding: 6px 12px;
	border: none;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-big {
	padding: 12px 24px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Main/Template Section */
.main-content {
	padding: 80px 0;
	background: white;
	text-align: justify;
}

.multi-columns {
	display: flex;
	width: 100%;
}

.multi-columns div {
	/*flex: 1;*/
}

[class^="col-"] {
  float: left; /* or display: inline-block / flex */
  padding: 1rem;
}
.col-5   { width: 5%; }
.col-10  { width: 10%; }
.col-15  { width: 15%; }
.col-20  { width: 20%; }
.col-25  { width: 25%; }
.col-30  { width: 30%; }
.col-33  { width: 33.3333%; }
.col-35  { width: 35%; }
.col-40  { width: 40%; }
.col-45  { width: 45%; }
.col-50  { width: 50%; }
.col-55  { width: 55%; }
.col-60  { width: 60%; }
.col-65  { width: 65%; }
.col-66  { width: 66.6667%; }
.col-70  { width: 70%; }
.col-75  { width: 75%; }
.col-80  { width: 80%; }
.col-85  { width: 85%; }
.col-90  { width: 90%; }
.col-95  { width: 95%; }
.col-100 { width: 100%; }

/* Hero Section */
.hero {
	/*margin-top: 80px;*/
	padding: 160px 0 80px 0;
	text-align: center;
	color: white;
	
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 30%, rgba(118, 75, 162, 0.9) 100%), url('header-background1.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	animation: fadeInUp 1s ease 0.2s forwards;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
	opacity: 0;
	animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-buttons .cta-button {
	margin: 0 10px;
	font-size: 1.1rem;
	padding: 15px 30px;
}

.secondary-button {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.secondary-button:hover {
	background: white;
	color: #667eea;
}

/* Solutions Grid */
.solutions {
	padding: 80px 0;
	background: white;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.solution-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f0f0f0;
}

.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
	width: 100%;
	height: 85px;
}

.solution-icon {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 20px;
	float: left;
}

.solution-icon img {
	width: 28px;
	height: 28px;
}

.solution-header > h3 {
	float: left;
	margin-left: 10px;
	padding-top: 10px;
}

.solution-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #333;
}

.solution-card p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.learn-more {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: gap 0.3s ease;
}

.learn-more:hover {
	gap: 10px;
}

/* Capabilities Section */
.capabilities {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.capability-item {
	text-align: center;
}

.capability-item .icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 20px;
}

.capability-item .icon img {
	width: 36px;
	height: 36px;
}

.capability-item h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #333;
}

.capability-item p {
	color: #666;
}

/* Mission Section */
.mission {
	color: #fff;
	text-align: center;
	padding: 20px 20px 70px 20px;
}

.mission .section-title {
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.mission p {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: #333;
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.contact p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	margin-top: 20px;
	font-size: 1.1rem;
	padding: 15px;
}

/* Footer */
#site-footer {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	margin-top: auto;
}

.footer-content {
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 50px;
}

.footer-section h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: white;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: bold;
	background: linear-gradient(90deg, #667eea, #c9c6cd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
}

.footer-description {
	color: #bdc3c7;
	line-height: 1.6;
	margin-bottom: 25px;
	max-width: 300px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: linear-gradient(45deg, #667eea, #764ba2);
	transform: translateY(-2px);
}

.social-icon {
	font-size: 1.2rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: #667eea;
}

/* Newsletter Section */
.newsletter-section {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	padding: 40px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	margin-bottom: 40px;
}

.newsletter-content h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: white;
}

.newsletter-content p {
	color: #bdc3c7;
	font-size: 0.95rem;
}

.newsletter-form {
	display: flex;
	gap: 15px;
	min-width: 300px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 18px;
	border: none;
	border-radius: 25px;
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.newsletter-form input:focus {
	outline: none;
	background: white;
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-btn {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: #bdc3c7;
	font-size: 0.9rem;
}

.footer-bottom-links {
	display: flex;
	gap: 30px;
}

.footer-bottom-links a {
	color: #bdc3c7;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 30px;
	}
	
	.footer-grid .footer-section:nth-child(4),
	.footer-grid .footer-section:nth-child(5) {
		grid-column: span 1;
	}
}

@media (max-width: 768px) {
	.footer-content {
		padding: 40px 0 0;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	.footer-description {
		max-width: none;
	}
	
	.newsletter-section {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 30px 20px;
		text-align: center;
	}
	
	.newsletter-form {
		min-width: auto;
		flex-direction: column;
		align-items: center;
	}
	
	.newsletter-form input {
		width: 100%;
		max-width: 300px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.footer-bottom-links {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.footer-bottom-links {
		flex-direction: column;
		gap: 10px;
	}
}

/* Utility class for pages that need full height layout */
.page-layout {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.page-layout main {
	flex: 1;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.solutions-grid {
		grid-template-columns: 1fr;
	}

	.capabilities-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form {
		padding: 0 20px;
	}
}

.no-bottom-margin {
	margin-bottom: 0px;
}

/*---------------------------------------
	BUTTONS
-----------------------------------------*/

.section-btn {
	margin: 32px 0 0 0;
	padding: 0;
}

.section-btn a,
.section-btn button {
	line-height: 45px;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	color: #ffffff;
	font-weight: normal;
}

.section-btn a span,
.section-btn button span {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 0.5px;
	padding: 0 25px;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 25px;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.fow-video-right {
	position: relative;
}

.fow-overlay-bg {
	opacity: 0.8;
	background-image: -webkit-linear-gradient(0deg, #828fff 0%, #d496ff 100%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}