/*
 * Mainio Media - Custom Styles
 * Overrides template colors with navy blue branding
 */

:root {
	--base-color: #1e3a5f;
	--base-color2: #2c5282;
	--base-color3: #0f2847;
	--base-color4: #4a7ba7;
	--site-max-width: 1600px;
}

/* ========================================
   WIDE CONTAINER (1600px)
   ======================================== */
.container,
.container-fluid {
	max-width: var(--site-max-width) !important;
	padding-left: 2em !important;
	padding-right: 2em !important;
}

/* Tablet */
@media (max-width: 991px) {
	.container,
	.container-fluid {
		padding-left: 2em !important;
		padding-right: 2em !important;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.container,
	.container-fluid {
		padding-left: 1em !important;
		padding-right: 1em !important;
	}
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
	background-image: url('../img/hero-bg.png');
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
}

/* Scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	cursor: pointer;
	text-align: center;
	animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
	width: 26px;
	height: 42px;
	border: 2px solid #fff;
	border-radius: 15px;
	display: block;
	margin: 0 auto 8px;
	position: relative;
}

.scroll-indicator .mouse::before {
	content: '';
	width: 4px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll-wheel 1.5s infinite;
}

.scroll-indicator span {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "Oswald", sans-serif;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes scroll-wheel {
	0% {
		opacity: 1;
		top: 8px;
	}
	100% {
		opacity: 0;
		top: 20px;
	}
}

/* Dark overlay for text readability */
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(12, 30, 60, 0.92) 0%, rgba(12, 30, 60, 0.7) 50%, rgba(12, 30, 60, 0.4) 100%);
	z-index: 1;
}

/* Content above overlay */
.hero-section .container {
	position: relative;
	z-index: 2;
}

/* Page Hero (Inner Pages) */
.page-hero {
	background-image: url('../img/hero-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	height: 80vh;
	display: flex;
	align-items: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(12, 30, 60, 0.95) 0%, rgba(12, 30, 60, 0.8) 50%, rgba(12, 30, 60, 0.6) 100%);
	z-index: 1;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.page-hero-content {
	max-width: 700px;
}

.page-hero h1 {
	color: #fff;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.2s;
}

.page-hero p {
	color: #e0e0e0;
	font-size: 18px;
	max-width: 550px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.4s;
}

.page-hero .hero-btn {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.6s;
}

@media (max-width: 991px) {
	.page-hero {
		height: 60vh;
	}
	.page-hero h1 {
		font-size: 60px;
	}
}

@media (max-width: 767px) {
	.page-hero {
		height: 55vh;
		min-height: 350px;
		padding: 100px 0 60px;
	}
	.page-hero h1 {
		font-size: 42px;
	}
	.page-hero p {
		font-size: 16px;
	}
}

/* Hero Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hero-content {
	max-width: 850px;
}

/* Tags */
.hero-tags {
	margin-bottom: 15px;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.2s;
}

.scroll-indicator {
	opacity: 0;
	animation: fadeIn 1s ease forwards;
	animation-delay: 1.2s;
}

.hero-tags span {
	color: #fff;
	font-size: 18px;
	position: relative;
	padding-right: 40px;
}

.hero-tags span:after {
	top: 5px;
	width: 2px;
	right: 15px;
	content: "";
	height: 15px;
	position: absolute;
	background-color: rgba(255,255,255,0.3);
}

.hero-tags span:last-child:after {
	display: none;
}

/* Heading */
.hero-section h1 {
	color: #fff;
	font-size: 100px;
	font-weight: 700;
	line-height: 1.1;
	padding: 15px 0 30px;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.4s;
}

/* Description */
.hero-section p {
	color: #e0e0e0;
	font-size: 18px;
	max-width: 630px;
	padding-bottom: 35px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.6s;
}

/* Buttons container */
.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	animation-delay: 0.8s;
}

/* Base button styles */
.hero-btn {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	text-decoration: none;
	border: 2px solid;
	transition: all 0.3s ease;
}

.hero-btn i {
	margin-left: 8px;
	transition: all 0.3s ease;
}

/* Primary button (left) */
.hero-btn-primary,
.hero-btn-primary:link,
.hero-btn-primary:visited {
	background-color: #2c5282 !important;
	border-color: #2c5282 !important;
	color: #fff !important;
}

.hero-btn-primary i {
	color: #fff !important;
}

