/* Induxt Industry Business HTML-5 Template */


/*** 

====================================================================
	Attachment Css Files
====================================================================

***/

@import url('global.css');
@import url('header.css');
@import url('footer.css');
@import url('animate.css');
@import url('rtl.css');
@import url('dark-body.css');

@import url('slider.css');
@import url('about.css');
@import url('marque.css');
@import url('services.css');
@import url('accordion.css');
@import url('process.css');
@import url('clients.css');
@import url('projects.css');
@import url('pricing.css');
@import url('team.css');
@import url('testimonial.css');
@import url('news.css');
@import url('contact.css');
@import url('since.css');
@import url('faq.css');
@import url('video.css');
@import url('counter.css');
@import url('flaticon_induxt.css');


@import url('cta.css');
@import url('shop.css');
@import url('choose.css');
@import url('privacy.css');
@import url('not-found.css');
@import url('coming-soon.css');
@import url('page-title.css');
@import url('jquery-ui.css');
@import url('swiper.min.css');
@import url('font-awesome.css');
@import url('custom-animate.css');
@import url('magnific-popup.css');
@import url('odometer-theme-default.css');
@import url('jquery.bootstrap-touchspin.css');

/* ==========================================================================
   Brand Color Palette Overrides (Added as per request)
   ========================================================================== */
:root {
	/* New Accent Color: bright cyan/blue */
	--main-color: #01C8F7;
	--main-color-rgb: 1, 200, 247;
	
	/* Secondary Accent for hover states */
	--main-hover-color: #0199c4;

	/* Card / slight lighter dark background */
	--color-two: #1a1f2e;
	--color-two-rgb: 26, 31, 46;

	/* Secondary text color */
	--color-three: #cccccc;
	--color-three-rgb: 204, 204, 204;

	/* Primary text color (White) */
	--white-color: #ffffff;
	--white-color-rgb: 255, 255, 255;

	/* Primary background (Dark Theme) */
	--black-color: #0e1117;
	--black-color-rgb: 14, 17, 23;

	/* Accent aliases for missing older template references */
	--pink: #01C8F7;
	--teal: #01C8F7;
	--yellow: #0199c4;
	--orange: #0199c4;
}

/* ==========================================================================
   Hero Animation Section
   ========================================================================== */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: var(--black-color);
	margin: 0 !important;
	padding: 0 !important;
}

.hero-container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

#heroFramesCanvas {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

.hero-fallback {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-mobile {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.hero-overlay-content {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

/* Semi-transparent dark overlay using secondary color for depth */
.hero-overlay-content::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(14, 17, 23, 0.4);
	z-index: -1;
	pointer-events: none;
}

.hero-section .slider-one_content {
	padding-top: 0;
	max-width: 800px;
}

.hero-section .slider-one_title {
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 10px 25px;
	border-radius: 50px;
	margin-bottom: 20px;
	display: inline-block;
}

.hero-section .slider-one_heading {
	color: var(--white-color);
	font-size: 64px;
	font-weight: 800;
	margin-bottom: 30px;
	line-height: 1.1;
}

.hero-section .slider-one_text {
	color: var(--white-color);
	font-size: 18px;
	margin-bottom: 40px;
	max-width: 500px;
}

@media (max-width: 767px) {
	#heroFramesCanvas, .hero-fallback {
		display: none !important;
	}
	.hero-mobile {
		display: block;
	}
	.hero-section .slider-one_heading {
		font-size: 36px;
	}
	.hero-section {
		height: 80vh;
	}
}