.hero-btn-primary:hover {
	background-color: #fff !important;
	border-color: #fff !important;
	color: #1e3a5f !important;
}

.hero-btn-primary:hover i {
	color: #1e3a5f !important;
}

/* Secondary button (right) */
.hero-btn-secondary,
.hero-btn-secondary:link,
.hero-btn-secondary:visited {
	background-color: transparent !important;
	border-color: #fff !important;
	color: #fff !important;
}

.hero-btn-secondary i {
	color: #fff !important;
}

.hero-btn-secondary:hover {
	background-color: #fff !important;
	border-color: #fff !important;
	color: #1e3a5f !important;
}

.hero-btn-secondary:hover i {
	color: #1e3a5f !important;
}

/* Responsive */
@media (max-width: 991px) {
	.hero-section h1 {
		font-size: 70px;
	}
}

@media (max-width: 767px) {
	.hero-section {
		padding: 140px 0 80px;
	}

	.hero-section h1 {
		font-size: 50px;
	}

	.hero-section p {
		font-size: 16px;
	}

	.hero-tags span {
		font-size: 14px;
		padding-right: 25px;
	}

	.hero-tags span:after {
		right: 10px;
	}

	.hero-btn {
		height: 50px;
		line-height: 50px;
		padding: 0 20px;
		font-size: 12px;
	}
}

/* ========================================
   COLOR OVERRIDES
   ======================================== */
.dark-version .taeled-btn a,
.dark-version .taeled-btn button {
	background-color: transparent !important;
}

.dark-version .taeled-btn a:hover,
.dark-version .taeled-btn button:hover {
	background-color: var(--base-color2) !important;
}

/* Active navigation & hover */
.main-navigation-area ul li.active a,
.main-navigation-area ul li a:hover,
.main-header .menu-navigation li a:hover {
	color: #60a6ff !important;
}

/* Remove navigation dots */
.main-header .menu-navigation li a:after {
	display: none !important;
}

/* Nav item underline animation */
.main-header .menu-navigation li a {
	position: relative;
}

.main-header .menu-navigation li a::before {
	content: '';
	position: absolute;
	bottom: 25px;
	left: 0;
	width: 0;
	height: 2px;
	background: #60a6ff;
	transition: width 0.3s ease;
}

.main-header .menu-navigation li a:hover::before,
.main-header .menu-navigation li.active a::before {
	width: 100%;
}

/* Logo hover effect */
.main-header .brand-logo a {
	display: inline-block;
	transition: all 0.3s ease;
}

.main-header .brand-logo a:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* Header logo sizing */
.header-logo {
	max-height: 40px;
	height: auto;
	width: auto;
}

/* Service icons */
.service-inner-icon i,
.feature-box-icon i {
	color: var(--base-color) !important;
}

/* Remove feature icon background circle */
.feature-section-2 .feature-box-icon:after {
	display: none !important;
}

/* Form spacing - consistent across all forms */
form .row {
	--bs-gutter-x: 1em;
	row-gap: 0;
}

.contact-info {
	margin-bottom: 1em !important;
}

.contact-info input,
.contact-info textarea,
.contact-info select {
	width: 100%;
	padding: 15px 20px !important;
	border-radius: 5px;
}

/* Forms with icons need extra left padding */
.contact-form-wrapper .contact-info input,
.contact-form-wrapper .contact-info textarea {
	padding: 15px 20px 15px 55px !important;
}

/* Contact option boxes - equal height forms */
.contact-option-box {
	display: flex;
	flex-direction: column;
}

.contact-option-box form {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.contact-option-box form > div:last-child {
	margin-top: auto;
}

.contact-form-wrapper .contact-info .icon-bg {
	left: 20px !important;
	top: 50% !important;
	transform: translateY(-50%);
}

/* Textarea icon at top */
.contact-form-wrapper .contact-info:has(textarea) .icon-bg {
	top: 18px !important;
	transform: none;
}

/* Dark form fields */
.dark-version .contact-info input,
.dark-version .contact-info textarea,
.dark-version .contact-info select,
.contact-option-box input,
.contact-option-box textarea,
.contact-option-box select {
	background: rgba(255,255,255,0.05) !important;
	border: 1px solid rgba(255,255,255,0.1) !important;
	color: #fff !important;
}

.dark-version .contact-info input::placeholder,
.dark-version .contact-info textarea::placeholder,
.contact-option-box input::placeholder,
.contact-option-box textarea::placeholder {
	color: #aebcce !important;
}

/* Dropdown option styling - navy blue text */
.dark-version .contact-info select option,
.contact-option-box select option {
	background: #fff;
	color: #0d1723;
}

/* Footer form styling */
.footer-contact-form input,
.footer-contact-form textarea {
	width: 100%;
	margin-bottom: 12px;
	padding: 12px 15px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
	color: #aebcce;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
	border-color: #60a6ff;
	box-shadow: 0 0 0 3px rgba(96, 166, 255, 0.15);
	outline: none;
}

.footer-contact-form button {
	width: 100%;
	padding: 12px 20px;
	background: #2c5282;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer-contact-form button:hover {
	background: #fff;
	color: #1e3a5f;
}

.footer-contact-form button i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.footer-contact-form button:hover i {
	transform: translateX(5px);
	color: #1e3a5f;
}

/* Section backgrounds */
.bredcrumb-area {
	background: var(--base-color) !important;
}

/* Form buttons */
.contact-section-2 .taeled-btn button[type="submit"] {
	background-color: var(--base-color) !important;
}

/* Footer */
.footer-bottom-copyright h4 a {
	color: var(--base-color4) !important;
}

/* Widget titles */
.widget-title {
	color: #fff !important;
}

/* Section titles - small ingress/subheadings */
.section-title span,
.dark-version .section-title span {
	color: #60a6ff !important;
	text-transform: uppercase !important;
	font-family: "Oswald", sans-serif !important;
	font-weight: 500 !important;
	letter-spacing: 3px !important;
	font-size: 14px !important;
}

.section-title h2 {
	color: #fff !important;
}

/* ========================================
   MOBILE MENU - Modern Redesign
   ======================================== */

/* Hide sidebar button on mobile */
.menu-side-option {
	display: none !important;
}

/* Mobile menu - slide from right */
.mobile_menu_content {
	background: linear-gradient(180deg, var(--base-color3) 0%, #0a1929 100%) !important;
	width: 345px;
	max-width: 90vw;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	left: auto !important;
	right: -360px !important;
	transition: right 0.4s ease !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
	left: auto !important;
	right: 0 !important;
}

.header-style-two.sticky-on .mobile_menu_content,
.header-style-three.sticky-on .mobile_menu_content,
.header-style-five.sticky-on .mobile_menu_content {
	top: 0px;
	height: 100vh;
}

/* Mobile menu close button */
.mobile_menu_close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile_menu_close:hover {
	background: rgba(255,255,255,0.2);
	transform: rotate(90deg);
}

.mobile_menu_close i {
	color: #fff;
	font-size: 16px;
}

/* Mobile logo */
.m-brand-logo {
	padding: 25px 80px 25px 20px !important;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-bottom: 0 !important;
	width: auto !important;
}

.m-brand-logo a {
	display: block;
}

.m-brand-logo img {
	max-width: 180px !important;
	height: auto !important;
	width: auto !important;
	object-fit: contain !important;
}

/* Mobile navigation */
.mobile-main-navigation {
	padding: 15px 0;
	flex: 1;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	overflow-y: auto;
}

.mobile-main-navigation.clearfix::after,
.mobile-main-navigation.clearfix::before {
	display: none !important;
}

.mobile-main-navigation ul,
.mobile-main-navigation .navbar-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
}

.mobile-main-navigation ul li {
	margin: 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	display: block !important;
	width: 100% !important;
	float: none !important;
}

.mobile-main-navigation ul li a {
	display: block;
	padding: 15px 20px !important;
	color: rgba(255,255,255,0.8) !important;
	font-family: "Oswald", sans-serif;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	border-bottom: none !important;
}

.mobile-main-navigation ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #60a6ff;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.mobile-main-navigation ul li a:hover,
.mobile-main-navigation ul li.active a {
	color: #fff !important;
	background: rgba(96, 166, 255, 0.1);
	padding-left: 25px !important;
}

.mobile-main-navigation ul li a:hover::before,
.mobile-main-navigation ul li.active a::before {
	transform: scaleY(1);
}

/* Mobile active link - permanent highlight */
.mobile-main-navigation ul li.active a {
	color: #60a6ff !important;
	background: rgba(96, 166, 255, 0.15);
	padding-left: 25px !important;
}

/* Mobile contact info */
.mobile-contact-info {
	padding: 20px !important;
	background: rgba(0,0,0,0.2);
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: auto;
}

.mobile-contact-info a {
	display: flex !important;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.8) !important;
	font-size: 14px;
	padding: 10px 0 !important;
	margin-bottom: 0 !important;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

.mobile-contact-info a:hover {
	color: #60a6ff !important;
}

.mobile-contact-info a i {
	width: 40px;
	min-width: 40px;
	height: 40px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: rgba(96, 166, 255, 0.15);
	border-radius: 50%;
	font-size: 14px;
	color: #60a6ff;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.mobile-contact-info a span {
	flex: 1;
	word-break: break-word;
}

.mobile-contact-info a:hover i {
	background: #60a6ff;
	color: #fff;
}

/* Mobile menu overlay */
.mobile_menu_overlay {
	background: rgba(0,0,0,0.6) !important;
	backdrop-filter: blur(3px);
}

/* Mobile menu button - only visible on mobile */
@media (max-width: 991px) {
	.mobile_menu_button {
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255,255,255,0.1);
		border-radius: 8px;
		transition: all 0.3s ease;
		margin-right: 0.5em;
		margin-top: -10px;
	}

	.mobile_menu_button:hover {
		background: rgba(255,255,255,0.2);
	}

	.mobile_menu_button i {
		color: #fff;
		font-size: 20px;
	}

	/* Header logo bigger on mobile */
	.header-logo,
	.main-header .brand-logo img {
		max-height: 180px !important;
		min-width: 180px !important;
		height: auto !important;
		width: auto !important;
	}
}

/* Header padding */
.main-header .header-menu-wrap {
	padding-bottom: 10px;
}

/* Header sticky state */
.main-header.sticky-on {
	top: 0 !important;
	left: 0;
	right: 0;
	background: rgba(15, 40, 71, 0.6) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(96, 166, 255, 0.15);
}

/* CTA section colors */
.contact-section-2 .contact-content-innerbox {
	background: rgba(13, 23, 35, 0.75) !important;
}

/* Footer widget links */
.footer-menu ul li a:hover {
	color: #fff !important;
}

/* ========================================
   CONTACT TABS
   ======================================== */
.contact-tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 55px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	letter-spacing: 1px;
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-tab i {
	font-size: 16px;
}

/* Active tab - like hero-btn-primary */
.contact-tab.active {
	background-color: #2c5282;
	border-color: #2c5282;
	color: #fff;
}

/* Inactive tab hover - white bg, navy text */
.contact-tab:not(.active):hover {
	background-color: #fff;
	border-color: #fff;
	color: #1e3a5f;
}

/* Tab content transition */
.tab-content {
	animation: fadeIn 0.3s ease;
}

@media (max-width: 576px) {
	.contact-tab {
		padding: 0 20px;
		height: 50px;
		font-size: 12px;
	}

	.tab-nav {
		flex-direction: column;
		align-items: center;
	}

	.contact-tab {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}

/* ========================================
   DESIGN IMPROVEMENTS
   ======================================== */

/* Service Cards - Glass Effect */
.service-innerbox-wrap {
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(96, 166, 255, 0.1);
	border-radius: 12px;
	padding: 35px;
	transition: all 0.4s ease;
	height: 100%;
}

.service-innerbox-wrap:hover {
	background: rgba(96, 166, 255, 0.06);
	border-color: rgba(96, 166, 255, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.service-innerbox-wrap .service-serial {
	transition: all 0.4s ease;
}

.service-innerbox-wrap:hover .service-serial {
	color: #60a6ff !important;
	opacity: 0.3;
}

/* Contact Info Cards */
.contact-card {
	background: rgba(18, 30, 45, 0.5);
	border: 1px solid rgba(96, 166, 255, 0.12);
	border-radius: 16px;
	padding: 45px 35px;
	transition: all 0.4s ease;
	height: 100%;
}

.contact-card:hover {
	background: rgba(96, 166, 255, 0.06);
	border-color: rgba(96, 166, 255, 0.35);
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.contact-card img {
	transition: transform 0.4s ease;
}

.contact-card:hover img {
	transform: scale(1.1);
}

/* Section Title Decorations */
.section-title.decorated span::after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #60a6ff, transparent);
	margin-top: 12px;
}

.section-title.decorated.text-center span::after {
	margin-left: auto;
	margin-right: auto;
}

/* Button Arrow Animation - only for right-side arrows */
.hero-btn i.fa-arrow-right {
	transition: transform 0.3s ease;
}

.hero-btn:hover i.fa-arrow-right {
	transform: translateX(5px);
}

/* Form Focus States */
.contact-info input:focus,
.contact-info textarea:focus,
.contact-info select:focus {
	border-color: #60a6ff !important;
	box-shadow: 0 0 0 3px rgba(96, 166, 255, 0.15) !important;
	outline: none;
}

/* Feature Section Enhancement */
.feature-section-2 .feature-content-3 {
	max-width: 1400px;
	margin: 50px auto 0;
	padding: 0 2em;
}

.feature-innerbox-area {
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(96, 166, 255, 0.08);
	border-radius: 12px;
	padding: 40px 30px;
	transition: all 0.4s ease;
	height: 100%;
}

.feature-innerbox-area:hover {
	background: rgba(96, 166, 255, 0.05);
	border-color: rgba(96, 166, 255, 0.25);
	transform: translateY(-5px);
}

.feature-innerbox-area .feature-box-icon i {
	transition: all 0.4s ease;
}

.feature-innerbox-area:hover .feature-box-icon i {
	transform: scale(1.1);
}

/* Scroll-triggered Animation Classes */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered animation delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Typography Improvements */
.pera-content p,
.about-text-details p {
	line-height: 1.8;
}

/* Footer Enhancement */
.footer-widget-wrapper {
	border-bottom: 1px solid rgba(96, 166, 255, 0.1);
}

.footer-widget {
	padding-bottom: 30px;
}

@media (min-width: 992px) {
	.footer-widget-content .col-lg-4:not(:last-child) .footer-widget {
		border-right: 1px solid rgba(96, 166, 255, 0.08);
		padding-right: 40px;
	}
}

/* Back to Top Button */
.scrollup {
	background: linear-gradient(135deg, #2c5282, #1e3a5f) !important;
	border: 1px solid rgba(96, 166, 255, 0.3);
	transition: all 0.3s ease;
}

.scrollup:hover {
	background: linear-gradient(135deg, #3d6aa8, #2c5282) !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(44, 82, 130, 0.4);
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
	.animate-on-scroll,
	.service-innerbox-wrap,
	.contact-card,
	.feature-innerbox-area,
	.hero-btn i {
		transition: none;
	}

	.animate-on-scroll {
		opacity: 1;
		transform: none;
	}
}

/* ========================================
   LOGIN SCREEN
   ======================================== */
#login-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../img/hero-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

#login-screen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(12, 30, 60, 0.85) 0%, rgba(12, 30, 60, 0.7) 50%, rgba(12, 30, 60, 0.85) 100%);
	z-index: 1;
}

.login-box {
	position: relative;
	z-index: 2;
	background: rgba(15, 40, 71, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 50px 40px;
	border-radius: 10px;
	border: 1px solid rgba(96, 166, 255, 0.2);
	width: 100%;
	max-width: 400px;
	margin: 0 20px;
}

.login-logo {
	text-align: center;
	margin-bottom: 40px;
}

.login-logo img {
	max-width: 200px;
	height: auto;
}

.login-input-wrap {
	position: relative;
	margin-bottom: 20px;
}

.login-input-wrap input {
	width: 100%;
	padding: 15px 20px 15px 50px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.login-input-wrap input::placeholder {
	color: #aebcce;
}

.login-input-wrap input:focus {
	outline: none;
	border-color: #60a6ff;
	background: rgba(255, 255, 255, 0.08);
}

.login-input-wrap i {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #60a6ff;
	font-size: 16px;
}

.login-error {
	color: #ff6b6b;
	font-size: 14px;
	margin-bottom: 15px;
	text-align: center;
	min-height: 20px;
}

.login-btn {
	width: 100%;
	padding: 15px 30px;
	background: linear-gradient(90deg, #60a6ff 0%, #4a90e2 100%);
	border: none;
	border-radius: 5px;
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.login-btn:hover {
	background: #fff;
	color: var(--base-color3);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.login-btn i {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.login-btn:hover i {
	transform: translateX(5px);
}

/* Preloader with MM logo */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url('../img/hero-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99998;
}

#preloader::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(12, 30, 60, 0.85) 0%, rgba(12, 30, 60, 0.7) 50%, rgba(12, 30, 60, 0.85) 100%);
	z-index: 1;
}

#preloader .taeled-preloader {
	position: relative;
	z-index: 2;
}

#preloader .taeled-preloader img {
	max-width: 150px;
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.05);
	}
}
